/* ============================================================
   ORVX AI — Global Stylesheet
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080C10;
  --bg2: #0D1218;
  --surface: #161E28;
  --surface2: #1C2632;
  --accent: #00E5A0;
  --accent2: #00B87A;
  --accent-glow: rgba(0,229,160,0.15);
  --accent-glow2: rgba(0,229,160,0.06);
  --white: #F0F4F8;
  --muted: #7A8FA6;
  --muted2: #4A5A6A;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(0,229,160,0.2);
  --text: #C8D8E8;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body::before { content:''; position:fixed; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events:none; z-index:999; opacity:0.5; }
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--accent2); border-radius:2px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(8,12,16,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

/* The real flex row — logo left, links right, all on ONE line */
#site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5vw;
  gap: 2rem;
}

/* ── Logo (left side) ── */
.nav-logo {
  font-family: var(--font-head);
  text-decoration: none;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* ── Logo mark — green rounded square with single thick ring ── */
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #00E5A0 0%, #00B87A 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,229,160,0.25);
}
/* Single thick black ring only */
.logo-mark::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 3.5px solid #080C10;
  border-radius: 50%;
  background: transparent;
}
.logo-mark::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* ── ORVX + AI text — single row, tightly paired ── */
.nav-logo .logo-word {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}
.nav-logo .logo-main {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #F0F4F8;
  line-height: 1;
  display: inline !important;
}
.nav-logo .logo-sub {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #00E5A0;
  line-height: 1;
  display: inline !important;
}
.footer-brand .logo-word {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
}

/* ── Links (right side) — pushed to far right via space-between ── */
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  flex-shrink: 0;
}
.nav-links > li > a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #00ffb3 !important; transform: translateY(-1px) !important; }

/* ── Dropdown shared ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a .dd-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  color: var(--accent);
  margin-left: 2px;
}
.nav-dropdown:hover > a .dd-arrow { transform: rotate(180deg); }

/* Invisible hover bridge so mouse can move from trigger → menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

/* ── Industries dropdown — anchored RIGHT so it never goes off screen ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;                     /* anchor to RIGHT edge of trigger — opens leftward */
  left: auto;
  transform: translateY(-6px);
  background: #0D1820;
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 0.75rem;
  min-width: 560px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(0,229,160,0.08);
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ── Services dropdown — same, also right-anchored ── */
.services-dropdown-menu {
  grid-template-columns: 1fr 1fr;
  min-width: 520px;
  right: 0;
  left: auto;
  transform: translateY(-6px);
}
.nav-dropdown:hover .services-dropdown-menu {
  transform: translateY(0);
}

/* Dropdown item styles */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.dropdown-menu a:hover {
  background: var(--accent-glow2);
  border-color: var(--border2);
  color: var(--accent) !important;
}
.dropdown-menu a .dd-emoji {
  width: 32px; height: 32px;
  background: var(--surface);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
}
.dropdown-menu a:hover .dd-emoji {
  background: var(--accent-glow);
  border-color: var(--border2);
}
.dropdown-menu a .dd-label { display: flex; flex-direction: column; gap: 1px; }
.dropdown-menu a .dd-label strong { font-weight: 500; font-size: 0.875rem; font-family: var(--font-head); }
.dropdown-menu a .dd-label small { font-size: 0.72rem; color: var(--muted); }

@media(max-width:1080px){ .nav-links { display:none; } }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--accent); color: var(--bg); padding: 0.9rem 2rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; border: none;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-primary:hover { background: #00ffb3; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,160,0.3); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 0.9rem 2rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 400;
  border: 1px solid var(--border); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent2); color: var(--accent); transform: translateY(-2px); }

