/* ============================================================
   1. TOKENS & RESET
   ============================================================ */

:root {
  --bg: #080808;
  --bg-soft: #101011;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f7f2df;
  --muted: rgba(247, 242, 223, 0.72);
  --soft: rgba(247, 242, 223, 0.56);
  --gold: #f3d24f;
  --gold-bright: #ffe07a;
  --gold-border: rgba(243, 210, 79, 0.22);
  --white-border: rgba(255, 255, 255, 0.08);
  --success: #9fe2a5;
  --danger: #ffb6b6;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.32);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 210, 79, 0.14), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(243, 210, 79, 0.08), transparent 18%),
    linear-gradient(180deg, #050505 0%, #090909 48%, #0d0d0f 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}


/* ============================================================
   2. LAYOUT & NAV
   ============================================================ */

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  left: -120px;
  top: 40px;
  background: rgba(243, 210, 79, 0.75);
}

.site-shell::after {
  right: -140px;
  bottom: 100px;
  background: rgba(243, 210, 79, 0.55);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid var(--white-border);
  background: rgba(10, 10, 11, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 70px;
  object-fit: contain;
}

.brand-footer .brand-logo {
  height: 55px;
}

.brand-footer {
  margin-bottom: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-menu a,
.footer-links a,
.client-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.desktop-nav a {
  font-size: 20px;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover,
.client-nav a:hover,
.desktop-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--gold);
}

.header-client-link,
.mobile-client-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #f7df71 0%, #e0bc32 100%);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-client-link:hover,
.mobile-client-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #f9e37f 0%, #e4c542 100%);
  color: #111 !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--white-border);
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 40px));
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--white-border);
  background: rgba(10, 10, 11, 0.96);
  box-shadow: var(--shadow-md);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.mobile-client-link {
  margin-top: 8px;
  border: 0;
  background: linear-gradient(180deg, #f7df71 0%, #e0bc32 100%);
  color: #111 !important;
  box-shadow: none;
}

.mobile-client-link:hover {
  background: linear-gradient(180deg, #f9e37f 0%, #e4c542 100%);
  color: #111 !important;
}

.site-footer {
  padding: 12px 0 48px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  text-align: center;
}


/* ============================================================
   3. TYPOGRAPHY & BUTTONS
   ============================================================ */

h1,
h2 {
  margin: 16px 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(243, 210, 79, 0.55);
}

.hero-text,
.benefit-card p,
.hero-strip-card span,
.stat-float p,
.footer-copy,
.contact-form label,
.copy-block p,
.flow-card p,
.panel-small p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #f7df71 0%, #e0bc32 100%);
  color: #111;
  font-weight: 800;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-border);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   4. HOME
   ============================================================ */

.hero,
.section,
.page-hero {
  padding: 54px 0 72px;
}

.hero-home {
  position: relative;
}

.hero-backdrop {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-strip,
.benefit-grid,
.flow-grid,
.form-grid,
.client-kpi-grid {
  display: grid;
  gap: 18px;
}

.hero-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.hero-strip-card,
.benefit-card,
.flow-card,
.glass-card,
.contact-form,
.dashboard-preview,
.dashboard-preview-sidebar,
.dashboard-preview-content,
.kpi-card,
.dashboard-chart-card,
.client-sidebar,
.client-hero,
.client-kpi,
.panel-large,
.panel-small {
  border: 1px solid var(--white-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 11, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-strip-card,
.benefit-card,
.flow-card,
.kpi-card,
.client-kpi,
.panel-small {
  padding: 22px;
  border-radius: var(--radius-md);
}

.hero-strip-card strong,
.mini-stats strong,
.kpi-card strong,
.client-kpi strong,
.panel-small strong {
  display: block;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 1100px;
  margin-bottom: 28px;
}

.section-intro {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading.compact {
  max-width: 1000px;
}

.benefit-card,
.flow-card {
  border-radius: var(--radius-md);
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mini-stats span {
  display: block;
  color: var(--soft);
  font-size: 0.8rem;
}


/* ============================================================
   5. NFC
   ============================================================ */

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.journey-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(243, 210, 79, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow-md);
}

.journey-media {
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-card-body {
  padding: 24px;
}

.journey-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.journey-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.step-pill,
.journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(243, 210, 79, 0.12);
  color: var(--gold);
  font-weight: 800;
}

.journey-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 210, 79, 0.16) 0%, rgba(243, 210, 79, 0.08) 100%);
  border: 1px solid rgba(243, 210, 79, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.journey-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nfc-order-wrap {
  display: grid;
  gap: 24px;
}

.hero-stage {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(243, 210, 79, 0.16);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-stage-home,
.hero-stage-nfc {
  margin-top: 18px;
}

.hero-stage-home .hero-stage-content {
  bottom: 92px;
}

.hero-stage-nfc {
  min-height: 700px;
}

.hero-nfc .hero-backdrop {
  opacity: 0.72;
}

.hero-stage-media-nfc img {
  object-fit: contain;
  object-position: 88% center;
  transform: scale(0.96);
}

.hero-stage-surface-nfc {
  background:
    radial-gradient(circle at 78% 42%, rgba(243, 210, 79, 0.18), transparent 18%),
    radial-gradient(circle at 64% 52%, rgba(243, 210, 79, 0.08), transparent 26%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #111111 0%, #080808 100%);
}

.hero-stage-media,
.hero-stage-overlay,
.hero-stage-surface {
  position: absolute;
  inset: 0;
}

.hero-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-stage-surface {
  background:
    radial-gradient(circle at 72% 46%, rgba(243, 210, 79, 0.22), transparent 16%),
    radial-gradient(circle at 58% 50%, rgba(243, 210, 79, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #111111 0%, #080808 100%);
}

.hero-stage-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.48) 42%, rgba(8, 8, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.5));
}

.nfc-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.46) 45%, rgba(8, 8, 8, 0.18) 100%),
    radial-gradient(circle at 78% 24%, rgba(243, 210, 79, 0.18), transparent 18%);
}

.hero-stage-content,
.copy-block {
  position: absolute;
  left: 54px;
  bottom: 54px;
  z-index: 3;
  max-width: 560px;
}

.nfc-content {
  max-width: 540px;
}

.nfc-content h1 {
  max-width: 11ch;
}

.hero-stage-card {
  position: absolute;
  right: 8%;
  top: 10%;
  bottom: 13%;
  width: min(420px, 34vw);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.18s ease-out;
}

.hero-stage-card-clean {
  right: 5%;
  top: 8%;
  bottom: 8%;
  width: min(480px, 38vw);
}

.hero-stage-card-nfc {
  right: 10%;
  top: 16%;
  bottom: 16%;
  width: min(380px, 30vw);
}

.hardware-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 0.68;
  transform: rotate(-11deg);
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.42));
}

