﻿/* ============================================================
   RealEase — Complete Stylesheet
   "Real Estate, Made Easy"
   v3.0 — Zyforia Light Theme Rewrite
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --copper:          #C4622D;
  --copper-hover:    #D4733E;
  --copper-light:    rgba(196,98,45,0.10);
  --copper-border:   rgba(196,98,45,0.25);
  --navy:            #1C3557;
  --navy-dark:       #0D1F33;
  --white:           #ffffff;
  --bg-light:        #F8F9FB;
  --bg-dark:         #0A0F1A;
  --text-dark:       #0D1F33;
  --text-gray:       #4B5A6E;
  --text-muted:      #8A9AB5;
  --border:          #E8EEF4;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       24px;
  --radius-pill:     999px;
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.12);
  --container:       1240px;
  --font-main:       'Inter Tight', system-ui, -apple-system, sans-serif;

  /* Legacy aliases so secondary pages still render */
  --theme-color:           #C4622D;
  --theme-color-light:     rgba(196,98,45,0.10);
  --theme-color-hover:     #D4733E;
  --secondary-color:       #1C3557;
  --heading-color:         #0D1F33;
  --body-color:            #4B5A6E;
  --border-color:          #E8EEF4;
  --bg-dark-2:             #0F2035;
  --navy-mid:              #152744;
  --copper-subtle:         rgba(196,98,45,0.10);
  --copper-glow:           rgba(196,98,45,0.25);
  --off-white:             #F8F9FB;
  --light-gray:            #E8EEF4;
  --text-light:            #C8D4E8;
  --text-primary:          #0D1F33;
  --text-secondary:        #4B5A6E;
  --bg:                    #0A0F1A;
  --bg-2:                  #0B1827;
  --bg-3:                  #0F2035;
  --glass-bg:              rgba(255,255,255,0.04);
  --glass-bg-hover:        rgba(255,255,255,0.07);
  --glass-border:          rgba(255,255,255,0.08);
  --glass-border-hover:    rgba(255,255,255,0.15);

  --radius4:   4px;   --radius8:  8px;   --radius12: 12px;
  --radius16:  16px;  --radius50: 999px;
  --radius-2xl: 32px;
  --container-max: 1240px;

  --gap8:   8px;   --gap12: 12px;  --gap15: 15px;  --gap20: 20px;
  --gap24: 24px;   --gap30: 30px;  --gap40: 40px;  --gap50: 50px;
  --gap60: 60px;   --gap80: 80px;  --gap100: 96px;

  --shadow-card:    0 2px 12px rgba(13,31,51,0.08);
  --transition:     200ms ease;
  --transition-slow: 350ms ease;
  --z-nav:   100;
  --z-modal: 2000;
  --section-v: 96px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderShimmer {
  0%, 100% { box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(196,98,45,0.15); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
  }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 56px; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem);    font-weight: 800; line-height: 1.1;  letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);    font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem);  font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
h4 { font-size: 1.125rem;  font-weight: 700; letter-spacing: -0.01em; }
h5 { font-size: 1rem;      font-weight: 700; }
h6 { font-size: 0.875rem;  font-weight: 600; }
p  { line-height: 1.7; max-width: 66ch; }

/* Text utilities */
.hilight-text        { color: var(--copper); }
/* Typewriter cursor for the animated hero word */
.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--copper);
  margin-left: 5px;
  vertical-align: -0.05em;
  border-radius: 2px;
  animation: type-blink 0.9s steps(1) infinite;
}
@keyframes type-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .type-cursor { animation: none; opacity: 0; } }
.hilight             { color: var(--copper); }
.text-copper         { color: var(--copper); }
.text-muted          { color: var(--text-muted); }
.text-white          { color: #fff; }
.text-center         { text-align: center; }
.text-dark           { color: var(--text-dark); }
.max570              { max-width: 570px; }

.text-shimmer, .text-gradient-copper {
  background: linear-gradient(90deg, var(--copper) 0%, #f0a875 40%, var(--copper) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.text-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Spacing utilities */
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--copper);
  background: rgba(196,98,45,0.05);
  color: var(--copper);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
  border-width: 2px;
}
.btn-ghost-dark:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy-dark);
  color: #fff;
  border-color: var(--navy-dark);
}
.btn-navy:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

/* Outline ghost button (Zyforia style) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms, background 200ms, color 200ms;
}
.btn-outline:hover {
  border-color: var(--copper);
  background: rgba(196,98,45,0.06);
  color: var(--copper);
}

/* White CTA button */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--copper);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
  border: none;
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Animated primary button (Zyforia text slide) */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--copper);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.primary-button:hover {
  background: var(--copper-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,98,45,0.35);
}
.button-text-box {
  overflow: hidden;
  height: 1.2em;
  position: relative;
  display: inline-block;
}
.button-text {
  display: block;
  transition: transform 300ms cubic-bezier(.23,1,.32,1);
  line-height: 1.2em;
}
.button-text.top    { transform: translateY(0); }
.button-text.bottom { position: absolute; top: 100%; left: 0; white-space: nowrap; }
.primary-button:hover .button-text.top    { transform: translateY(-100%); }
.primary-button:hover .button-text.bottom { transform: translateY(-100%); }
.button-icon-box {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 200ms;
}
.primary-button:hover .button-icon-box { transform: translateX(3px); }
.primary-button.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-lg); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-copper {
  background: var(--copper-light);
  color: var(--copper);
  border: 1px solid var(--copper-border);
}
.badge-light {
  background: var(--copper);
  color: #fff;
}