/* ===== SHARED SECTION STYLES ===== */
section { padding: 6rem 5vw; position: relative; }
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 580px; font-weight: 300; line-height: 1.7; }
.accent-line { display: inline-block; width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 1rem; }
.tag { background: var(--accent-glow2); border: 1px solid var(--border2); color: var(--accent); font-size: 0.72rem; padding: 3px 10px; border-radius: 100px; font-weight: 500; }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--bg2); padding: 1.8rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2); display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.marquee-item span { color: var(--accent); font-size: 0.95rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== REVEAL ===== */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO (shared) ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 72px 5vw 0; position: relative; overflow: hidden; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.5rem; animation: fadeUp 0.8s 0.1s ease both; max-width: 680px; }
.hero h1 span { color: var(--accent); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,160,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,229,160,0.04) 1px,transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle,rgba(0,229,160,0.12) 0%,transparent 70%); top: -100px; right: -100px; animation: floatOrb 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: radial-gradient(circle,rgba(0,100,255,0.06) 0%,transparent 70%); bottom: 100px; left: 10%; animation: floatOrb 10s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-30px)} }
.hero-image-strip { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; overflow: hidden; z-index: 1; }
.hero-image-strip img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.hero-image-strip::before { content:''; position:absolute; left:0; top:0; bottom:0; width:200px; background:linear-gradient(to right, var(--bg), transparent); z-index:2; }
.hero-image-strip::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,229,160,0.05) 0%,transparent 60%); z-index:2; }
@media(max-width:900px){ .hero-image-strip { display:none; } }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-glow2); border: 1px solid var(--border2); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; animation: fadeUp 0.8s ease both; }
.eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.hero-desc { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; animation: fadeUp 0.8s 0.2s ease both; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); animation: fadeUp 0.8s 0.4s ease both; flex-wrap: wrap; position: relative; z-index: 2; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; display: flex; align-items: baseline; gap: 3px; }
.stat-num span { color: var(--accent); font-size: 1.4rem; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--accent),transparent); transform:scaleX(0); transition:transform 0.4s; }
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-icon { width: 48px; height: 48px; background: var(--accent-glow); border: 1px solid var(--border2); border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===== INDUSTRY FEATURE ROWS ===== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media(max-width:860px){ .feature-row { grid-template-columns: 1fr; gap: 2rem; } .feature-row.reverse { direction: ltr; } }
.feature-img { border-radius: 20px; overflow: hidden; height: 420px; position: relative; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.feature-img:hover img { transform: scale(1.04); }
.feature-img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,229,160,0.08) 0%,transparent 60%); }
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.feature-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s; }
.feature-item:hover { border-color: var(--border2); }
.fi-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.fi-text h5 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.fi-text p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; font-weight: 300; }

/* ===== OUTCOME CHIPS ===== */
.outcome-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.chip { background: var(--surface2); border: 1px solid var(--border2); color: var(--accent); font-size: 0.75rem; padding: 4px 12px; border-radius: 100px; font-weight: 500; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; max-width: 1060px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; transition: all 0.3s; position: relative; }
.price-card.featured { background: linear-gradient(145deg,var(--surface2),var(--surface)); border-color: var(--accent); box-shadow: 0 0 60px var(--accent-glow2); }
.price-card:hover { transform: translateY(-4px); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.price-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.price-amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.25rem; display: flex; align-items: flex-start; gap: 4px; }
.price-amount sup { font-size: 1.2rem; margin-top: 8px; color: var(--muted); font-weight: 400; }
.price-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
.price-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text); font-weight: 300; line-height: 1.5; }
.price-features li::before { content:'✓'; color: var(--accent); font-weight: 700; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; filter: none; }
.price-features li.x { color: var(--muted2); }
.price-features li.x::before { content:'–'; color: var(--muted2); }
.price-btn { width: 100%; padding: 0.85rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-align: center; text-decoration: none; display: block; }
.price-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.price-btn-outline:hover { border-color: var(--accent2); color: var(--accent); }
.price-btn-solid { background: var(--accent); border: none; color: var(--bg); }
.price-btn-solid:hover { background: #00ffb3; box-shadow: 0 6px 20px rgba(0,229,160,0.3); }

/* ===== SUPPORT TIERS ===== */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; max-width: 1060px; margin: 0 auto; }
.support-card { border-radius: 20px; padding: 2.5rem; transition: all 0.3s; position: relative; overflow: hidden; }
.support-card.t1 { background: var(--surface); border: 1px solid var(--border); }
.support-card.t2 { background: linear-gradient(145deg,var(--surface2),var(--surface)); border: 1px solid var(--accent); box-shadow: 0 0 50px var(--accent-glow2); }
.support-card.t3 { background: var(--surface); border: 1px solid rgba(120,80,255,0.25); }
.support-card:hover { transform: translateY(-5px); }
.support-card.t2::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,transparent,var(--accent),transparent); }
.tier-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 1.25rem; }
.t1 .tier-badge { background: rgba(255,255,255,0.06); color: var(--muted); border: 1px solid var(--border); }
.t2 .tier-badge { background: var(--accent); color: var(--bg); }
.t3 .tier-badge { background: rgba(120,80,255,0.12); color: #a78bfa; border: 1px solid rgba(120,80,255,0.3); }
.support-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.support-card h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.support-tagline { font-size: 0.88rem; color: var(--muted); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.5; }
.support-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 0.3rem; }
.sp-dollar { font-size: 1.1rem; color: var(--muted); padding-bottom: 14px; }
.sp-amount { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.sp-period { font-size: 0.9rem; color: var(--muted); font-weight: 300; padding-bottom: 4px; }
.support-note { font-size: 0.78rem; color: var(--muted2); margin-bottom: 2rem; }
.support-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.support-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.support-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text); font-weight: 300; line-height: 1.5; }
.sf-check { color: var(--accent); font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; font-weight: 700; }
.sf-dim { color: var(--muted2); font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }
.support-features li.dim-li { color: var(--muted2); }