.hardware-card-frame-clean {
  transform: rotate(-8deg);
}

.hardware-card-frame-vertical {
  aspect-ratio: 0.72;
  transform: rotate(-9deg);
}

.hardware-card-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hardware-glow {
  position: absolute;
  inset: 14% 12%;
  z-index: 1;
  border-radius: 34px;
  background: radial-gradient(circle, rgba(243, 210, 79, 0.36), rgba(243, 210, 79, 0.02) 70%);
  filter: blur(26px);
}

.floating-card {
  position: absolute;
  transition: transform 0.18s ease-out;
}

.orb-a {
  width: 240px;
  height: 240px;
  right: 30px;
  top: 50px;
  background: rgba(243, 210, 79, 0.18);
}

.orb-b {
  width: 180px;
  height: 180px;
  left: 10px;
  bottom: 90px;
  background: rgba(243, 210, 79, 0.14);
}


/* ============================================================
   6. CONTACT
   ============================================================ */

.contact-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-page-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}

.compact-form {
  min-height: 100%;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 210, 79, 0.45);
  box-shadow: 0 0 0 4px rgba(243, 210, 79, 0.1);
}

.form-message {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
  border: 1px solid rgba(159, 226, 165, 0.26);
  background: rgba(69, 145, 84, 0.12);
}

.field-error {
  color: var(--danger);
  font-size: 0.9rem;
}


/* ============================================================
   7. DASHBOARD
   ============================================================ */

.dashboard-page {
  padding: 28px 0 72px;
}

.dashboard-page-hero {
  padding: 12px 0 28px;
}