/* Eyebrow chip */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-light);
  border: 1px solid var(--copper-border);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 20px;
}
/* legacy eyebrow chip */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-light);
  border: 1px solid var(--copper-border);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  margin-bottom: 20px;
}
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.subtitle-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-light);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.subtitle-icon { width: 16px; height: 16px; color: var(--copper); flex-shrink: 0; }
.subtitle-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ============================================================
   FADE-UP ANIMATION HELPER
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1, .delay-1 { transition-delay: 100ms; }
.fade-up.delay-2, .delay-2 { transition-delay: 200ms; }
.fade-up.delay-3, .delay-3 { transition-delay: 300ms; }
.fade-up.delay-4             { transition-delay: 400ms; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section       { padding: var(--section-v) 0; }
.section-sm    { padding: 64px 0; }
.section-light { background: var(--bg-light); }
.section-white { background: #fff; }

/* Dark sections (testimonials, footer override etc.) */
.section-dark  { background: var(--bg-dark); }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark-2 { background: var(--bg-2); }

/* Section header centered block */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
.section-header p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 auto;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ============================================================
   HEADER / NAV  — White Zyforia style
   ============================================================ */
.header-section {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: box-shadow 300ms;
}
.header-section.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
  position: relative;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.header-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 200ms;
}
.header-logo:hover img { opacity: 0.8; }
.header-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--text-dark);
  background: var(--bg-light);
}
.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-actions .btn-ghost {
  color: var(--text-dark);
  border-color: transparent;
  padding: 8px 16px;
  font-size: 0.875rem;
}
.header-actions .btn-ghost:hover {
  background: var(--bg-light);
  border-color: transparent;
  color: var(--copper);
}
.header-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background 200ms;
  border: none;
  background: none;
}
.header-hamburger:hover { background: var(--bg-light); }
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 250ms;
  transform-origin: center;
}
.header-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
}
.header-mobile-nav.open {
  display: flex;
  animation: slideDown 220ms ease;
}
.header-mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
}
.header-mobile-nav a:hover { color: var(--text-dark); background: var(--bg-light); }
.header-mobile-nav .primary-button {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.header-border {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 40%, var(--navy) 60%, transparent);
  opacity: 0.4;
}

/* Legacy nav (secondary pages) */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--bg-dark);
  padding: 20px 0;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .btn { margin-top: 8px; }

/* ============================================================
   HERO SECTION — White/Light Zyforia style
   ============================================================ */
.hero-section {
  background: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Gradient blobs behind hero-right */
.hero-blob-1 {
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  right: 100px; bottom: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,53,87,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Legacy bg glows kept for backwards compatibility */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(196,98,45,0.12) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(28,53,87,0.15) 0%, transparent 70%);
}
.hero-glow-3 {
  width: 300px; height: 300px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(196,98,45,0.06) 0%, transparent 70%);
}

.hero-container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3ed;
  border: 1px solid rgba(196,98,45,0.2);
  border-radius: var(--radius-pill);
  padding: 4px 16px 4px 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-gray);
  width: fit-content;
  text-decoration: none;
  transition: border-color 150ms, box-shadow 150ms, color 150ms;
}
.hero-badge:hover { border-color: rgba(196,98,45,0.45); box-shadow: 0 6px 18px rgba(196,98,45,0.12); color: var(--text-dark); }
.hero-badge-arrow { color: var(--copper); transition: transform 150ms; flex-shrink: 0; }
.hero-badge:hover .hero-badge-arrow { transform: translateX(3px); }
.hero-badge-tag {
  background: var(--copper);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Ping dot */
.ping-dot {
  position: relative;
  width: 8px; height: 8px;
  display: inline-block;
  flex-shrink: 0;
}
.ping-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite;
}
.ping-dot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #22c55e;
}

.hero-headline h1 { color: var(--text-dark); }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: var(--text-gray);
  line-height: 1.75;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--copper) 100%);
  margin-left: -8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust strong { color: var(--text-dark); }

/* Hero right — Zyforia CRM dashboard mock */
.hero-right { position: relative; }
.hero-dashboard-wrap {
  position: relative;
}
.hero-dashboard-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 50%, rgba(196,98,45,0.22) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* Dashboard card */
.hero-dashboard {
  position: relative;
  background: #0F1E30;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 400ms ease;
  display: flex;
  animation: borderShimmer 5s ease-in-out infinite;
}
.hero-dashboard:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}

/* Dashboard sidebar */
.dash-sidebar {
  width: 48px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 18px;
  flex-shrink: 0;
}
.dash-sidebar-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.dash-sidebar-logo svg { width: 14px; height: 14px; color: #fff; }
.dash-nav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  cursor: default;
  transition: background 200ms, color 200ms;
}
.dash-nav-icon:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
.dash-nav-icon.active {
  background: rgba(196,98,45,0.15);
  color: var(--copper);
}
.dash-nav-icon svg { width: 16px; height: 16px; }

/* Dashboard main */
.dash-main {
  flex: 1;
  padding: 18px 20px;
  overflow: hidden;
  min-width: 0;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.dash-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--copper) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Stat cards row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.dash-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 10px 8px;
  cursor: default;
}
.dash-stat-value {
  font-size: 0.875rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.dash-stat-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-stat.accent { border-color: rgba(196,98,45,0.3); }
.dash-stat.accent .dash-stat-value { color: var(--copper); }

/* Mini line chart */
.dash-chart-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px 8px;
  margin-bottom: 12px;
}
.dash-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.dash-chart-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.dash-chart-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(34,197,94,0.12);
  border-radius: 999px;
  padding: 2px 8px;
}
.dash-chart-svg {
  width: 100%;
  height: 48px;
  display: block;
  overflow: visible;
}