/* ===== CTA ===== */
.cta-section { background: var(--bg2); padding: 6rem 5vw; text-align: center; position: relative; overflow: hidden; }
.cta-image-bg { position: absolute; inset: 0; }
.cta-image-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.07; }
.cta-inner { max-width: 700px; margin: 0 auto; background: rgba(22,30,40,0.92); border: 1px solid var(--border2); border-radius: 24px; padding: 4rem 3rem; position: relative; z-index: 1; overflow: hidden; backdrop-filter: blur(10px); }
.cta-inner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 60% at 50% 0%,var(--accent-glow) 0%,transparent 70%); pointer-events:none; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; line-height: 1.1; position: relative; }
.cta-inner > p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; font-weight: 300; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 5vw; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 10px; text-decoration: none; letter-spacing: -0.02em; }
.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: var(--muted2); text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ===== COMPARISON TABLE ===== */
.comp-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 2.5rem; margin-top: 3rem; max-width: 1060px; margin-left: auto; margin-right: auto; overflow-x: auto; }
.comp-wrap h4 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; text-align: center; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.comp-table th { text-align: left; padding: 0.65rem 1rem; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.comp-table th:not(:first-child) { text-align: center; }
.comp-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.comp-table td:not(:first-child) { text-align: center; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.015); }
.cc { color: var(--accent); font-weight: 700; }
.cx { color: var(--muted2); }
.ch { color: var(--accent) !important; font-weight: 500; }

/* ===== HOW STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.step-card { background: var(--bg2); padding: 2.5rem; transition: background 0.3s; }
.step-card:hover { background: var(--surface); }
.step-number { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; }
.step-number::after { content:''; flex:1; height:1px; background:var(--border2); max-width:40px; }
.step-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-glow); border: 1px solid var(--border2); display: grid; place-items: center; margin-bottom: 1.5rem; font-size: 1.3rem; }
.step-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===== WHY CARDS ===== */
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){ .why-cards { grid-template-columns: 1fr; } }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: all 0.3s; }
.why-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.why-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; font-weight: 300; }

/* ===== VISUAL PANEL ===== */
.visual-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden; }
.visual-panel::before { content:''; position:absolute; top:-50%; right:-30%; width:300px; height:300px; background:radial-gradient(circle,var(--accent-glow) 0%,transparent 70%); pointer-events:none; }
.panel-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.mbar-label { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.mbar-label span:last-child { color: var(--accent); font-weight: 500; }
.mbar-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 1rem; }
.mbar-fill { height: 100%; background: linear-gradient(90deg,var(--accent2),var(--accent)); border-radius: 3px; width: 0; transition: width 1.5s ease; }
.panel-div { height: 1px; background: var(--border); margin: 1.5rem 0; }
.roi-block { display: flex; justify-content: space-between; gap: 1rem; }
.roi-item { text-align: center; flex: 1; padding: 1rem; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.roi-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.roi-label { font-size: 0.72rem; color: var(--muted); }

/* page-specific hero height for inner pages */
.page-hero { min-height: 55vh; }

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */
.mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: #161E28;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mob-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #F0F4F8;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}
.mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Drawer: starts below the sticky nav bar ── */
.mob-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #080C10;
  z-index: 198;
  flex-direction: column;
  overflow: hidden;
  border-top: 1px solid rgba(0,229,160,0.15);
}
.mob-menu.open { display: flex; }

/* ── Scrollable inner area — fills drawer, scrolls freely ── */
.mob-scroll-inner {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: 3rem;
  /* Ensure it fills height on all iOS versions */
  height: 0;
  min-height: 0;
}