.dashboard-page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 210, 79, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(17, 18, 20, 0.98), rgba(10, 11, 13, 0.98));
  border: 1px solid rgba(243, 210, 79, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.dashboard-page-hero-inner h1 {
  margin: 10px 0 14px;
  max-width: 760px;
}

.dashboard-page-hero-inner .hero-text {
  max-width: 760px;
}

.dashboard-embed-section {
  padding-bottom: 12px;
}

.dashboard-embed-shell {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.dashboard-embed-wrap {
  background:
    linear-gradient(180deg, rgba(11, 12, 14, 0.88), rgba(8, 8, 9, 0.94)),
    rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(243, 210, 79, 0.1);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.client-inline-nav {
  position: sticky;
  top: 108px;
}

.client-inline-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 210, 79, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(19, 20, 23, 0.99), rgba(13, 14, 16, 0.99));
  border: 1px solid rgba(243, 210, 79, 0.14);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.dashboard-inline-content {
  min-width: 0;
}

.client-app-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(243, 210, 79, 0.12), transparent 20%),
    radial-gradient(circle at 100% 0%, rgba(243, 210, 79, 0.05), transparent 22%),
    linear-gradient(180deg, #060606 0%, #0b0c0d 45%, #101214 100%);
}

.client-app-shell {
  min-height: 100vh;
}

.client-app-shell .client-content {
  width: 100%;
}

.page-wrap-dashboard {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 28px;
}

.client-menu-brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-menu-logo {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.client-menu-logo-image {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.client-menu-subtitle,
.client-menu-eyebrow,
.dashboard-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.client-menu-business {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-menu-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-menu-email {
  color: var(--muted);
  font-size: 14px;
  word-break: break-word;
}

.client-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.client-menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 0 16px;
  text-decoration: none;
  color: var(--muted);
  border-radius: 16px;
  border: 1px solid rgba(243, 210, 79, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.client-menu-link:hover {
  transform: translateY(-1px);
  border-color: rgba(243, 210, 79, 0.18);
  background: rgba(243, 210, 79, 0.12);
  color: var(--gold);
}

.client-menu-link.is-active,
.client-menu-link.active {
  border-color: rgba(243, 210, 79, 0.34);
  background: linear-gradient(135deg, #f3d24f, #ffe07a);
  color: #131313;
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.is-active {
  display: block;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(243, 210, 79, 0.18), rgba(243, 210, 79, 0.06) 38%, rgba(20, 22, 25, 0.98) 100%),
    linear-gradient(180deg, rgba(20, 22, 25, 0.98), rgba(14, 15, 17, 0.98));
  border: 1px solid rgba(243, 210, 79, 0.24);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--text);
  font-weight: 700;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-subtitle {
  max-width: 720px;
  margin: 14px 0 0;
  color: #f1e7bf;
  font-size: 16px;
  line-height: 1.6;
}

.dashboard-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logout-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(243, 210, 79, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.logout-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(243, 210, 79, 0.34);
  background: rgba(243, 210, 79, 0.08);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.summary-card,
.info-card,
.dashboard-chart-card,
.dashboard-side-card,
.optimization-card {
  background: linear-gradient(180deg, rgba(23, 24, 27, 0.98), rgba(15, 16, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.summary-card::before,
.info-card::before,
.dashboard-chart-card::before,
.optimization-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 210, 79, 0.75), transparent 72%);
}

.summary-card {
  padding: 22px;
}

.summary-card .label {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-card .value {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
}

.summary-card .value.small-value {
  font-size: 20px;
}

.google-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-rating-number {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
}

.google-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rating-trend.up {
  color: #97e7a8;
  background: rgba(90, 201, 117, 0.12);
  border-color: rgba(90, 201, 117, 0.18);
}

.rating-trend.critical {
  color: #ffb3b3;
  background: rgba(216, 80, 80, 0.12);
  border-color: rgba(216, 80, 80, 0.22);
}

.rating-trend.warning {
  color: #f3d24f;
  background: rgba(243, 210, 79, 0.1);
  border-color: rgba(243, 210, 79, 0.16);
}

.rating-trend.success {
  color: #97e7a8;
  background: rgba(90, 201, 117, 0.1);
  border-color: rgba(90, 201, 117, 0.18);
}

.rating-trend.elite {
  color: #8fe0a8;
  background: rgba(26, 107, 58, 0.16);
  border-color: rgba(26, 107, 58, 0.26);
}

.google-subtext {
  margin-top: 10px;
  font-size: 13px;
  color: #8e825f;
  text-align: center;
}

.info-card {
  padding: 24px;
  margin-bottom: 24px;
}

.info-card p {
  margin: 12px 0;
  font-size: 16px;
  color: #e8dab0;
}

.info-card strong {
  color: var(--gold);
}

.info-card a {
  color: #ffe684;
  text-decoration: none;
  word-break: break-all;
}

.dashboard-chart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.dashboard-chart-card {
  padding: 24px;
}

.dashboard-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-chart-kicker,
.card-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-chart-header h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(243, 210, 79, 0.1);
  border: 1px solid rgba(243, 210, 79, 0.18);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}

.dashboard-side-metrics {
  display: grid;
  gap: 18px;
}

.dashboard-side-card {
  padding: 22px;
}

.dashboard-side-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

.dashboard-side-card p {
  margin: 0;
  color: #e8dab0;
  line-height: 1.6;
}

.optimization-hero {
  margin-bottom: 24px;
}

.optimization-summary-grid {
  margin-bottom: 24px;
}

.optim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: stretch;
}

.optim-gauge-col {
  display: flex;
  height: 100%;
}

.optim-gauge-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 24px;
}

.optim-gauge-card .label,
.optim-stat-card .label {
  color: #c9b57a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.optim-gauge-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(132px, 0.7fr);
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
}

.optim-gauge-wrap {
  width: 100%;
  max-width: 260px;
  margin: 8px 0 0;
  overflow: hidden;
}

.optim-gauge-wrap svg {
  display: block;
}

.optim-gauge-needle {
  will-change: transform;
  transition: transform 0.6s ease;
}

.optim-gauge-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
  text-align: left;
}

.optim-gauge-pct {
  line-height: 1;
  font-size: clamp(3rem, 4vw, 4.2rem);
}

.optim-gauge-trend {
  margin: 0;
}

.optim-stats-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  height: 100%;
}

.optim-stat-card {
  margin: 0;
  min-height: 100%;
  padding: 26px 28px;
}

.optim-stat-card .value {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1;
}

.optimization-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.optimization-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
}

.optimization-card.featured {
  max-width: min(100%, 780px);
  min-height: 280px;
  padding: 28px;
}

.optimization-card-indicator {
  flex: 0 0 auto;
  width: 10px;
  min-height: 100%;
  align-self: stretch;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.optimization-card-body {
  min-width: 0;
  width: 100%;
}

.optimization-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.optimization-card h2 {
  margin: 0;
  font-size: 24px;
  color: var(--text);
}

.optimization-card p {
  margin: 0 0 12px;
  color: #e8dab0;
  line-height: 1.6;
}

.optimization-card-observation,
.optimization-card-action {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.7;
}

.muted-pill {
  color: #b8aa7b;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.optimization-card.critical {
  border-color: rgba(216, 80, 80, 0.22);
}

.optimization-card.critical .optimization-card-indicator {
  background: rgba(216, 80, 80, 0.8);
}

.optimization-card.alert {
  border-color: rgba(230, 126, 34, 0.22);
}

.optimization-card.alert .optimization-card-indicator {
  background: rgba(230, 126, 34, 0.84);
}

.optimization-card.caution {
  border-color: rgba(241, 196, 15, 0.2);
}

.optimization-card.caution .optimization-card-indicator {
  background: rgba(241, 196, 15, 0.84);
}

.optimization-card.warning {
  border-color: rgba(243, 210, 79, 0.18);
}

.optimization-card.warning .optimization-card-indicator {
  background: rgba(243, 210, 79, 0.8);
}

.optimization-card.success {
  border-color: rgba(90, 201, 117, 0.2);
}

.optimization-card.success .optimization-card-indicator {
  background: rgba(90, 201, 117, 0.8);
}

.optimization-card.elite {
  border-color: rgba(26, 107, 58, 0.28);
}

.optimization-card.elite .optimization-card-indicator {
  background: rgba(26, 107, 58, 0.86);
}

.optimization-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.optimization-badge.critical {
  background: rgba(216, 80, 80, 0.1);
  border-color: rgba(216, 80, 80, 0.18);
  color: #ffb3b3;
}

.optimization-badge.alert {
  background: rgba(230, 126, 34, 0.12);
  border-color: rgba(230, 126, 34, 0.2);
  color: #ffbf85;
}

.optimization-badge.caution {
  background: rgba(243, 210, 79, 0.1);
  border-color: rgba(243, 210, 79, 0.16);
  color: #f3d24f;
}

.optimization-badge.warning {
  background: rgba(243, 210, 79, 0.1);
  border-color: rgba(243, 210, 79, 0.16);
  color: #f3d24f;
}

.optimization-badge.success {
  background: rgba(90, 201, 117, 0.1);
  border-color: rgba(90, 201, 117, 0.18);
  color: #97e7a8;
}

.optimization-badge.elite {
  background: rgba(26, 107, 58, 0.16);
  border-color: rgba(26, 107, 58, 0.26);
  color: #8fe0a8;
}

/* Dashboard preview (section showcase) */

.section-showcase .showcase-wrap {
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at top right, rgba(243, 210, 79, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-lg);
}

.dashboard-preview {
  padding: 22px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
}

.dashboard-preview-sidebar {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.sidebar-logo {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
}

.dashboard-preview-content {
  padding: 18px;
  border-radius: 24px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.kpi-card {
  border-radius: 20px;
}

.kpi-card small {
  color: var(--soft);
}

.dashboard-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
}

.dashboard-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.chart-glow {
  position: absolute;
  inset: auto 10% 12% 10%;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 210, 79, 0.28), transparent 70%);
  filter: blur(18px);
}

.dashboard-side-stack {
  display: grid;
  gap: 18px;
}

.insight-panel {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--white-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 11, 0.88);
  box-shadow: var(--shadow-lg);
}

.insight-panel strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.insight-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-shot-wrap {
  display: grid;
  gap: 20px;
}

.dashboard-shot {
  display: block;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(243, 210, 79, 0.12);
  background:
    radial-gradient(circle at top right, rgba(243, 210, 79, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(19, 20, 23, 0.98), rgba(11, 12, 14, 0.98));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.dashboard-shot-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-shot-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-shot-top strong {
  display: block;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.dashboard-shot-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-shot-kpi,
.dashboard-shot-chart,
.dashboard-shot-note {
  background: linear-gradient(180deg, rgba(23, 24, 27, 0.98), rgba(15, 16, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.dashboard-shot-kpi::before,
.dashboard-shot-chart::before,
.dashboard-shot-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 210, 79, 0.75), transparent 72%);
}

.dashboard-shot-kpi {
  padding: 18px;
}

.dashboard-shot-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.dashboard-shot-kpi strong {
  display: block;
  font-size: 1.8rem;
}

.dashboard-shot-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.55fr);
  gap: 16px;
}

.dashboard-shot-chart {
  padding: 20px;
  min-height: 300px;
}

.dashboard-shot-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.dashboard-shot-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 220px;
  padding: 18px 8px 8px;
}

.dashboard-shot-graph::before,
.dashboard-shot-graph::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dashboard-shot-graph::before {
  top: 32%;
}

.dashboard-shot-graph::after {
  top: 64%;
}

.dashboard-shot-graph span {
  display: block;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(243, 210, 79, 0.95), rgba(243, 210, 79, 0.16));
  box-shadow: 0 0 28px rgba(243, 210, 79, 0.18);
}