/* Recent activity list */
.dash-activity {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-activity-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.dash-activity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.025);
  cursor: default;
}
.dash-activity-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-activity-dot.green  { background: #4ade80; }
.dash-activity-dot.copper { background: var(--copper); }
.dash-activity-dot.yellow { background: #fbbf24; }
.dash-activity-label {
  flex: 1;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dash-activity-val {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-float-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}
.hero-float-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4ade80;
  line-height: 1.2;
}
.hero-float-sub {
  font-size: 0.6875rem;
  color: rgba(74,222,128,0.7);
}

/* Legacy dashboard block (secondary pages) */
.hero-dashboard-block {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.3);
}
.hero-dashboard-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
  z-index: 2;
}
.mock-dashboard { padding: 24px; min-height: 340px; }
.mock-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mock-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mock-progress-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--copper);
  white-space: nowrap;
}

/* Legacy hero mockup elements (index v2 kept for compat) */
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #febc2e; }
.mock-dot.green  { background: #28c840; }
.mock-bar-label {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.mock-report-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(28,53,87,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}
.mock-report-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  background: var(--copper-light);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
}
.mock-report-icon svg { width: 20px; height: 20px; }
.mock-report-meta { flex: 1; min-width: 0; }
.mock-report-title { font-size: 0.9375rem; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.3; }
.mock-report-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.mock-status-badge {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.mock-check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.mock-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  cursor: default;
}
.mock-check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mock-check-icon.pass { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.mock-check-icon.warn { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.mock-check-icon svg { width: 12px; height: 12px; }
.mock-check-text { font-size: 0.8125rem; color: rgba(255,255,255,0.55); flex: 1; }
.mock-check-tag {
  font-size: 0.6875rem; font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mock-check-tag.pass { background: rgba(34,197,94,0.1); color: #4ade80; }
.mock-check-tag.warn { background: rgba(251,191,36,0.1); color: #fbbf24; }
.mock-progress-section { margin-bottom: 16px; }
.mock-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.mock-progress-label strong { color: var(--copper); }
.mock-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-hover));
  border-radius: 99px;
  width: 87%;
}
.mock-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  cursor: default;
}
.mock-stat-value {
  font-size: 1.125rem; font-weight: 800;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.mock-stat-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   BRAND LOGOS STRIP — White bg, static row
   ============================================================ */
.brandlogo-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.brandlogo-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
/* Static row layout */
.brandlogo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
/* Scrolling marquee fallback */
.brandlogo-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.brandlogo-track {
  display: flex;
  gap: 0;
  width: max-content;
}
.brandlogo-track.animate { animation: marqueeLeft 35s linear infinite; }
.brandlogo-track:hover   { animation-play-state: paused; }
.brandlogo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  cursor: default;
}
.brandlogo-item:last-child { border-right: none; }
.brandlogo-item svg { width: 18px; height: 18px; color: #bbb; flex-shrink: 0; }
.brandlogo-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: -0.01em;
}

/* Legacy marquee (secondary pages) */
.marquee-wrapper { display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.marquee-track { display: flex; gap: 24px; width: max-content; }
.marquee-track.row-1 { animation: marquee-left 25s linear infinite; }
.marquee-track.row-2 { animation: marquee-left 25s linear infinite; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.logo-pill:hover {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   FEATURES SECTION — White bg, copper-bordered 2×2 cards
   ============================================================ */
.feature-section {
  background: #fff;
  padding: 96px 0;
}
.feature-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.feature-block {
  background: #fff;
  border: 1.5px solid var(--copper-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: border-color 250ms, box-shadow 250ms, transform 250ms;
  cursor: default;
}
.feature-block:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(196,98,45,0.10);
  transform: translateY(-3px);
}
.feature-icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--copper-light);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-icon-box svg { width: 22px; height: 22px; }
.feature-block h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
}
.feature-block > p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: none;
}
.feature-visual {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.feature-visual-bar {
  height: 6px;
  background: #E8EEF4;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.feature-visual-bar .fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--copper), var(--copper-hover));
}
.feature-visual-row { display: flex; align-items: center; gap: 10px; }
.feature-visual-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.feature-visual-dot.active { background: #22c55e; }
.feature-visual-dot.idle   { background: var(--border); }
.feature-visual-dot.warn   { background: #f59e0b; }
.feature-visual-line { height: 6px; border-radius: 3px; background: var(--border); flex: 1; }

/* Feature checklist (Zyforia card visual) */
.feature-checklist { display: flex; flex-direction: column; gap: 8px; }
.feature-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-gray);
}
.feature-check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-check-icon.pass { background: rgba(34,197,94,0.12); color: #16a34a; }
.feature-check-icon.warn { background: rgba(245,158,11,0.12); color: #d97706; }
.feature-check-icon svg  { width: 10px; height: 10px; }
.feature-check-tag {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.feature-check-tag.pass { background: rgba(34,197,94,0.1); color: #16a34a; }
.feature-check-tag.warn { background: rgba(245,158,11,0.1); color: #d97706; }

/* Progress bars visual */
.feature-progress-list { display: flex; flex-direction: column; gap: 12px; }
.feature-progress-item {}
.feature-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 6px;
  font-weight: 500;
}
.feature-progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.feature-progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--copper), var(--copper-hover));
}

/* Mini timeline visual */
.feature-timeline { display: flex; flex-direction: column; gap: 8px; }
.feature-timeline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-gray);
}
.feature-timeline-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--copper-light);
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Notification visual */
.feature-notif {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-md);
}
.feature-notif-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245,158,11,0.1);
  color: #d97706;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-notif-icon svg { width: 14px; height: 14px; }