/* ── Top-level nav links ── */
.mob-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none !important;
  color: #F0F4F8 !important;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Syne', sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-link:active { color: #00E5A0 !important; background: rgba(0,229,160,0.04); }

/* ── Accordion toggle rows ── */
.mob-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 5vw;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #F0F4F8;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.mob-accordion-toggle.acc-open { color: #00E5A0; background: rgba(0,229,160,0.04); }

.mob-acc-arrow {
  color: #7A8FA6;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}
.mob-accordion-toggle.acc-open .mob-acc-arrow {
  transform: rotate(180deg);
  color: #00E5A0;
}

/* ── Accordion panel (collapsed by default) ── */
.mob-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.2);
}

/* ── Items inside panel ── */
.mob-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 5vw 0.8rem calc(5vw + 6px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
}
.mob-item:active { background: rgba(0,229,160,0.06); }

.mob-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--accent-glow);
  border: 1px solid var(--border2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.mob-item-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; overflow: hidden; }
.mob-item-name {
  font-size: 0.9rem; font-weight: 600; color: #F0F4F8;
  font-family: 'Syne', sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.mob-item-sub {
  font-size: 0.72rem; color: #7A8FA6; font-weight: 300;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}

/* ── CTA buttons — inside scroll, at the bottom ── */
.mob-drawer-cta {
  padding: 1.5rem 5vw 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.5rem;
}
.mob-cta-btn {
  display: block; width: 100%;
  background: #00E5A0; color: #080C10 !important;
  text-align: center; padding: 1rem;
  border-radius: 10px; border: none;
  font-weight: 700; font-size: 1rem;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 0.75rem;
}
.mob-cta-btn:active { background: #00ffb3; }
.mob-call-btn {
  display: block; text-align: center; padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  color: #C8D8E8 !important; text-decoration: none !important;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent;
}
.mob-call-btn:active { border-color: #00B87A; color: #00E5A0 !important; }

/* ── Remove old/unused classes ── */
.mob-cta-bar { display: none !important; }
.mob-section-title { display: none; }

/* ============================================================
   MOBILE & TABLET RESPONSIVE OVERRIDES   ============================================================ */
@media (max-width: 768px) {

  /* ── NAV ── */
  #site-nav { padding: 0 4vw; }
  .nav-links { display: none !important; }
  .mob-toggle { display: flex; }
  .nav-logo .logo-main { font-size: 1.3rem; }
  .nav-logo .logo-sub  { font-size: 1.3rem; }
  .logo-mark { width: 34px; height: 34px; border-radius: 9px; }
  .logo-mark::before { width: 16px; height: 16px; border-width: 3px; background: transparent; }
  .logo-mark::after  { content: none !important; display: none !important; }

  /* ── SECTIONS ── */
  section { padding: 3rem 5vw; }

  /* ── HERO ── */
  .hero {
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 3rem;
    justify-content: flex-start;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.55rem, 6.5vw, 2.2rem); line-height: 1.14; max-width: 100%; }
  .hero-desc { font-size: 0.98rem; max-width: 100%; line-height: 1.6; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 0.85rem 1.5rem; }
  .hero-stats {
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-num { font-size: 1.6rem; }
  .hero-image-strip { display: none !important; }
  .hero-orb { opacity: 0.3; }

  /* ── PAGE HERO inner pages ── */
  .page-hero { min-height: 44vh; padding-top: 88px; }

  /* ── ALL INLINE-STYLE GRIDS: force single column ── */
  /* These target the divs that have style="display:grid;grid-template-columns:..." */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1.5fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    direction: ltr !important;
  }

  /* ── NAMED LAYOUT CLASSES ── */
  .feature-row,
  .feature-row.reverse,
  .deliverables-inner,
  .how-layout,
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    direction: ltr !important;
  }

  /* ── ALL IMAGES in layout sections — compact height ── */
  .feature-img,
  .how-image,
  .why-image,
  [style*="border-radius:20px"] img,
  [style*="border-radius: 20px"] img,
  [style*="height:520px"],
  [style*="height:440px"],
  [style*="height:420px"] {
    height: 200px !important;
    border-radius: 12px;
  }
  /* Override inline height on image wrapper divs */
  [style*="height:520px"],
  [style*="height: 520px"],
  [style*="height:440px"],
  [style*="height: 440px"],
  [style*="height:420px"],
  [style*="height: 420px"] {
    height: 200px !important;
  }
  .feature-img { height: 200px; }
  .feature-img img { height: 200px; }

  /* ── SERVICE & INDUSTRY CARDS ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .service-card { padding: 1.1rem; }
  .service-card h3 { font-size: 0.88rem; }
  .service-card p { font-size: 0.8rem; line-height: 1.5; }
  .service-icon { width: 36px; height: 36px; font-size: 1rem; margin-bottom: 0.75rem; border-radius: 8px; }

  /* ── STEPS ── */
  .steps-grid { grid-template-columns: 1fr !important; }
  .step-card { padding: 1.25rem; }

  /* ── WHY CARDS ── */
  .why-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-card { padding: 1rem; }
  .why-card h4 { font-size: 0.9rem; }
  .why-card p { font-size: 0.8rem; }

  /* ── PRICING ── */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100%; }
  .price-card { padding: 1.5rem; }

  /* ── SUPPORT TIERS ── */
  .support-grid { grid-template-columns: 1fr !important; max-width: 100%; }
  .support-card { padding: 1.5rem; }

  /* ── COMPARISON TABLE ── */
  .comp-wrap { padding: 1rem; border-radius: 12px; }
  .comp-table { font-size: 0.72rem; }
  .comp-table th, .comp-table td { padding: 0.45rem 0.4rem; }

  /* ── SECTION TITLES ── */
  .section-title { font-size: clamp(1.45rem, 5.5vw, 2rem); }

  /* ── CTA ── */
  .cta-section { padding: 2.5rem 5vw; }
  .cta-inner { padding: 2rem 1.25rem; border-radius: 14px; }
  .cta-inner h2 { font-size: clamp(1.3rem, 5.5vw, 1.75rem); }
  .cta-actions { flex-direction: column; gap: 0.75rem; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary { width: 100%; justify-content: center; }

  /* ── FOOTER ── */
  footer { padding: 2rem 5vw; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { gap: 0.85rem; flex-wrap: wrap; }

  /* ── ROI BLOCK ── */
  .roi-block { gap: 0.5rem; }
  .roi-item { padding: 0.6rem 0.4rem; }
  .roi-num { font-size: 1.15rem; }

  /* ── VISUAL PANEL ── */
  .visual-panel { padding: 1.5rem; }

  /* ── FEATURE LIST ── */
  .feature-list { gap: 0.5rem; }
  .feature-item { padding: 0.75rem 0.9rem; gap: 0.6rem; }
  .fi-text h5 { font-size: 0.85rem; }
  .fi-text p { font-size: 0.78rem; }

  /* ── OUTCOME CHIPS ── */
  .outcome-chips { gap: 0.35rem; margin-top: 1rem; }
  .chip { font-size: 0.68rem; padding: 3px 8px; }

  /* ── MARQUEE ── */
  .marquee-section { padding: 1rem 0; }
  .marquee-item { font-size: 0.7rem; gap: 0.5rem; }
}

/* Very small phones */
@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.4rem, 7vw, 1.85rem); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* Tablets — keep desktop nav, fix some layouts */
@media (min-width: 769px) and (max-width: 1080px) {
  .mob-toggle { display: none !important; }
  .mob-menu { display: none !important; }
  section { padding: 4.5rem 4vw; }
  .hero h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .support-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .feature-row { gap: 2.5rem; }
  .feature-img, .how-image, .why-image { height: 300px; }
  [style*="height:520px"], [style*="height: 520px"],
  [style*="height:440px"], [style*="height: 440px"] { height: 300px !important; }
}

/* ===== TRANSFORM TIER (4th tier - gold) ===== */
.t4 {
  background: linear-gradient(145deg, #0D1820, #111C28);
  border: 1px solid rgba(255,180,0,0.3);
  box-shadow: 0 0 60px rgba(255,160,0,0.06);
}
.t4::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,180,0,0.7), transparent);
}
.t4 .tier-badge {
  background: rgba(255,180,0,0.12);
  color: #FFB400;
  border: 1px solid rgba(255,180,0,0.3);
}
.t4 .sf-check { color: #FFB400; }
.t4:hover { transform: translateY(-5px); }
.transform-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  background: rgba(255,180,0,0.12);
  border: 1px solid rgba(255,180,0,0.4);
  color: #FFB400;
  transition: all 0.2s;
}
.transform-btn:hover {
  background: rgba(255,180,0,0.2);
  border-color: rgba(255,180,0,0.7);
  transform: translateY(-1px);
}