.dashboard-shot-side {
  display: grid;
  gap: 16px;
  align-content: stretch;
}

.dashboard-shot-note {
  padding: 20px;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 142px;
}

.dashboard-shot-note strong {
  display: block;
  font-size: 1.9rem;
}

.dashboard-shot-actions {
  display: flex;
  justify-content: center;
}

/* Client page (legacy) */

.client-page {
  padding: 42px 0 72px;
}

.client-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.client-sidebar {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.client-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.client-brand strong,
.client-kpi strong {
  display: block;
}

.client-brand span {
  color: var(--muted);
}

.client-nav {
  display: grid;
  gap: 14px;
}

.client-nav a.active {
  color: var(--gold);
}

.demo-nav-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--white-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.demo-nav-item:hover,
.demo-nav-item.active {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(243, 210, 79, 0.08);
  transform: translateY(-1px);
}

.client-content {
  display: grid;
  gap: 18px;
}

.client-hero {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.client-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-kpi {
  border-radius: 22px;
}

.client-kpi small {
  color: var(--gold);
}

.client-panels {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.panel-large,
.panel-small {
  border-radius: var(--radius-lg);
}

.panel-large {
  padding: 22px;
}

.panel-stack {
  display: grid;
  gap: 18px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.google-demo-grid,
.optimization-demo-grid {
  display: grid;
  gap: 18px;
}

.google-demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-stat-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.google-rating-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 8px;
}

.google-rating-row strong {
  font-size: 2rem;
}

.google-rating-row span {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.google-stat-card p {
  margin: 0;
  color: var(--muted);
}

.optimization-demo-grid {
  grid-template-columns: 1fr;
}

.optimization-demo-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 11, 0.88);
  box-shadow: var(--shadow-lg);
}

.optimization-bar {
  width: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.optimization-demo-card.warning .optimization-bar {
  background: rgba(243, 210, 79, 0.85);
}

.optimization-demo-card.success .optimization-bar {
  background: rgba(159, 226, 165, 0.85);
}

.optimization-copy {
  min-width: 0;
}

.optimization-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.optimization-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   8. COMPONENTS
   ============================================================ */

/* FAQ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
}

.faq-question:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(243, 210, 79, 0.08);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 16px 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Split SaaS */

.split-saas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.split-saas-content h2 {
  font-size: 34px;
  margin-top: 10px;
}

.split-saas-content p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.split-saas-list {
  margin-top: 20px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.split-saas-list li {
  margin-bottom: 8px;
}

.split-saas-media {
  display: flex;
  justify-content: center;
}

.split-saas-media img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.seo-split {
  overflow: hidden;
}

.seo-split-reverse {
  grid-template-columns: 1fr 1fr;
}

.review-feature-media,
.nfc-explainer-visual,
.growth-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-feature-media img,
.review-feature-media img,
.nfc-explainer-visual img,
.growth-panel-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-feature-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 250px 1fr;
  border-radius: 28px;
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(circle at top right, rgba(243, 210, 79, 0.09), transparent 24%),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-lg);
}

.seo-feature-card-contrast {
  background:
    radial-gradient(circle at bottom left, rgba(243, 210, 79, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.02);
}

.seo-feature-media {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 0;
}

.seo-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 20px;
  border: 1px solid rgba(243, 210, 79, 0.12);
  background:
    radial-gradient(circle at top, rgba(243, 210, 79, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #c9b57a;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.seo-feature-copy {
  padding: 22px 22px 24px;
}

.seo-feature-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
}

.seo-feature-copy p {
  color: #e5d7b0;
  line-height: 1.7;
}

.seo-card-button {
  margin-top: 18px;
  width: fit-content;
}

.sector-carousel {
  position: relative;
}

.sector-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.sector-carousel-track {
  position: relative;
  min-height: 600px;
}

.sector-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 11, 0.88);
  box-shadow: var(--shadow-lg);
}

.sector-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.sector-slide-media,
.sector-slide-media img {
  width: 100%;
  height: 100%;
}

.sector-slide-media img {
  display: block;
  object-fit: cover;
}

.sector-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.48) 42%, rgba(8, 8, 8, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.48) 100%);
}