.feature-notif-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.feature-notif-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* Legacy bento grid (secondary pages) */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.bento-card {
  position: relative; overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: background 300ms, border-color 300ms, transform 300ms, box-shadow 300ms;
  cursor: default;
}
.bento-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bento-card.featured {
  background: linear-gradient(135deg, rgba(196,98,45,0.08) 0%, rgba(28,53,87,0.15) 100%);
  border-color: rgba(196,98,45,0.2);
}
.bento-card.featured:hover { border-color: rgba(196,98,45,0.4); }
.bento-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--copper-light);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 300ms;
  flex-shrink: 0;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card:hover .bento-icon { transform: scale(1.08); }
.bento-icon.navy   { background: rgba(28,53,87,0.3); color: #7EB0DC; }
.bento-icon.green  { background: rgba(34,197,94,0.1); color: #4ade80; }
.bento-icon.purple { background: rgba(139,92,246,0.1); color: #a78bfa; }
.bento-badge { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.bento-badge.live { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.bento-badge.soon { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.08); }
.bento-card h3 { color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.bento-card p  { color: rgba(255,255,255,0.55); font-size: 0.9375rem; line-height: 1.7; }
.bento-visual { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.bento-visual-bar { height: 4px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.bento-visual-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--copper), var(--copper-hover)); }
.mini-checklist { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.mini-check { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-md); font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.mini-check-icon { width: 16px; height: 16px; border-radius: 50%; background: rgba(34,197,94,0.12); color: #4ade80; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-check-icon svg  { width: 10px; height: 10px; }
.mini-check-icon.warn { background: rgba(251,191,36,0.12); color: #fbbf24; }
.bento-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.bento-step { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-md); }
.bento-step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--copper-light); color: var(--copper); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bento-step-text { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.bento-notif { margin-top: 20px; background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.15); border-radius: var(--radius-md); padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.bento-notif-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(139,92,246,0.15); color: #a78bfa; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bento-notif-icon svg { width: 14px; height: 14px; }
.bento-notif-title { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.3; }
.bento-notif-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.bento-chart { display: flex; align-items: flex-end; gap: 8px; margin-top: 20px; height: 60px; }
.bento-bar { flex: 1; background: var(--copper-light); border-radius: 4px 4px 0 0; border: 1px solid rgba(196,98,45,0.2); transition: background 200ms; position: relative; }
.bento-bar:hover { background: rgba(196,98,45,0.2); }

/* ============================================================
   STATS SECTION (legacy — used on index v2)
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-card {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  cursor: default;
}
.stat-card:hover { background: var(--bg-light); }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-number.copper { color: var(--copper); }
.stat-label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   BENEFITS SECTION — White bg, 2×2 grid
   ============================================================ */
.benefits-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.benefits-section-header { margin-bottom: 56px; }
.benefits-section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
/* "RealEase" wordmark used inline inside a heading */
.inline-logo { height: 1.03em; width: auto; display: inline-block; vertical-align: -0.14em; margin-left: 5px; }
.benefits-section-header p { color: var(--text-gray); max-width: 540px; font-size: 1rem; }

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  max-width: 800px;
}
.benefits-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefits-icon-block {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--copper-light);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefits-icon-block svg { width: 22px; height: 22px; }
.benefits-box h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.benefits-box p  { font-size: 0.9rem; color: var(--text-gray); line-height: 1.7; max-width: none; }

/* Legacy benefit grid (secondary pages) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  cursor: default;
}
.benefit-card:hover {
  border-color: rgba(196,98,45,0.3);
  box-shadow: 0 8px 32px rgba(196,98,45,0.08);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--copper-light);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 200ms;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card:hover .benefit-icon { transform: scale(1.08); }
.benefit-card h4 { color: var(--navy-dark); margin-bottom: 10px; font-size: 1.0625rem; }
.benefit-card p  { font-size: 0.9rem; color: var(--text-gray); line-height: 1.7; max-width: none; }

/* Legacy benefits-block (secondary pages) */
.benefits-column  { display: flex; flex-direction: column; gap: 20px; }
.benefits-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefits-block:hover { border-color: rgba(196,98,45,0.3); box-shadow: 0 4px 20px rgba(196,98,45,0.08); }
.benefits-icon-box {
  width: 48px; height: 48px;
  background: var(--theme-color-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--theme-color); flex-shrink: 0;
}
.benefits-icon-box svg { width: 22px; height: 22px; }
.benefits-content h5 { font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 6px; }
.benefits-content p  { font-size: 14px; color: var(--body-color); line-height: 1.65; max-width: none; }

/* ============================================================
   PRICING SECTION — Light bg, two cards (Zyforia)
   ============================================================ */
.pricing-section {
  background: var(--bg-light);
  padding: 96px 0;
}
.pricing-section-header { text-align: center; margin-bottom: 56px; }
.pricing-section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
.pricing-section-header p  { color: var(--text-gray); max-width: 480px; margin: 0 auto; font-size: 1rem; }

.pricing-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 200ms, box-shadow 200ms;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.pricing-box.active {
  border-color: var(--copper);
  box-shadow: 0 8px 40px rgba(196,98,45,0.12);
}
.pricing-header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pricing-title-icon-box {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--copper-light);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
}
.pricing-title-icon-box svg { width: 18px; height: 18px; }
.pricing-plan {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.pricing-box.active .pricing-plan {
  background: var(--copper-light);
  color: var(--copper);
}
.pricing-plan-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.pricing-plan-desc  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price .amount {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}
.pricing-price .period {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-gray);
}
.pricing-feature-item svg { color: var(--copper); flex-shrink: 0; width: 15px; height: 15px; }

/* Legacy pricing cards (dark, secondary pages) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card-new {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: border-color 200ms, box-shadow 200ms;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.pricing-card-new.active {
  background: linear-gradient(145deg, rgba(196,98,45,0.08), rgba(28,53,87,0.15));
  border-color: rgba(196,98,45,0.35);
  box-shadow: 0 0 0 1px rgba(196,98,45,0.12), 0 20px 60px rgba(196,98,45,0.1);
}
.pricing-plan-badge {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 20px;
  display: inline-block;
  background: var(--glass-bg); color: rgba(255,255,255,0.35);
  border: 1px solid var(--glass-border);
  width: fit-content;
}
.pricing-card-new.active .pricing-plan-badge {
  background: var(--copper-light); color: var(--copper);
  border-color: rgba(196,98,45,0.3);
}
.pricing-card-new h3 { color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.pricing-desc { font-size: 0.875rem; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--glass-border); margin-bottom: 24px; }
.pricing-features-new {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; flex: 1;
}
.pricing-feature-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
}
.pricing-feature-row svg { color: #4ade80; flex-shrink: 0; width: 16px; height: 16px; }
.pricing-box-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.3s ease;
}
.pricing-box-block:hover { border-color: rgba(255,255,255,0.2); }
.pricing-box-block.active {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 1px rgba(196,98,45,0.5), 0 8px 40px rgba(196,98,45,0.15);
}
.pricing-plan-icon {
  width: 52px; height: 52px;
  background: var(--theme-color-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--theme-color);
}
.pricing-plan-icon svg { width: 24px; height: 24px; }
.pricing-plan-label {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  background: var(--theme-color-light);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  color: var(--theme-color);
  letter-spacing: 0.08em; text-transform: uppercase;
  width: fit-content;
}
.pricing-box-block.active .pricing-plan-label { background: var(--theme-color); color: #fff; }
.pricing-plan-title { font-size: 1.375rem; font-weight: 700; color: #fff; }
.pricing-price-area {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.pricing-price-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-feature-item-legacy {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.pricing-feature-item-legacy svg { width: 16px; height: 16px; color: var(--theme-color); flex-shrink: 0; }

/* ============================================================
   FAQ SECTION — Two-column Zyforia layout
   ============================================================ */
.faq-section { background: #fff; padding: 96px 0; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.faq-heading-col { }
.faq-heading-col .section-eyebrow { display: inline-flex; }
.faq-heading-col h2 { color: var(--text-dark); margin-bottom: 16px; }
.faq-heading-col p { color: var(--text-gray); line-height: 1.7; max-width: 360px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
  -webkit-user-select: none;
  transition: color 200ms;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--copper); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 250ms, background 200ms, border-color 200ms;
  color: var(--text-muted);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--copper-light);
  border-color: var(--copper-border);
  color: var(--copper);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* Legacy dark FAQ accordion (secondary pages) */
.faq-list-new {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item-new {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 200ms;
}
.faq-item-new.open { border-color: rgba(196,98,45,0.25); }
.faq-question-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 200ms;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question-new:hover { color: #fff; }
.faq-icon-new {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms, background 200ms;
  color: rgba(255,255,255,0.35);
}
.faq-icon-new svg { width: 14px; height: 14px; }
.faq-item-new.open .faq-icon-new {
  transform: rotate(45deg);
  background: var(--copper-light);
  color: var(--copper);
  border-color: rgba(196,98,45,0.3);
}
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
.faq-answer-inner-new {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}
.faq-item-new.open .faq-answer-new { max-height: 300px; }
.faq-wrapper { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-block {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-block.open { border-color: rgba(196,98,45,0.3); }
.faq-block .faq-question {
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-block .faq-question h5 { font-size: 15px; font-weight: 600; color: var(--heading-color); line-height: 1.4; }
.faq-arrow {
  width: 32px; height: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s ease;
}
.faq-arrow svg { width: 16px; height: 16px; color: var(--body-color); transition: transform 0.3s ease; }
.faq-block.open .faq-arrow { background: var(--theme-color-light); }
.faq-block.open .faq-arrow svg { transform: rotate(180deg); color: var(--theme-color); }
.faq-block .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-block .faq-answer-inner { padding: 0 24px 24px; font-size: 14px; color: var(--body-color); line-height: 1.75; }

/* ============================================================
   BLOG SECTION — Light bg, 3-card row
   ============================================================ */
.blog-section {
  background: var(--bg-light);
  padding: 96px 0;
}
.blog-section-header { text-align: center; margin-bottom: 48px; }
.blog-section-header h2 { color: var(--text-dark); margin-bottom: 16px; }
.blog-section-header p  { color: var(--text-gray); font-size: 1rem; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 250ms, transform 250ms;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--copper) 100%);
  position: relative;
  flex-shrink: 0;
}
.blog-thumb-2 { background: linear-gradient(135deg, #1a3a5c 0%, #8B5CF6 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #0D1F33 0%, #C4622D 100%); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  background: var(--copper-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
  width: fit-content;
}
.blog-card h4 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-read-time { font-size: 0.8rem; color: var(--text-muted); }
.blog-arrow { color: var(--copper); display: flex; align-items: center; }
.blog-arrow svg { width: 18px; height: 18px; transition: transform 200ms; }
.blog-card:hover .blog-arrow svg { transform: translateX(3px); }

/* Legacy blog card (blog.html etc.) */
.blog-card-img {
  background: var(--navy-dark);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15);
}
.blog-card-img svg { width: 48px; height: 48px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; font-size: 0.8125rem;
  color: var(--text-muted);
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: 14px; color: var(--body-color); line-height: 1.65; flex: 1; max-width: none; margin-bottom: 16px; }
.read-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--theme-color);
  transition: gap 0.2s ease;
}
.blog-card:hover .read-more { gap: 8px; }

/* ============================================================
   CTA BANNER — Copper gradient
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #C4622D 0%, #D4733E 50%, #A3511F 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  filter: blur(80px);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.85); margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 200ms, background 200ms;
  outline: none;
}
.cta-form input[type="email"]::placeholder { color: rgba(255,255,255,0.6); }
.cta-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}
.waitlist-form { /* alias */ }

/* Legacy cta-banner */
.cta-banner {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.6); margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-banner .cta-form { position: relative; z-index: 1; }

/* ============================================================
   FOOTER — Dark bg + giant brand text
   ============================================================ */
.footer-section {
  background: #0A0F1A;
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .footer-logo,
.footer-brand-col .footer-logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer-brand img,
.footer-brand-col img { height: 32px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p,
.footer-brand-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 200px;
}
.footer-col h5,
.footer-link-col h5, .footer-link-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col a,
.footer-link-col a,
.footer-link-col ul li a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color 150ms;
}
.footer-col a:hover,
.footer-link-col a:hover,
.footer-link-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-link-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials, .footer-social-links { display: flex; gap: 10px; }
.footer-social, .footer-social-link, .footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  background: transparent;
  text-decoration: none;
}
.footer-social:hover,
.footer-social-link:hover,
.footer-social-btn:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.footer-social svg,
.footer-social-link svg,
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); padding: 16px 0; }
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}