/* 4-col support grid on wide screens */
@media (min-width: 1081px) {
  .support-4col {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ============================================================
   CALENDLY MODAL OVERLAY
   ============================================================ */
#orvx-cal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
#orvx-cal-modal.cal-open { display: flex; }

.cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.cal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  height: 90vh;
  max-height: 760px;
  background: #0D1520;
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(0,229,160,0.06);
  animation: calSlideUp 0.28s ease both;
}
@keyframes calSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #0A1018;
  flex-shrink: 0;
}
.cal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cal-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00E5A0 0%, #00B87A 100%);
  flex-shrink: 0;
}
.cal-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F0F4F8;
  line-height: 1.2;
}
.cal-sub {
  font-size: 0.72rem;
  color: #7A8FA6;
  font-weight: 300;
  margin-top: 2px;
}
.cal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #C8D8E8;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.cal-close:hover { background: rgba(0,229,160,0.12); color: #00E5A0; border-color: rgba(0,229,160,0.3); }

.cal-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.cal-body .calendly-inline-widget {
  width: 100% !important;
  height: 100% !important;
}
.cal-body iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* Mobile adjustments for modal */
@media (max-width: 600px) {
  .cal-panel {
    max-width: 100%;
    height: 95vh;
    max-height: 95vh;
    margin: 0 8px;
    border-radius: 16px;
  }
  .cal-header { padding: 0.9rem 1rem; }
  .cal-title { font-size: 0.88rem; }
}