.sector-slide-copy {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 38px;
  max-width: 520px;
  z-index: 1;
}

.sector-slide-copy h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.sector-slide-copy p {
  margin: 0;
  color: #f0e4bf;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sector-carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(243, 210, 79, 0.16);
  background: rgba(8, 8, 8, 0.36);
  color: var(--gold);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.sector-carousel-arrow:hover {
  background: rgba(8, 8, 8, 0.52);
  border-color: rgba(243, 210, 79, 0.24);
}

.sector-carousel-arrow-prev {
  left: 18px;
}

.sector-carousel-arrow-next {
  right: 18px;
}

.sector-carousel-arrow span {
  font-size: 32px;
  line-height: 1;
  transform: translateY(-2px);
}

.nfc-simple-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(243, 210, 79, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-lg);
}

.nfc-simple-block-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.nfc-simple-media {
  display: flex;
  justify-content: center;
}

.nfc-simple-media img {
  width: 100%;
  max-width: 430px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.nfc-simple-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.nfc-simple-copy p {
  color: #e5d7b0;
  line-height: 1.7;
}

.nfc-simple-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.nfc-simple-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(243, 210, 79, 0.05);
  border: 1px solid rgba(243, 210, 79, 0.12);
  color: #f1e5bf;
  line-height: 1.6;
}