/* Giant decorative brand text at footer bottom */
.footer-brand-text {
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #111D2E;
  user-select: none;
  pointer-events: none;
  display: block;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

/* Legacy footer */
.footer {
  background: #040D17;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--copper-light);
  border-color: rgba(196,98,45,0.3);
  color: var(--copper);
}
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

/* ============================================================
   SECONDARY PAGE COMPONENTS (legacy — all preserved)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1.0625rem; max-width: 560px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.feature-card:hover { box-shadow: 0 12px 30px rgba(13,31,51,0.10); border-color: rgba(196,98,45,0.25); transform: translateY(-4px); }
.feature-card.featured { border-color: rgba(196,98,45,0.35); box-shadow: 0 4px 24px rgba(196,98,45,0.10); }
.feature-icon { width: 48px; height: 48px; background: var(--theme-color-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--theme-color); margin-bottom: 20px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--heading-color); margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--body-color); line-height: 1.65; max-width: none; }

.integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.integration-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.integration-card:hover { box-shadow: 0 12px 30px rgba(13,31,51,0.08); border-color: rgba(196,98,45,0.25); transform: translateY(-4px); }
.integration-card .icon-wrap { width: 48px; height: 48px; background: var(--theme-color-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--theme-color); margin-bottom: 20px; }
.integration-card .icon-wrap svg { width: 24px; height: 24px; }
.integration-card h4 { font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 8px; }
.integration-card p  { font-size: 14px; color: var(--body-color); line-height: 1.65; max-width: none; margin-bottom: 16px; }

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 50px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--heading-color); margin-bottom: 16px; }
.pricing-card p  { font-size: 1.0625rem; color: var(--body-color); margin-bottom: 36px; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border-color);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -27px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--theme-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--theme-color);
}
.timeline-date { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--theme-color); margin-bottom: 6px; }
.timeline-item h4 { color: var(--heading-color); margin-bottom: 8px; }
.timeline-item p  { font-size: 14px; color: var(--body-color); max-width: none; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.step-item { display: flex; flex-direction: column; gap: 16px; }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--theme-color); color: #fff; font-size: 1.125rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-item h3 { font-size: 1.125rem; color: var(--heading-color); }
.step-item p  { font-size: 14px; color: var(--body-color); max-width: none; }

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  max-width: 860px;
  margin: 0 auto;
}
.video-placeholder:hover { border-color: rgba(196,98,45,0.4); }
.play-btn {
  width: 72px; height: 72px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.play-btn:hover, .video-placeholder:hover .play-btn { transform: scale(1.1); box-shadow: 0 8px 32px rgba(196,98,45,0.4); }
.play-btn svg { width: 28px; height: 28px; padding-left: 4px; }

.card-light { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.card:hover { border-color: rgba(196,98,45,0.25); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.card .feature-icon { margin-bottom: 20px; }

.footer-cta { background: var(--theme-color); padding: 80px 0; text-align: center; }
.footer-cta h2 { color: #fff; margin-bottom: 16px; }
.footer-cta p  { color: rgba(255,255,255,0.8); margin: 0 auto 36px; max-width: 520px; }
.footer-cta .btn-primary { background: #fff; color: var(--theme-color); border-color: #fff; }
.footer-cta .btn-primary:hover { background: rgba(255,255,255,0.9); }

.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-number { font-size: clamp(5rem, 15vw, 10rem); font-weight: 800; color: var(--theme-color); opacity: 0.25; letter-spacing: -0.05em; line-height: 1; margin-bottom: 20px; }
.error-page h2 { color: var(--heading-color); margin-bottom: 16px; }
.error-page p  { color: var(--body-color); margin: 0 auto 36px; max-width: 440px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--heading-color); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: #fff;
  color: var(--heading-color);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--font-main);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--theme-color); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .header-nav      { display: flex; }
  .header-actions  { display: flex; }
  .header-hamburger { display: none; }
  .bento-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-column  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(4, 1fr); }
  .feature-wrapper { grid-template-columns: repeat(2, 1fr); }
  .faq-layout      { grid-template-columns: 2fr 3fr; gap: 64px; }
  .faq-heading-col { position: sticky; top: 100px; }
  .footer-top      { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
}

@media (min-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
  .bento-grid      { grid-template-columns: repeat(3, 1fr); }
  .bento-card.wide { grid-column: span 2; }
  .benefits-grid   { grid-template-columns: repeat(4, 1fr); }
  .footer-top      { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .footer-main    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-right { display: none; }
  .hero-float-badge { display: none; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom-bar, .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .cta-form { flex-direction: column; align-items: stretch; }
  .cta-form input[type="email"] { max-width: 100%; min-width: unset; }
  .cta-form .primary-button, .cta-form .btn { width: 100%; justify-content: center; }
  .benefits-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer-top, .footer-main { grid-template-columns: 1fr; }
  .hero-badge { flex-wrap: wrap; }
  .mock-stats-row { grid-template-columns: repeat(3, 1fr); }
  .pricing-feature-block { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
#scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196,98,45,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, background 150ms, box-shadow 150ms;
  pointer-events: none;
}
#scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scroll-to-top:hover {
  background: var(--copper-hover);
  box-shadow: 0 6px 24px rgba(196,98,45,0.5);
  transform: translateY(-2px);
}
#scroll-to-top:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}
#scroll-to-top svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #scroll-to-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   NEW DARK PRICING SECTION
   ============================================================ */
/* ── LOGOS AUTO-SCROLL STRIP ── */
@keyframes logosScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logos-strip { padding: 48px 0 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; overflow: hidden; }
.logos-strip-heading { text-align: center; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.08em; }
.logos-marquee-outer { position: relative; overflow: hidden; }
.logos-marquee-track { display: flex; width: max-content; animation: logosScroll 28s linear infinite; }
.logos-marquee-track:hover { animation-play-state: paused; }
.logos-marquee-item { display: flex; align-items: center; justify-content: center; padding: 0 48px; flex-shrink: 0; }
.logos-marquee-item img { height: 36px; width: auto; opacity: 0.55; filter: grayscale(100%); transition: opacity 200ms, filter 200ms; display: block; }
.logos-marquee-item img:hover { opacity: 1; filter: grayscale(0%); }
.logos-fade-left, .logos-fade-right { position: absolute; top: 0; bottom: 0; width: 120px; pointer-events: none; z-index: 1; }
.logos-fade-left { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logos-fade-right { right: 0; background: linear-gradient(to left, #fff, transparent); }

.pricing-new {
  background: #000;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.pricing-glow-ellipse {
  position: absolute; left: 50%; top: -200px;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  border: 180px solid #1C3557; border-radius: 50%;
  filter: blur(92px); opacity: 0.35; pointer-events: none;
}
.pricing-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 70px 80px; pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}
.pricing-new-header { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.pricing-new-header h2 { margin-bottom: 16px; line-height: 1.15; }
.pricing-new-header p { margin: 0 auto; }
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 52px; }
.pricing-toggle {
  position: relative; display: inline-flex;
  background: #111; border: 1px solid #2a2a2a; border-radius: 999px; padding: 4px;
}
.toggle-pill {
  position: absolute; top: 4px; left: 4px; height: calc(100% - 8px);
  background: linear-gradient(to top, var(--copper), var(--copper-hover));
  border: 3px solid var(--copper); box-shadow: 0 0 16px rgba(196,98,45,0.6);
  border-radius: 999px;
  transition: left 300ms cubic-bezier(0.34,1.56,0.64,1), width 300ms cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; z-index: 0;
}
.toggle-btn {
  position: relative; z-index: 1; padding: 8px 24px; border-radius: 999px;
  font-family: 'Inter Tight', sans-serif; font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.55); background: none; border: none; cursor: pointer;
  transition: color 200ms; display: flex; align-items: center; gap: 8px;
}
.toggle-btn.active { color: #fff; }
.toggle-save { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(196,98,45,0.2); color: #e07a4a; border-radius: 999px; padding: 2px 8px; }
.pricing-cards-new { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
@media(min-width: 768px) { .pricing-cards-new { grid-template-columns: repeat(3, 1fr); } }
.pricing-card-new { background: linear-gradient(160deg, #171717 0%, #222 50%, #171717 100%); border: 1px solid #2a2a2a; border-radius: 16px; padding: 28px; color: #fff; position: relative; transition: transform 300ms; }
.pricing-card-new:hover { transform: translateY(-4px); }
.pricing-card-new.popular { box-shadow: 0 -13px 160px 0 rgba(196,98,45,0.3); border-color: rgba(196,98,45,0.35); z-index: 2; }
.pcn-popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--copper), var(--copper-hover)); color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 16px; border-radius: 999px; white-space: nowrap; }
.pcn-header { margin-bottom: 24px; }
.pcn-name { font-size: 1.75rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.pcn-price-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 10px; }
.pcn-currency { font-size: 1.5rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.pcn-amount { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; transition: opacity 200ms, transform 200ms; }
.pcn-amount.animating { opacity: 0; transform: translateY(-8px); }
.pcn-period { font-size: 0.9rem; color: rgba(255,255,255,0.45); margin-left: 4px; }
.pcn-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.pcn-btn { width: 100%; padding: 14px; border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer; border: none; font-family: 'Inter Tight', sans-serif; margin-bottom: 24px; transition: transform 200ms, box-shadow 200ms; }
.pcn-btn:hover { transform: translateY(-1px); }
.pcn-btn-neutral { background: linear-gradient(to top, #171717, #404040); border: 1px solid #3a3a3a; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.pcn-btn-blue { background: linear-gradient(to top, var(--copper), var(--copper-hover)); border: 1px solid var(--copper); color: #fff; box-shadow: 0 4px 24px rgba(196,98,45,0.4); }
.pcn-btn-blue:hover { box-shadow: 0 8px 32px rgba(196,98,45,0.6); }
.pcn-features { border-top: 1px solid #2a2a2a; padding-top: 20px; }
.pcn-features-label { font-size: 0.875rem; font-weight: 600; margin-bottom: 14px; color: rgba(255,255,255,0.8); }
.pcn-features ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pcn-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.pcn-dot { width: 8px; height: 8px; border-radius: 50%; background: #3a3a3a; flex-shrink: 0; }
.popular .pcn-dot { background: var(--copper); }
.pcn-note { text-align: center; margin-top: 40px; font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.pcn-note a { color: rgba(196,98,45,0.7); text-decoration: underline; }
.pcn-note a:hover { color: var(--copper); }

/* ============================================================
   MEGA MENU HEADER
   ============================================================ */
.mega-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease, box-shadow 200ms;
}
.mega-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.mega-header.header-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.mega-header-inner {
  display: flex; align-items: center; height: 72px; gap: 0;
  position: relative;
}
.mega-logo {
  display: flex; align-items: center; flex-shrink: 0; margin-right: 32px;
  text-decoration: none;
}
.mega-logo img { height: 48px; width: auto; display: block; }

/* Nav list */
.mega-nav {
  display: none; flex: 1; align-items: center;
  list-style: none; margin: 0; padding: 0; gap: 0; position: relative;
}
@media(min-width: 768px) { .mega-nav { display: flex; } }

/* Each nav item */
.mega-nav-item { position: relative; }

.mega-nav-btn {
  position: relative; display: flex; align-items: center; gap: 4px;
  padding: 8px 16px; background: none; border: none; cursor: pointer;
  font-family: 'Inter Tight', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--text-gray); transition: color 250ms;
  text-decoration: none; white-space: nowrap;
  z-index: 1;
}
.mega-nav-btn:hover, .mega-nav-item.open .mega-nav-btn { color: var(--text-dark); }

/* Animated hover pill background */
.mega-nav-btn .nav-pill {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(13,31,51,0.06);
  opacity: 0; transition: opacity 200ms;
  z-index: -1;
}
.mega-nav-btn:hover .nav-pill,
.mega-nav-item.open .mega-nav-btn .nav-pill { opacity: 1; }

/* Chevron */
.mega-chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 300ms ease;
}
.mega-nav-item.open .mega-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.mega-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 480px; z-index: 200;
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
/* Single-column dropdowns are narrower */
.mega-dropdown.narrow { min-width: 220px; }
.mega-nav-item.open .mega-dropdown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.mega-dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 16px; padding: 20px;
  display: flex; gap: 36px;
}
/* Dropdown column */
.mega-col { flex: 1; min-width: 180px; }
.mega-col-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); margin-bottom: 16px;
  letter-spacing: 0.02em;
}
/* Dropdown items */
.mega-items { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.mega-item {
  display: flex; align-items: flex-start; gap: 12px; text-decoration: none;
  cursor: pointer;
}
.mega-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-gray); background: var(--bg-light);
  transition: background 200ms, color 200ms, border-color 200ms;
}
.mega-item:hover .mega-item-icon {
  background: var(--copper); color: #fff; border-color: var(--copper);
}
.mega-item-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.mega-item-text { line-height: 1.3; }
.mega-item-label {
  font-size: 0.875rem; font-weight: 600; color: var(--text-dark);
  display: block; margin-bottom: 2px;
}
.mega-item-desc {
  font-size: 0.75rem; color: var(--text-muted);
  transition: color 200ms;
}
.mega-item:hover .mega-item-desc { color: var(--text-gray); }
.mega-item-disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.mega-item-disabled .mega-item-label::after { content: ' (coming soon)'; font-size: 0.7em; font-weight: 400; color: var(--text-muted); }

/* Right actions */
.mega-actions {
  display: none; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0;
}
@media(min-width: 768px) { .mega-actions { display: flex; } }
.mega-login {
  font-size: 0.875rem; font-weight: 500; color: var(--text-gray);
  text-decoration: none; padding: 8px 12px;
  transition: color 200ms;
}
.mega-login:hover { color: var(--text-dark); }
.mega-get-started {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: background 200ms, transform 200ms;
  white-space: nowrap;
}
.mega-get-started:hover { background: var(--copper-hover); transform: translateY(-1px); }
.mega-get-started svg { width: 14px; height: 14px; }

/* Hamburger — mobile only */
.mega-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none;
  margin-left: auto;
}
@media(min-width: 768px) { .mega-hamburger { display: none; } }
.mega-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 250ms;
}
.mega-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mega-hamburger.open span:nth-child(2) { opacity: 0; }
.mega-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mega-mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 0 16px; border-top: 1px solid var(--border);
}
.mega-mobile-nav.open { display: flex; }
/* Never show the mobile menu on desktop/tablet — prevents a 2nd login button
   appearing next to the desktop actions if the menu was left open on resize. */
@media (min-width: 768px) { .mega-mobile-nav, .mega-mobile-nav.open { display: none !important; } }
.mega-mobile-nav a {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--text-gray); padding: 10px 16px;
  border-radius: 8px; text-decoration: none;
  transition: color 150ms, background 150ms;
}
.mega-mobile-nav a:hover { color: var(--text-dark); background: rgba(13,31,51,0.05); }