/* ============================================================
   MOBILE ACCORDION (Industries & Services in drawer)
   ============================================================ */

/* The clickable header row */
.mob-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 5vw;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #F0F4F8;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s, background 0.2s;
}
.mob-accordion-toggle:active,
.mob-accordion-toggle.acc-open {
  color: #00E5A0;
  background: rgba(0,229,160,0.04);
}

/* Chevron arrow — rotates when open */
.mob-acc-arrow {
  color: #7A8FA6;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s;
}
.mob-accordion-toggle.acc-open .mob-acc-arrow {
  transform: rotate(180deg);
  color: #00E5A0;
}

/* The collapsible panel — hidden by default */
.mob-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.15);
}
.mob-accordion-panel.acc-panel-open {
  /* max-height set dynamically by JS */
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Items inside the panel get a slight indent */
.mob-accordion-panel .mob-item {
  padding-left: calc(5vw + 8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mob-accordion-panel .mob-item:last-child {
  border-bottom: none;
}

/* ── Brand emoji colour filter (#00E5A0) ────────────────────────────── */
/* Only filter the emoji character itself, never the container box */
/* SVG icons use hardcoded stroke="#00E5A0" — no filter needed on containers */
/* Only filter em-brand spans (actual emoji characters) */


/* 5. Tick marks use CSS color directly — no filter */
.price-features li::before, .ob-features li::before,
.support-features li::before, .sf-check, .sd-check {
  filter: none !important;
  -webkit-filter: none !important;
}

/* ═══ ICON & EMOJI FILTERS ═══════════════════════════════════════════ */

/* 1. All icon containers: no filter on the box itself */
.calc-result-icon, .factor-icon, .fi-icon, .rc-icon, .sd-icon,
.step-icon, .why-card-icon, .service-icon, .dd-emoji, .mob-icon {
  filter: none;
  -webkit-filter: none;
}

/* 2. SVG icons inside containers → white */
.calc-result-icon svg, .factor-icon svg, .fi-icon svg, .rc-icon svg,
.sd-icon svg, .step-icon svg, .why-card-icon svg, .service-icon svg,
.dd-emoji svg, .mob-icon svg {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* 3. Emoji characters → brand green */
.em-brand {
  display: inline-block;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(126deg) brightness(1.5);
  -webkit-filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(126deg) brightness(1.5);
}

/* 4. Emoji inside containers → brand green forced */
.calc-result-icon .em-brand, .factor-icon .em-brand, .fi-icon .em-brand,
.rc-icon .em-brand, .sd-icon .em-brand, .step-icon .em-brand,
.service-icon .em-brand, .dd-emoji .em-brand, .mob-icon .em-brand,
.why-card-icon .em-brand {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(126deg) brightness(1.5) !important;
  -webkit-filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(126deg) brightness(1.5) !important;
}

/* 5. Tick marks use CSS color — no filter */
.price-features li::before, .ob-features li::before,
.sf-check, .sd-check {
  filter: none !important;
  -webkit-filter: none !important;
}