/* ============================================================
   9. RESPONSIVE
   ============================================================ */

@media (max-width: 1120px) {
  .contact-band,
  .contact-page-wrap,
  .client-shell,
  .client-panels {
    grid-template-columns: 1fr;
  }

  .hero-strip,
  .journey-grid,
  .benefit-grid,
  .flow-grid,
  .client-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage-card {
    right: 4%;
    width: min(360px, 34vw);
  }

  .seo-feature-grid,
  .nfc-simple-block,
  .nfc-simple-block-reverse {
    grid-template-columns: 1fr;
  }

  .sector-carousel-track {
    min-height: 520px;
  }
}

@media (max-width: 950px) {
  .dashboard-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-embed-shell {
    grid-template-columns: 1fr;
  }

  .client-inline-nav {
    position: static;
  }

  .client-inline-card {
    padding: 20px;
  }

  .page-wrap-dashboard {
    padding: 24px 18px 32px;
  }

  .summary-grid,
  .optimization-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-chart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-client-link,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar {
    border-radius: 26px;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-shot-kpis,
  .dashboard-shot-main {
    grid-template-columns: 1fr;
  }

  .google-demo-grid {
    grid-template-columns: 1fr;
  }

  .kpi-row,
  .form-grid,
  .dashboard-body-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-stage-nfc {
    min-height: 760px;
  }

  .hero-stage-content,
  .copy-block {
    left: 28px;
    right: 28px;
    bottom: 28px;
    max-width: none;
  }

  .hero-stage-card,
  .hero-stage-card-nfc {
    top: 110px;
    right: 24px;
    left: 24px;
    bottom: auto;
    width: auto;
    height: 390px;
  }

  .hardware-card-frame,
  .hardware-card-frame-vertical {
    width: min(320px, 54vw);
  }
}

@media (max-width: 768px) {
  .split-saas {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .seo-split-reverse {
    grid-template-columns: 1fr;
  }

  .split-saas-list {
    list-style: none;
    padding-left: 0;
  }

  .seo-feature-card,
  .nfc-simple-block,
  .nfc-simple-block-reverse {
    padding: 24px;
  }

  .sector-carousel-arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .sector-carousel-arrow-prev {
    left: 22px;
  }

  .sector-carousel-arrow-next {
    left: 76px;
    right: auto;
  }

  .sector-carousel-track {
    min-height: 460px;
  }

  .sector-slide-copy {
    left: 22px;
    right: 22px;
    bottom: 84px;
    max-width: none;
  }

  .sector-slide-copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 560px) {
  .seo-feature-card {
    grid-template-rows: 220px 1fr;
  }

  .sector-carousel-track {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  h1 {
    max-width: 100%;
  }

  .hero-strip,
  .benefit-grid,
  .flow-grid,
  .mini-stats,
  .client-kpi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stage,
  .hero-stage-nfc {
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero-stage-nfc {
    padding-bottom: 18px;
  }

  .hero-stage-card,
  .hero-stage-card-nfc {
    position: static;
    width: 100%;
  }

  .hero-stage-card,
  .hero-stage-card-nfc {
    height: auto;
    margin-top: 34px;
  }

  .hero-stage-content,
  .copy-block {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 26px 20px 0;
  }

  .hero-stage-media {
    position: relative;
    min-height: 300px;
  }

  .hero-stage-media-nfc {
    min-height: 340px;
    padding: 18px 18px 0;
  }

  .hero-stage-media img {
    position: absolute;
    inset: 0;
  }

  

  .dashboard-shot {
    padding: 20px;
    border-radius: 26px;
  }

  .floating-contact-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hardware-card-frame,
  .hardware-card-frame-vertical {
    width: min(280px, 78vw);
    margin: 0 auto;
  }

  .dashboard-page-hero-inner {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .page-wrap-dashboard {
    padding: 20px 16px 28px;
  }

  .summary-grid,
  .optimization-grid,
  .dashboard-chart-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-hero {
    padding: 24px 20px;
    border-radius: 24px;
  }
}
