/* =============================================================
    WYNLEADS GLOBAL STYLESHEET
    Organized for maintainability & theme control.
    Order: Tokens → Base → Utilities → Components → Sections (DOM order) → Media Prefs
    ============================================================= */

/* -------------------------------------------------------------
    1. DESIGN TOKENS (Custom Properties)
    Central place to tweak theme: colors, typography, spacing, radii, shadows.
    ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
     /* Palette */
     --primary-color: #01CBE7;
     --secondary-color:#0F182C;
     --light-primary-color: #4A7C7C;
     --accent-color:  #01CBE7;
     --accent-color-alt:#0F182C;
     --white: #FFFFFF;
     --light-gray: #F8F9FA;
     --gray-100: #eef2f3;
     --gray-200: #e5e8ec;
     --gray-300: #d1d8e0;
     --text-dark: #2C3E50;
     --text-light: #6C757D;
     --text-muted-inverse: #c2d9d7;

     /* Gradients */
     --grad-app-teal: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
     --grad-head-teal: linear-gradient(100deg, var(--secondary-color), var(--primary-color));
     --grad-head-light: linear-gradient(90deg,#ffffff,#a7fff5);
     --grad-accent-col: linear-gradient(135deg,var(--accent-color),#01CBE7);
     --grad-accent-radial: radial-gradient(circle at 30% 30%, var(--accent-color), #01CBE7 75%);
     --feat-depth: linear-gradient(160deg, #103131 0%, #1a3a3a 55%, #214b4b 100%);

     /* Glass / overlays */
     --glass-dark: rgba(26,58,58,0.6);
     --glass-panel: rgba(16,49,49,0.55);
     --grid-line: rgba(255,255,255,0.07);
     --bg-grid-stack: 
          linear-gradient(var(--grid-line) 1px, transparent 1px),
          linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
          radial-gradient(circle at 68% 38%, rgba(1, 191, 231,0.12), transparent 60%),
          var(--grad-app-teal);

     /* Typography Scale (adjust root values to resize site quickly) */
     --font-stack-sans: "Inter", sans-serif ;
     --fs-2xs: 0.65rem;
     --fs-xs: 0.75rem;
     --fs-sm: 0.85rem;
     --fs-base: 1rem;
     --fs-md: 1.15rem;
     --fs-lg: 1.35rem;
     --fs-xl: 1.9rem;
     --fs-2xl: 2.4rem;
     --fs-3xl: 3.1rem;

     /* Line heights */
     --lh-tight: 1.1;
     --lh-snug: 1.25;
     --lh-base: 1.5;
     --lh-relaxed: 1.6;

     /* Spacing Scale (4-based) */
     --space-1: 4px;
     --space-2: 8px;
     --space-3: 12px;
     --space-4: 16px;
     --space-5: 20px;
     --space-6: 24px;
     --space-7: 28px;
     --space-8: 32px;
     --space-10: 40px;
     --space-12: 48px;
     --space-16: 64px;

     /* Sizing / Radius */
     --radius-sm: 6px;
     --radius-md: 14px;
     --radius-lg: 22px;
     --radius-xl: 30px;
     --radius-pill: 40px;
     --radius-round: 50%;

     /* Shadows */
     --shadow-soft: 0 4px 12px -6px rgba(0,0,0,0.12);
     --shadow-med: 0 10px 26px -12px rgba(0,0,0,0.22);
     --shadow-pop: 0 18px 40px -16px rgba(0,0,0,0.6), 0 6px 20px -10px rgba(0,0,0,0.5);
     --shadow-focus: 0 0 0 4px rgba(1, 191, 231,0.35);

     /* Transitions */
     --ease-standard: cubic-bezier(.22,.9,.29,1);
     --ease-soft: cubic-bezier(.65,.05,.36,1);
     --anim-duration-short: .3s;
     --anim-duration-med: .55s;

     /* Component Tokens */
     --badge-bg: var(--accent-color);
     --badge-color: #003B32;
     --badge-transform: uppercase;
     --badge-weight: 600;
     --badge-letter: .08em;
     --badge-pad-y: 4px;
     --badge-pad-x: 10px;
     --badge-radius: var(--radius-pill);

     --btn-radius: var(--radius-pill);
     --btn-font-weight: 600;
     --btn-pad-y: 14px;
     --btn-pad-x: 28px;
     --btn-fs: 1.05rem;
     --btn-shadow: 0 4px 15px #0f182caf;
     --btn-shadow-hover: 0 6px 20px rgba(1, 55, 231, 0.4);
     --btn-outline-border: 2px solid rgba(255,255,255,0.35);

     /* Z Index Scale */
     --z-nav: 1000;
     --z-modal: 2000;
     --z-overlay: 900;
     --z-content: 10;
     --z-bg: 0;
}


/* -------------------------------------------------------------
    2. BASE RESET & ELEMENT DEFAULTS
    ------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-stack-sans); line-height: var(--lh-relaxed); color: var(--text-dark); background-color: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { display:block; max-width:100%; }
ul,ol { padding-left: 1.1rem; }
button { font-family: inherit; }

/* -------------------------------------------------------------
    3. UTILITIES
    (Small, single‑purpose helpers. Add more as needed.)
    ------------------------------------------------------------- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.text-gradient-teal { background: var(--grad-head-teal); -webkit-background-clip:text; background-clip:text; color:transparent; }
.text-gradient-light { background: var(--grad-head-light); -webkit-background-clip:text; background-clip:text; color:transparent; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); }

/* -------------------------------------------------------------
    4. GENERIC COMPONENTS (reusable patterns)
    ------------------------------------------------------------- */
/* Badge / Tag */
.tag, .compare-head .tag, .vs-head .tag, .features-head .tag, .trial-head .tag, .obj-head .tag { display:inline-block; font-size: 0.75em; letter-spacing: var(--badge-letter); text-transform: var(--badge-transform); background: var(--badge-bg); color: var(--badge-color); padding: var(--badge-pad-y) var(--badge-pad-x) calc(var(--badge-pad-y) + 1px); border-radius: var(--badge-radius); font-weight: var(--badge-weight); position:relative; top:-4px; box-shadow: 0 4px 10px -3px rgba(0,212,170,0.45), 0 0 0 1px rgba(0,59,50,0.35); backdrop-filter: blur(4px); }
.features-head .tag { margin: 0 0 1rem; top:-2px; }

/* Buttons (map existing CTA classes for backward compatibility) */
.btn, .cta-primary, .cta-outline { font-weight: var(--btn-font-weight); font-size: var(--btn-fs); padding: var(--btn-pad-y) var(--btn-pad-x); border-radius: var(--btn-radius); text-decoration:none; display:inline-block; transition: all var(--anim-duration-short) ease; cursor:pointer; line-height:1.1; }
.cta-primary { background: var(--accent-color); color: var(--white); box-shadow: var(--btn-shadow); border:none; }
.cta-primary:hover { background: var(--accent-color-alt); box-shadow: var(--btn-shadow-hover); transform: translateY(-2px); }
.cta-outline { background: rgba(255,255,255,0.08); color: var(--white); border: var(--btn-outline-border); backdrop-filter: blur(4px); }
.cta-outline:hover { background: rgba(255,255,255,0.16); border-color: var(--white); transform: translateY(-2px); }
.cta-secondary { color: var(--white); font-size: var(--fs-base); opacity: 0.8; transition: opacity var(--anim-duration-short) ease; }
.cta-secondary:hover { opacity:1; text-decoration:underline; }

/* Lists / custom bullet helpers */
.accent-bullets li { position:relative; padding-left: 1.15rem; }
.accent-bullets li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:2px; background: var(--grad-accent-col); box-shadow:0 0 0 3px rgba(0,212,170,0.22); }

/* Glass Card Base (extend via additional classes) */
.glass-card { position:relative; border:1px solid rgba(255,255,255,0.12); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); overflow:hidden; isolation:isolate; }

/* Tables */
.table-responsive { overflow-x:auto; -webkit-overflow-scrolling:touch; }

/* Animations keyframes (grouped) */
@keyframes underlineGrow { 0% { width:0; } 45% { width:72%; } 100% { width:100%; } }
@keyframes brandPulse { 0% { box-shadow:0 0 0 0 rgba(0,212,170,0); } 18% { box-shadow:0 0 0 4px rgba(0,212,170,0.35); } 42% { box-shadow:0 0 0 14px rgba(0,212,170,0); } 100% { box-shadow:0 0 0 0 rgba(0,212,170,0); } }
@keyframes badgePulse { 0%,55%,100% { transform:scale(1); filter:brightness(1); } 6% { transform:scale(1.08); filter:brightness(1.15); } 12% { transform:scale(1); } }
@keyframes bounceDown { 0%,18%,100% { transform:translateY(0); } 9% { transform:translateY(6px); } 36% { transform:translateY(0); } 45% { transform:translateY(6px); } 54% { transform:translateY(0); } }
@keyframes featureFloat { 0% { opacity:0; transform:translateY(14px) scale(.95); } 8% { opacity:.38; } 15% { opacity:.5; } 70% { opacity:.5; } 84% { opacity:.34; } 100% { opacity:0; transform:translateY(-24px) scale(1.05); } }
@keyframes heroCircles { 0% { background-position:0% 0%,100% 0%,0% 100%,100% 100%,50% 50%; opacity:.5; } 18% { background-position:80% 20%,10% 15%,90% 70%,15% 85%,55% 45%; opacity:.48; } 30% { background-position:50% 50%,50% 50%,50% 50%,50% 50%,50% 50%; opacity:.55; } 42% { background-position:15% 85%,85% 80%,20% 25%,75% 15%,45% 55%; opacity:.48; } 60% { background-position:50% 50%,50% 50%,50% 50%,50% 50%,50% 50%; opacity:.56; } 78% { background-position:100% 100%,0% 100%,100% 0%,0% 0%,55% 55%; opacity:.49; } 100% { background-position:0% 0%,100% 0%,0% 100%,100% 100%,50% 50%; opacity:.5; } }

/* -------------------------------------------------------------
    5. SECTION STYLES (DOM order)
    ------------------------------------------------------------- */
/* ========== 5.1 NAVIGATION BAR ========== */
.navbar { background-color: transparent; position: fixed; top:0; left:0; right:0; width:100%; z-index: var(--z-nav); }
.nav-container {margin-left: 120px;margin-right: 140px; padding:0 20px; display:flex; justify-content:space-between; align-items:center; height:70px; }
.nav-logo .nav-brand { font-size:1.8rem; font-weight:700; color: var(--white); text-decoration:none; transition: color var(--anim-duration-short) ease; }
.nav-logo .nav-brand:hover { color: var(--accent-color); }
.nav-menu { display:flex; align-items:center; }
.nav-list { display:flex; list-style:none; margin:0; padding:0; gap:2rem; }
.nav-item { position:relative; }
.nav-link { color: var(--white); text-decoration:none; font-weight:500; font-size:1rem; transition: color var(--anim-duration-short) ease; position:relative; }
.nav-link:hover { color: var(--accent-color); }
.nav-link::after { content:""; position:absolute; width:0; height:2px; bottom:-5px; left:0; background: var(--accent-color); transition: width var(--anim-duration-short) ease; }
.nav-link:hover::after { width:100%; }
.ai-nav{color: #3fe8ff;font-weight: bold;}
.nav-spacer{ flex:1; }  
/* Mobile Toggle */
.nav-toggle { display:none; flex-direction:column; cursor:pointer; padding:5px; }
.bar { width:25px; height:3px; background: var(--white); margin:3px 0; transition: var(--anim-duration-short); border-radius:2px; }
@media (max-width: 768px){
    .nav-container { padding:0 15px; margin-left: 0; margin-right: 0; }
  .nav-menu { position:fixed; left:-100%; top:70px; flex-direction:column; background: rgba(45,90,90,0.95); backdrop-filter: blur(10px); width:100%; text-align:center; transition:.3s; padding:2rem 0; }
  .nav-menu.active { left:0; }
  .nav-list { flex-direction:column; gap:1.5rem; width:100%; }
  .nav-item { width:100%; }
  .nav-link { display:block; padding:1rem; font-size:1.1rem; }
  .nav-toggle { display:flex; }
  .nav-toggle.active .bar:nth-child(2){ opacity:0; }
  .nav-toggle.active .bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active .bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
}
/* Tablet: soften desktop margins */
@media (max-width: 1024px){
    .nav-container { margin-left: 24px; margin-right: 24px; }
}
@media (max-width:480px){
    .nav-container { height:60px; }
    .nav-logo .nav-brand { font-size:1.5rem; }
    .nav-menu { top:60px; }
}



/* ========== 5.10 FOOTER ========== */
.site-footer { background: #0F182C; background: linear-gradient(160deg,#0F182C, 60%,#01CBE7); color:#d9f6f2; padding:68px clamp(1.4rem,6vw,3.4rem) 38px; position:relative; overflow:hidden; font-family: var(--font-stack-sans); }
.site-footer::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 18% 24%, rgba(1, 191, 231,0.28), transparent 65%), radial-gradient(circle at 82% 76%, rgba(0,212,170,0.22), transparent 70%); mix-blend-mode:overlay; pointer-events:none; opacity:.55; }
.footer-top { display:grid; gap: clamp(2.2rem,3.2vw,3rem); grid-template-columns: minmax(260px,320px) 1fr; align-items:start; max-width:1240px; margin:0 auto 32px; position:relative; z-index:2; }
.footer-brand { min-width:240px; max-width:340px; }
@media (max-width:900px){ .footer-top { grid-template-columns: 1fr; } }
.footer-logo { font-size:2rem; font-weight:700; text-decoration:none; background: var(--grad-head-light); -webkit-background-clip:text; background-clip:text; color:transparent; display:inline-block; margin:0 0 .75rem; letter-spacing:.5px; }
.footer-logo:hover { filter:brightness(1.15); }
.footer-tagline { font-size:.9rem; line-height:1.5; color:#b9e9e1; margin:0 0 1.3rem; max-width:300px; }
.footer-cta { display:flex; gap:.7rem; flex-wrap:wrap; }
.footer-cta .cta-primary.small, .footer-cta .cta-outline.small { padding:10px 18px; font-size:.85rem; }
.footer-nav { display:flex; flex-wrap:wrap; gap: clamp(1.6rem,2.2vw,2.2rem); row-gap: clamp(1.8rem,2.6vw,2.6rem); }
.footer-col { flex: 0 1 150px; min-width:150px; }
@media (max-width:600px){ .footer-col { flex: 0 1 calc(50% - 1rem); } }
@media (max-width:420px){ .footer-col { flex:1 1 100%; } }
@media (min-width:960px){
    .footer-nav { display:grid; grid-template-columns:repeat(5,minmax(130px,1fr)); align-items:start; }
    .footer-col { flex:initial; min-width:0; }
}
.footer-col-head { font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:#9feee0; margin:0 0 1.1rem; position:relative; }
.footer-links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.55rem; }
.footer-links a { text-decoration:none; color:#daf5f1; font-size:.9rem; line-height:1.4; display:inline-block; position:relative; padding:.1rem 0; transition:color .35s var(--ease-standard); font-weight:500; }
.footer-links a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--grad-accent-col); border-radius:2px; transition: width .45s var(--ease-soft); }
.footer-links a:hover { color:#ffffff; }
.footer-links a:hover::after { width:100%; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.12); padding:26px 0 0; display:flex; flex-direction:column; gap:1rem; max-width:1240px; margin:0 auto; position:relative; z-index:2; }
.footer-inline-links { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:1.1rem; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; font-weight:600; }
.footer-inline-links a { color:#9edfd4; text-decoration:none; position:relative; font-weight:600; }
.footer-inline-links a:hover { color:#ffffff; }
.footer-socials { display:flex; flex-wrap:wrap; gap:1.1rem; justify-content:flex-end; }
.footer-socials a { color:#9edfd4; text-decoration:none; }
.footer-socials a:hover { color:#ffffff; }
.footer-inline-links .back-to-top { background:rgba(255,255,255,0.08); padding:6px 12px 7px; border-radius: var(--radius-pill); font-size:.65rem; letter-spacing:.15em; color:#c1f7ef; border:1px solid rgba(255,255,255,0.18); transition: background .35s ease, transform .35s var(--ease-standard); }
.footer-inline-links .back-to-top:hover { background:rgba(255,255,255,0.16); transform:translateY(-2px); }
.copyright { font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color:#8bcfc3; font-weight:600; }
@media (max-width:640px){ .site-footer { padding:60px 1.25rem 34px; } .footer-top { grid-template-columns: 1fr; } .footer-brand { order:-1; } }
@media (prefers-reduced-motion: reduce){ .footer-links a::after { transition:none; } .footer-inline-links .back-to-top { transition:none; } }

/* ========== 5.2 HERO SECTION ========== */
/* .hero { background: var(--bg-grid-stack); background-size:140px 140px,140px 140px,100% 100%,100% 100%; background-attachment: fixed,fixed,scroll,scroll; color: var(--white); padding: 120px 20px 100px; text-align:center; min-height:100vh; display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative; overflow:hidden; } */
.hero-content { max-width:850px; margin:0 auto; position:relative; z-index:1; }
.hero .top-head { font-size:3.5rem; font-weight:700; margin-bottom:1.5rem; line-height:1.2; text-shadow:0 2px 4px rgba(0,0,0,0.3); }
.hero .subheading { font-size:1.3rem; font-weight:400; margin-bottom:3rem; opacity:.9; line-height:1.5; max-width:600px; margin-left:auto; margin-right:auto; }
.hero-wave { position:absolute; bottom:-1px; left:0; width:100%; line-height:0; z-index:0; pointer-events:none; }
.hero-wave svg { display:block; width:100%; height:160px; }
.scroll-cue { position:absolute; left:50%; bottom:42px; transform:translateX(-50%); width:46px; height:46px; border-radius:50%; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.35); display:flex; align-items:center; justify-content:center; color: var(--white); text-decoration:none; font-size:1.35rem; backdrop-filter: blur(4px); transition: all .4s ease; z-index:2; }
.scroll-cue:hover { background: rgba(255,255,255,0.18); transform: translateX(-50%) translateY(-4px); box-shadow:0 8px 20px -6px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.15); }
.scroll-cue-arrow { animation: bounceDown 2.6s infinite; line-height:1; }
@media (max-width:600px){ .hero-wave svg { height:120px; } .scroll-cue { width:42px; height:42px; font-size:1.2rem; bottom:34px; } }
.hero::before { content:""; position:absolute; inset:0; z-index:0; pointer-events:none; background: radial-gradient(circle at 18% 32%, rgba(255,255,255,0.09) 0 120px, transparent 130px), radial-gradient(circle at 82% 38%, rgba(255,255,255,0.07) 0 100px, transparent 110px), radial-gradient(circle at 40% 78%, rgba(255,255,255,0.06) 0 140px, transparent 150px), radial-gradient(circle at 75% 82%, rgba(255,255,255,0.05) 0 90px, transparent 100px), radial-gradient(circle at 55% 45%, rgba(255,255,255,0.04) 0 160px, transparent 170px); background-size:200% 200%; animation: heroCircles 55s linear infinite; mix-blend-mode:screen; opacity:.5; }
.hero-features { position:absolute; inset:0; z-index:0; pointer-events:none; font-family:inherit; overflow:hidden; }
.hero-feature-float { position:absolute; font-size:.8rem; font-weight:500; letter-spacing:.05em; text-transform:uppercase; color:rgba(255,255,255,0.42); white-space:nowrap; opacity:0; filter:blur(.2px); animation: featureFloat linear forwards; mix-blend-mode:screen; }
.hero-feature-float.alt { color:rgba(255,255,255,0.30); }
.hero-feature-float.accent { color:rgba(0,212,170,0.45); }
.cta-container { display:flex; flex-direction:column; align-items:center; gap:1rem; }
.cta-buttons { display:flex; gap:1rem; align-items:center; justify-content:center; flex-wrap:wrap; }
@media (max-width:768px){ .hero { padding:80px 20px 60px; } .hero .top-head { font-size:2.5rem; } .hero .subheading { font-size:1.1rem; margin-bottom:2rem; } .cta-primary, .cta-outline { padding:12px 22px; font-size:1rem; } }
@media (max-width:480px){ .hero { padding:70px 20px 50px; } .hero .top-head { font-size:2rem; } .hero .subheading { font-size:1rem; } .cta-primary, .cta-outline { padding:11px 20px; font-size:.95rem; } }

/* ========== 5.3 BEFORE / AFTER COMPARISON ========== */
.compare { background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%); padding: 80px 20px 110px; position:relative; }
.compare-inner { max-width:1180px; margin:0 auto; }
.compare-head { text-align:center; max-width:880px; margin:0 auto 60px; }
.compare-head h2 { font-size:2.6rem; font-weight:700; line-height:1.15; margin-bottom:18px; background: var(--grad-head-teal); -webkit-background-clip:text; background-clip:text; color:transparent; }
.compare-sub { font-size:1.15rem; color: var(--text-light); line-height:1.5; }
.compare-stage { position:relative; width:100%; margin:0 auto; }
.compare-media { position:relative; width:100%; aspect-ratio:16/9; background:#fff; border-radius:26px; overflow:hidden; box-shadow:0 20px 40px -10px rgba(0,0,0,0.08), 0 8px 16px -6px rgba(0,0,0,0.05); user-select:none; cursor:ew-resize; max-width:900px; margin:0 auto; }
.compare-pane { position:absolute; inset:0; width:100%; height:100%; overflow:hidden; }
.compare-pane img { width:100%; height:100%; object-fit:cover; filter:saturate(0.95); }
.compare-overlay { position:absolute; left:18px; bottom:18px; max-width:min(50%, 360px); background: rgba(16,49,49,0.58); color:#eafffb; padding:10px 12px; border-radius:12px; border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(8px) saturate(140%); -webkit-backdrop-filter: blur(8px) saturate(140%); box-shadow:0 8px 18px -10px rgba(0,0,0,0.32); z-index:5; pointer-events:none; }
.compare-overlay--unified { left:24px; right:auto; bottom:24px; }
.before-video{width:100%;overflow:hidden;}
.before-video video{width:60vw;min-width:100%;object-fit:cover;display:block;}
.after-video{overflow:hidden;}
.after-video video{width:50vw;min-width:100%;object-fit:cover;display:block;}
/* Hide the per-figure overlays when unified overlay exists */
.compare-media .compare-pane .compare-overlay { display:none; }
.compare-overlay .overlay-tag { display:inline-block; background: var(--accent-color); color:#023d32; font-size:.55rem; letter-spacing:.12em; text-transform:uppercase; font-weight:700; padding:3px 8px 4px; border-radius:12px; margin-bottom:6px; box-shadow:0 0 0 1px rgba(0,0,0,0.08); }
.compare-overlay .overlay-title { font-size:.95rem; line-height:1.15; margin:0 0 4px; font-weight:700; background: var(--grad-head-light); -webkit-background-clip:text; background-clip:text; color:transparent; }
.compare-overlay .overlay-points { list-style:none; margin:0; padding:0; display:flex; gap:8px 12px; flex-wrap:wrap; font-size:.78rem; color:#d6f7f2; }
.compare-overlay .overlay-points li { position:relative; padding-left:10px; line-height:1.25; }
.compare-overlay .overlay-points li::before { content:""; position:absolute; left:0; top:.55em; width:5px; height:5px; border-radius:2px; background: var(--grad-accent-col); box-shadow:0 0 0 1.5px rgba(0,212,170,0.18); }
@media (max-width:680px){
        .compare-overlay { left:10px; right:10px; bottom:10px; max-width:unset; padding:9px 10px; border-radius:10px; }
        .compare-overlay .overlay-title { font-size:.9rem; }
        .compare-overlay .overlay-points { font-size:.74rem; }
}
.compare-after { clip-path: inset(0 0 0 100%); position:absolute; top:0; left:0; will-change:clip-path; }
.edge-jag { position:absolute; top:0; bottom:0; left:-22px; width:44px; background: repeating-linear-gradient(60deg, rgba(255,255,255,0.0) 0 10px, rgba(255,255,255,0.35) 10px 20px); mix-blend-mode:screen; pointer-events:none; opacity:.65; }
.compare-handle { position:absolute; top:50%; transform:translate(-50%, -50%); left:0%; width:28px; height:28px; display:flex; align-items:center; justify-content:center; z-index:4; pointer-events:none; }
.handle-core { width:28px; height:28px; border-radius:50%; background: var(--accent-color); box-shadow:none; display:flex; align-items:center; justify-content:center; color:#023B31; font-size:0.85rem; font-weight:600; position:relative; }
.handle-core::after { content:none; }
.handle-arrows { letter-spacing:0; line-height:1; }
.compare-legends { list-style:none; display:flex; gap:2rem; justify-content:center; margin-top:32px; font-size:.95rem; color: var(--text-light); flex-wrap:wrap; }
.compare-legends .dot { width:14px; height:14px; border-radius:50%; margin-right:8px; vertical-align:-2px; display:inline-block; box-shadow:0 0 0 3px rgba(0,0,0,0.05); }
.dot-before { background: linear-gradient(135deg, #d1d8e0, #b2bec3); }
.dot-after { background: var(--accent-color); }
@media (max-width:900px){ .compare-head h2 { font-size:2.2rem; } }
@media (max-width:640px){ .compare { padding:70px 16px 90px; } .compare-head h2 { font-size:1.9rem; } .compare-sub { font-size:1rem; } .handle-core { width:28px; height:28px; font-size:0.85rem; } .compare-handle { width:28px; height:28px; } }
@media (max-width:460px){ .compare-legends { gap:1.25rem; font-size:.85rem; } .compare-head h2 { font-size:1.7rem; } }

/* ========== 5.4 WHY MOST CRMs FAIL (fail lines + solution) ========== */
.why-crms { position:relative; background: var(--white); padding:110px clamp(1.4rem,5vw,3.2rem) 120px; overflow:hidden; }
.why-inner { max-width:1100px; margin:0 auto; }
.why-head { text-align:center; margin:0 auto 3.2rem; max-width:760px; }
.why-head h2 { font-size: clamp(2.15rem,4.8vw,3.1rem); line-height:1.1; font-weight:700; background: var(--grad-head-teal); -webkit-background-clip:text; background-clip:text; color:transparent; position:relative; }
.fail-layout { display:grid; gap: clamp(2.4rem,4vw,4rem); grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); align-items:start; position:relative; }
.fail-list { list-style:none; display:flex; flex-direction:column; gap:1.4rem; margin:0; padding:0; position:relative; }
.fail-line { font-size: clamp(1.4rem,2.3vw,2.05rem); font-weight:600; line-height:1.15; letter-spacing:-0.5px; position:relative; color: var(--text-dark); opacity:0; transform:translateY(16px); transition: color .45s ease, transform .55s var(--ease-standard); }
.fail-line::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--grad-accent-col); border-radius:2px; }
.fail-line:hover, .fail-line:focus-visible { color: var(--accent-color); transform: translateY(0) translateX(8px); }
.fail-line:hover::after, .fail-line:focus-visible::after { width:100%; background: var(--grad-accent-col); box-shadow:0 2px 10px -2px #01CBE7; transition: width .5s var(--ease-soft), box-shadow .5s ease; }
.solution-card { position:relative; background: linear-gradient(160deg, #01CBE7,#02a1b6 60%,#027b8b); color:#e9fefb; border-radius:28px; padding: clamp(1.9rem,3vw,2.6rem) clamp(1.8rem,3vw,2.4rem) clamp(2.2rem,3vw,2.8rem); box-shadow: 0 22px 46px -18px rgba(0,0,0,0.25), 0 8px 22px -10px rgba(0,0,0,0.18); backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%); overflow:hidden; isolation:isolate; opacity:0; transform:translateY(22px); }
.solution-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 22% 18%, #01CBE7, transparent 60%); mix-blend-mode:overlay; pointer-events:none; opacity:.6; }
.solution-card::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg,rgba(255,255,255,0.18),rgba(255,255,255,0) 55%); pointer-events:none; }
.solution-card p { font-size: clamp(1.05rem,1.4vw,1.25rem); line-height:1.55; font-weight:500; letter-spacing:.2px; }
.solution-card strong { font-weight:700; background: linear-gradient(90deg,#fff,#a8fff2); -webkit-background-clip:text; background-clip:text; color:transparent; }
.sol-tag { display:inline-block; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; background: var(--accent-color); color:#023d32; padding:5px 12px 6px; border-radius: var(--radius-pill); margin-bottom:1.2rem; font-weight:600; position:relative; box-shadow:0 0 0 1px rgba(0,0,0,0.15), 0 4px 10px -2px #01CBE7; }
.why-crms::before, .why-crms::after { content:""; position:absolute; width:420px; height:420px; background: radial-gradient(circle at 30% 30%, rgba(0, 212, 212, 0.11), transparent 70%); top:-140px; right:-120px; filter:blur(2px); opacity:.65; pointer-events:none; }
.why-crms::after { top:auto; bottom:-160px; left:-160px; right:auto; background: radial-gradient(circle at 70% 70%, #01CBE7, transparent 70%); opacity:.55; }
.why-crms.animate-in .fail-line { opacity:1; transform:translateY(0); transition: opacity .7s var(--ease-standard), transform .7s var(--ease-standard), color .45s ease; }
.why-crms.animate-in .fail-line:nth-child(1){ transition-delay:.05s; }
.why-crms.animate-in .fail-line:nth-child(2){ transition-delay:.18s; }
.why-crms.animate-in .fail-line:nth-child(3){ transition-delay:.31s; }
.why-crms.animate-in .fail-line:nth-child(1)::after { animation: underlineGrow .9s var(--ease-soft) .28s forwards; }
.why-crms.animate-in .fail-line:nth-child(2)::after { animation: underlineGrow .9s var(--ease-soft) .41s forwards; }
.why-crms.animate-in .fail-line:nth-child(3)::after { animation: underlineGrow .9s var(--ease-soft) .54s forwards; }
.why-crms.animate-in .solution-card { opacity:1; transform:translateY(0); transition: opacity .85s var(--ease-standard) .55s, transform .85s var(--ease-standard) .55s; }
@media (max-width:760px){ .why-crms { padding:90px 1.25rem 100px; } .fail-line { font-size:clamp(1.35rem,5.5vw,1.85rem); } .solution-card { padding:2rem 1.6rem 2.4rem; } }
@media (max-width:520px){ .fail-layout { gap:2.2rem; } .solution-card p { font-size:1.05rem; } }

/* ========== 5.5 FEATURES (glass cards) ========== */
.features { position:relative; background: var(--bg-grid-stack); background-size:140px 140px,140px 140px,100% 100%,100% 100%; background-attachment: fixed,fixed,scroll,scroll; color:#e8f8f6; padding:120px clamp(1.4rem,5vw,3rem) 140px; }
.features-inner { max-width:1240px; margin:0 auto; }
.features-head { text-align:center; max-width:900px; margin:0 auto 3.5rem; }
.features-head h2 { font-size: clamp(2.2rem,5vw,3.3rem); line-height:1.1; background: linear-gradient(90deg,#fff,#b0e5ec,#01d7fd); -webkit-background-clip:text; background-clip:text; color:transparent; font-weight:700; }
.features-sub { font-size: clamp(1rem,1.9vw,1.25rem); color:#c2d9d7; margin-top:1rem; line-height:1.5; }
.feature-grid { display:grid; gap:2.4rem; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); align-items:stretch; }
.feature-card { position:relative; background: linear-gradient(120deg, #01CBE7,#0F182C); border:1px solid rgba(255,255,255,0.08); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border-radius:30px; padding:2.4rem 2rem 2.9rem; display:flex; flex-direction:column; gap:1.1rem; box-shadow: var(--shadow-pop); overflow:hidden; transition: transform .55s var(--ease-standard), box-shadow .55s ease, border-color .55s ease; }
.feature-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 28% 22%, #01CBE7, transparent 60%); opacity:.25; pointer-events:none; }
.feature-card::after { content:""; position:absolute; inset:0; background: linear-gradient(140deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 42%); mix-blend-mode:overlay; pointer-events:none; }
.feature-card h3 { font-size:1.35rem; line-height:1.25; display:flex; align-items:center; gap:.65rem; font-weight:700; background: var(--grad-head-light); -webkit-background-clip:text; background-clip:text; color:transparent; }
.feature-card .feat-num { width:40px; height:40px; display:none; align-items:center; justify-content:center; border-radius:50%; background: radial-gradient(circle at 30% 30%, var(--accent-color), #0F182C); color:#023d32; font-size:.95rem; font-weight:600; box-shadow:0 4px 12px -3px #01CBE7; }
.feature-card .feat-points { list-style:none; display:flex; flex-direction:column; gap:.65rem; font-size:.95rem; color:#daf3f0; }
.feature-card .feat-points li { position:relative; padding-left:1.2rem; line-height:1.45; }
.feature-card .feat-points li::before { content:""; position:absolute; left:0; top:.6em; width:7px; height:7px; border-radius:2px; background: var(--grad-accent-col); box-shadow:0 0 0 3px #01CBE7; }
.feature-card:hover { transform:translateY(-8px); box-shadow:0 26px 60px -20px rgba(0,0,0,0.7), 0 10px 26px -12px rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.15); }
@media (max-width:680px){ .features { padding:90px 1.2rem 110px; } .feature-card { padding:2rem 1.4rem 2.4rem; } .feature-grid { gap:1.8rem; } }
@media (max-width:480px){ .feature-card h3 { font-size:1.2rem; } .feature-card .feat-num { width:34px; height:34px; font-size:.8rem; } }

/* ========== 5.6 VS TABLE SECTION ========== */
.vs-section { background: var(--white); padding:110px clamp(1.25rem,5vw,3rem) 60px; position:relative; }
.vs-inner { max-width:1220px; margin:0 auto; }
.vs-head { text-align:center; margin:0 auto 3.2rem; max-width:860px; }
.vs-head h2 { font-size: clamp(2.2rem,5vw,3.1rem); line-height:1.12; font-weight:700; color: var(--text-dark); }
.vs-sub { font-size: clamp(1rem,1.7vw,1.2rem); color: var(--text-light); margin-top:1.1rem; }
.vs-table-wrap { overflow-x:auto; overflow-y:hidden; -webkit-overflow-scrolling:touch; background:#ffffff; border:1px solid var(--gray-200); border-radius:20px; box-shadow:0 14px 40px -16px rgba(0,0,0,0.08), 0 4px 18px -10px rgba(0,0,0,0.05); }
.vs-table-wrap:focus-visible { outline:3px solid var(--accent-color); outline-offset:3px; }
.vs-table { width:100%; border-collapse:collapse; font-size:.95rem; line-height:1.4; }
/* .vs-table thead th { background: linear-gradient(90deg,#0f2f2f,#1a3a3a); color:#f2fffd; font-weight:600; text-align:left; padding:20px 24px; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; position:sticky; top:0; z-index:2; } */
.vs-table tbody th { background:#f3f6f7; font-weight:600; font-size:.83rem; letter-spacing:.05em; text-transform:uppercase; color:#274646; width:180px; }
.vs-table tbody th, .vs-table td { padding:20px 24px; vertical-align:top; border-bottom:1px solid var(--gray-200); }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom:none; }
.vs-table td { color: var(--text-dark); }
.vs-table .brand-col { background: linear-gradient(160deg,#01CBE7 0%,#def5f8 100%); color:#073e33; font-weight:600; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); position:relative; }
.vs-table td.brand-cell { background: linear-gradient(180deg,#f1fffc 0%,#e4fbf6 100%); position:relative; }
.vs-table tbody tr { opacity:0; transform:translateY(14px); }
.vs-section.vs-animate .vs-table tbody tr { opacity:1; transform:translateY(0); transition: opacity .65s var(--ease-standard), transform .65s var(--ease-standard); }
.vs-section.vs-animate .vs-table tbody tr:nth-child(1){ transition-delay:.05s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(2){ transition-delay:.12s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(3){ transition-delay:.19s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(4){ transition-delay:.26s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(5){ transition-delay:.33s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(6){ transition-delay:.40s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(7){ transition-delay:.47s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(8){ transition-delay:.54s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(9){ transition-delay:.61s; }
.vs-section.vs-animate .vs-table td.brand-cell { animation: brandPulse 2.2s ease .55s 1; }
.vs-table tbody tr:nth-child(odd) td { background:#fbfcfd; }
.vs-table tbody tr:nth-child(even) td { background:#ffffff; }
@media (prefers-reduced-motion: reduce){ .vs-table tbody tr { opacity:1 !important; transform:none !important; transition:none !important; } .vs-section.vs-animate .vs-table td.brand-cell { animation:none !important; } }
@media (max-width:880px){ .vs-table { font-size:.9rem; } .vs-table tbody th { width:160px; } }
@media (max-width:820px) and (min-width:641px){ .vs-table thead th, .vs-table tbody th, .vs-table td { padding:18px 18px; } .vs-table { font-size:.9rem; } }
@media (max-width:640px){ .vs-section { padding:80px 1rem 100px; } .vs-table thead th { font-size:.65rem; padding:16px 16px; } .vs-table tbody th, .vs-table td { padding:16px 16px; } }
@media (max-width:500px){
  .vs-table thead { display:none; }
  .vs-table, .vs-table tbody, .vs-table tr, .vs-table td, .vs-table th { display:block; width:100%; }
  .vs-table tbody th { position:relative; width:auto; background:#0f2f2f; color:#d8fffa; border-bottom:0; border-radius:14px 14px 0 0; margin-top:30px; padding:14px 18px 12px; font-size:.7rem; letter-spacing:.09em; }
  .vs-table tr { border:none; border-radius:14px; overflow:visible; background:transparent; padding:0 2px; }
  .vs-table tbody tr:first-child th { margin-top:0; }
  .vs-table td { position:relative; padding:14px 18px; font-size:.9rem; background:#ffffff; border-radius:0 0 14px 14px; box-shadow: var(--shadow-soft); border:1px solid var(--gray-200); }
  .vs-table td:nth-of-type(1)::before, .vs-table td:nth-of-type(2)::before { content: attr(data-col); display:block; font-size:.6rem; letter-spacing:.08em; font-weight:600; text-transform:uppercase; color:#4a7c7c; margin-bottom:6px; }
  .vs-table td.brand-cell { background:#f3fbf9; border:1px solid #cdeee6; }
  .vs-table td + td { margin-top:16px; border:none; border-radius:14px; }
  .vs-table tbody tr { opacity:1 !important; transform:none !important; }
}

/* ========== 5.7 QUOTE SECTION ========== */
.quote-section { background: linear-gradient(180deg,#ffffff 0%, var(--light-gray) 100%); padding:46px clamp(1.4rem,4vw,2.4rem) 40px; position:relative; overflow:hidden; }
.quote-inner { max-width:1180px; margin:0 auto; }
.quote-box { position:relative; margin:0; background: linear-gradient(150deg,#0F182C,#01CBE7 70%,#0F182C); color:#e7fdf9; border-radius:22px; padding: clamp(1.4rem,3.1vw,2rem) clamp(1.3rem,3vw,2.2rem) clamp(1.55rem,3.1vw,2.1rem); box-shadow: 0 14px 34px -18px rgba(0,0,0,0.28), 0 6px 18px -10px rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.10); backdrop-filter: blur(10px) saturate(130%); -webkit-backdrop-filter: blur(10px) saturate(130%); }
.quote-box::before { content:"\201C"; position:absolute; top:-18px; left:14px; font-size:4rem; line-height:1; font-family:Georgia, serif; background: linear-gradient(90deg,#00d4aa,#36ffd6); -webkit-background-clip:text; background-clip:text; color:transparent; opacity:.22; filter: drop-shadow(0 4px 10px rgba(0,212,170,0.35)); }
.quote-text { font-size: clamp(1.15rem,2.4vw,1.55rem); line-height:1.35; font-weight:600; letter-spacing:-0.3px; background: linear-gradient(90deg,#ffffff,#bffff5); -webkit-background-clip:text; background-clip:text; color:transparent; margin:0 0 1.05rem; position:relative; }
.quote-attrib { font-size:.72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#9edfd4; position:relative; padding-left:34px; }
.quote-attrib::before { content:""; position:absolute; left:0; top:50%; width:26px; height:2px; background: var(--grad-accent-col); transform:translateY(-50%); border-radius:2px; box-shadow:0 0 0 3px rgba(0,212,170,0.12); }
@media (max-width:680px){ .quote-section { padding:42px 1.1rem 36px; } .quote-box { border-radius:20px; } .quote-text { font-size:clamp(1.1rem,4.6vw,1.45rem); } .quote-attrib { font-size:.65rem; } }

/* ========== 5.8 FREE TRIAL / RISK-FREE SECTION ========== */
.trial-section { position:relative; background: var(--white); padding:120px clamp(1.4rem,5vw,3rem) 60px; overflow:hidden; }
.trial-inner { max-width:1180px; margin:0 auto; display:grid; gap:clamp(2.4rem,4vw,5rem); grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); align-items:center; }
.trial-content { position:relative; z-index:2; }
.trial-head { max-width:620px; }
.trial-head h2 { font-size: clamp(2.1rem,4.7vw,3rem); line-height:1.15; font-weight:700; background: var(--grad-head-teal); -webkit-background-clip:text; background-clip:text; color:transparent; margin-top:.75rem; }
.trial-sub { font-size: clamp(1.05rem,1.55vw,1.22rem); color: var(--text-light); margin:1.15rem 0 1.9rem; line-height:1.55; max-width:560px; }
.trial-highlights { list-style:none; margin:0 0 2.2rem; padding:0; display:flex; flex-direction:column; gap:.85rem; font-size:.98rem; }
.trial-highlights li { position:relative; padding-left:1.5rem; line-height:1.45; color: var(--text-dark); font-weight:500; }
.trial-highlights li::before { content:""; position:absolute; left:0; top:.55em; width:10px; height:10px; border-radius:3px; background: var(--grad-accent-col); box-shadow:0 0 0 4px rgba(0, 187, 212, 0.18); }
.trial-cta-wrap { display:flex; flex-direction:column; gap:.85rem; align-items:flex-start; }
/* .trial-cta { box-shadow: 0 6px 18px -4px rgba(0, 67, 212, 0.4); } */
/* .trial-cta:hover { box-shadow: 0 10px 26px -8px rgba(0, 85, 212, 0.5); } */
.no-cc { font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; font-weight:600; color: var(--text-light); background:#eef9f7; padding:6px 14px 7px; border-radius: var(--radius-pill); display:inline-block; }
.trial-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.trial-illux { width:100%; max-width:360px; height:auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.12)) drop-shadow(0 6px 20px rgba(0,0,0,0.08)); }
.trial-badge { position:absolute; top:-14px; right:-10px; background: var(--grad-accent-radial); color:#0F182C; font-size:.75rem; letter-spacing:.11em; text-transform:uppercase; font-weight:700; padding:10px 16px 11px; border-radius: var(--radius-pill); box-shadow:0 8px 22px -10px rgba(0,0,0,0.35), 0 4px 12px -6px rgba(0,212,170,0.55); animation: badgePulse 6s ease-in-out infinite; }
@media (max-width:860px){ .trial-section { padding:100px 1.25rem 110px; } .trial-inner { grid-template-columns:1fr; } .trial-visual { order:-1; margin:0 auto 1.6rem; } .trial-illux { max-width:300px; } }
@media (max-width:520px){ .trial-head h2 { font-size:clamp(1.9rem,7vw,2.25rem); } .trial-sub { font-size:1rem; } .trial-highlights { font-size:.92rem; } .no-cc { font-size:.68rem; } .trial-illux { max-width:260px; } }

/* ========== 5.9 OBJECTIONS (Mini FAQ + Guarantee) ========== */
.objections { background: linear-gradient(180deg,#ffffff 0%, var(--light-gray) 100%); padding:110px clamp(1.4rem,5vw,3rem) 130px; position:relative; overflow:hidden; }
.obj-inner { max-width:1180px; margin:0 auto; display:flex; flex-direction:column; gap:3.6rem; }
.obj-head { text-align:center; max-width:820px; margin:0 auto; }
.obj-head h2 { font-size: clamp(2.15rem,4.8vw,3rem); line-height:1.08; font-weight:700; background: var(--grad-head-teal); -webkit-background-clip:text; background-clip:text; color:transparent; margin-top:.6rem; }
.obj-sub { font-size: clamp(1rem,1.6vw,1.2rem); color: var(--text-light); line-height:1.55; }
.obj-grid { display:grid; gap: clamp(2.2rem,3.4vw,3.4rem); grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); align-items:start; }
/* Guarantee card */
.guarantee { position:relative; background: linear-gradient(155deg,#0F182C,#01CBE7 ); color:#e8fefb; border-radius:30px; padding: clamp(2rem,3.4vw,2.6rem) clamp(1.8rem,3.2vw,2.4rem) clamp(2.4rem,3.6vw,3rem); box-shadow: 0 24px 48px -18px rgba(0,0,0,0.28), 0 10px 26px -12px rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%); overflow:hidden; isolation:isolate; border: none; }
.guarantee::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 24% 20%, rgba(1, 191, 231,.28), transparent 65%); mix-blend-mode:overlay; pointer-events:none; }
.guarantee h3 { font-size: clamp(1.35rem,2.1vw,1.8rem); line-height:1.2; margin:0 0 1rem; font-weight:600; background: linear-gradient(90deg,#ffffff,#bffff6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.guarantee p { font-size: clamp(1rem,1.3vw,1.1rem); line-height:1.55; margin:0 0 1.4rem; color:#d6f7f2; }
.g-badge { position:static; display:inline-block; background: var(--accent-color); color:#023d32; font-size:.6rem; letter-spacing:.15em; font-weight:700; text-transform:uppercase; padding:6px 14px 7px; border-radius: var(--radius-pill); border:1px solid rgba(0,0,0,0.12); margin: -4px 0 1.1rem; }
.g-points { list-style:none; margin:0 0 1.8rem; padding:0; display:flex; flex-direction:column; gap:.65rem; font-size:.92rem; }
.g-points li { position:relative; padding-left:1.15rem; line-height:1.4; }
.g-points li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:2px; background: var(--grad-accent-col); box-shadow:0 0 0 3px rgba(0,212,170,0.22); }
.g-cta { margin-top:.2rem; display:inline-block; }
/* FAQ */
.obj-faq { display:flex; flex-direction:column; gap:.9rem; }
.obj-faq details { background:#ffffff; border:1px solid #e2e7ea; border-radius:18px; padding:.95rem 1.15rem; position:relative; transition: border-color .35s ease, box-shadow .35s ease, background .35s ease; }
.obj-faq details:hover { border-color: var(--accent-color); }
.obj-faq summary { cursor:pointer; font-weight:600; list-style:none; font-size:.98rem; display:flex; align-items:center; gap:.6rem; position:relative; }
.obj-faq summary::-webkit-details-marker { display:none; }
.obj-faq details[open] { background:#f4fdfb; border-color: var(--accent-color); box-shadow:0 6px 20px -10px rgba(0,212,170,0.35); }
.obj-faq details p { margin:.8rem 0 .2rem; font-size:.9rem; line-height:1.5; color:#2f4745; }
.obj-faq details summary::after { content:"+"; margin-left:auto; font-weight:600; color: var(--accent-color); transition: transform .35s ease; }
.obj-faq details[open] summary::after { content:"−"; }
.obj-faq .answer { overflow:hidden; max-height:0; opacity:0; transform:translateY(-4px); transition: max-height .5s var(--ease-soft), opacity .45s ease, transform .5s var(--ease-soft); }
.obj-faq details[open] .answer { max-height:260px; opacity:1; transform:translateY(0); }
@media (max-width:860px){ .objections { padding:90px 1.25rem 110px; } .obj-grid { grid-template-columns:1fr; } .guarantee { padding:2.2rem 1.8rem 2.6rem; } }
@media (max-width:520px){ .obj-head h2 { font-size:clamp(1.9rem,7.2vw,2.3rem); } .g-badge { top:-12px; left:14px; } }


/* -------------------------------------------------------------
    6. PREFERENCES & GLOBAL REDUCED-MOTION HANDLING
    ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  .hero-feature-float { animation:none; opacity:.4; position:static; display:inline-block; margin:2px 6px; }
  .hero-features { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; padding:12px 10px; }
  .why-crms .fail-line, .why-crms .solution-card, .vs-table tbody tr, .compare-handle, .compare-after, .feature-card { transition:none !important; }
  .fail-line, .solution-card { opacity:1 !important; transform:none !important; }
  .fail-line::after { width:100% !important; animation:none !important; }
  .vs-section.vs-animate .vs-table td.brand-cell { animation:none !important; }
  .quote-box { animation:none !important; }
  .obj-faq .answer { transition:none !important; max-height:none !important; opacity:1 !important; transform:none !important; }
}

/* -------------------------------------------------------------
    END OF FILE
    ------------------------------------------------------------- */

/* =========================
   OBJECTION CRUSHER (Mini FAQ + Guarantee)
   ========================= */
.objections { background: linear-gradient(180deg,#ffffff 0%, var(--light-gray) 100%); padding: 110px clamp(1.4rem,5vw,3rem) 130px; position:relative; overflow:hidden; }
.obj-inner { max-width: 1180px; margin:0 auto; display:flex; flex-direction:column; gap:3.6rem; }
.obj-head { text-align:center; max-width:820px; margin:0 auto; }
.obj-head h2 { font-size: clamp(2.15rem,4.8vw,3rem); line-height:1.08; font-weight:700; background: linear-gradient(100deg,var(--secondary-color),var(--primary-color)); -webkit-background-clip:text; background-clip:text; color:transparent; margin-top:.6rem; }
.obj-sub { font-size: clamp(1rem,1.6vw,1.2rem); color: var(--text-light); line-height:1.55; }

.obj-grid { display:grid; gap: clamp(2.2rem,3.4vw,3.4rem); grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); align-items:start; }

/* Guarantee card */
/* .guarantee { position:relative; background: linear-gradient(155deg,#103131,#1a3a3a 60%,#214b4b); color:#e8fefb; border-radius: 30px; padding: clamp(2rem,3.4vw,2.6rem) clamp(1.8rem,3.2vw,2.4rem) clamp(2.4rem,3.6vw,3rem); box-shadow: 0 24px 48px -18px rgba(0,0,0,0.28), 0 10px 26px -12px rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%); overflow:hidden; isolation:isolate; }
.guarantee::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 24% 20%, rgba(0,212,170,0.28), transparent 65%); mix-blend-mode: overlay; pointer-events:none; }
.guarantee h3 { font-size: clamp(1.35rem,2.1vw,1.8rem); line-height:1.2; margin:0 0 1rem; font-weight:600; background: linear-gradient(90deg,#ffffff,#bffff6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.guarantee p { font-size: clamp(1rem,1.3vw,1.1rem); line-height:1.55; margin:0 0 1.4rem; color:#d6f7f2; } */
.g-badge { position: static; display:inline-block; background: var(--accent-color); color:#023d32; font-size:.6rem; letter-spacing:.15em; font-weight:700; text-transform:uppercase; padding:6px 14px 7px; border-radius:40px; box-shadow:none; border:1px solid rgba(0,0,0,0.12); margin: -4px 0 1.1rem 0; }
.g-points { list-style:none; padding:0; margin:0 0 1.8rem; display:flex; flex-direction:column; gap:.65rem; font-size:.92rem; }
.g-points li { position:relative; padding-left:1.15rem; line-height:1.4; }
.g-points li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:2px; background: linear-gradient(135deg,var(--accent-color),#36ffd6); box-shadow:0 0 0 3px rgba(0,212,170,0.22); }
.g-cta { margin-top:.2rem; display:inline-block; }

/* FAQ items */
.obj-faq { display:flex; flex-direction:column; gap:.9rem; }
.obj-faq details { background:#ffffff; border:1px solid #e2e7ea; border-radius:18px; padding: .95rem 1.15rem .95rem 1.15rem; position:relative; transition: border-color .35s ease, box-shadow .35s ease, background .35s ease; }
.obj-faq details:hover { border-color: var(--accent-color); }
.obj-faq summary { cursor:pointer; font-weight:600; list-style:none; font-size:.98rem; display:flex; align-items:center; gap:.6rem; position:relative; }
.obj-faq summary::-webkit-details-marker { display:none; }
.obj-faq details[open] { background: #f4fdfb; border-color: var(--accent-color); box-shadow: 0 6px 20px -10px rgba(0,212,170,0.35); }
.obj-faq details p { margin:.8rem 0 .2rem 0; font-size:.9rem; line-height:1.5; color:#2f4745; }
.obj-faq details summary::after { content:"+"; margin-left:auto; font-weight:600; color: var(--accent-color); transition: transform .35s ease; }
.obj-faq details[open] summary::after { content:"−"; }
.obj-faq .answer { overflow:hidden; max-height:0; opacity:0; transform: translateY(-4px); transition: max-height .5s cubic-bezier(.65,.05,.36,1), opacity .45s ease, transform .5s cubic-bezier(.65,.05,.36,1); }
.obj-faq details[open] .answer { max-height: 260px; opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .obj-faq .answer { transition:none !important; max-height:none !important; opacity:1 !important; transform:none !important; } }

@media (max-width: 860px) {
    .objections { padding: 90px 1.25rem 110px; }
    .obj-grid { grid-template-columns: 1fr; }
    .guarantee { padding: 2.2rem 1.8rem 2.6rem; }
}
@media (max-width: 520px) {
    .obj-head h2 { font-size: clamp(1.9rem,7.2vw,2.3rem); }
    .g-badge { top:-12px; left:14px; }
}
@media (prefers-reduced-motion: reduce) {
    .guarantee, .obj-faq details { transition:none !important; }
}

/* =========================
         QUOTE SECTION
     ========================= */
/* Compact variant */
.quote-section { background: linear-gradient(180deg,#ffffff 0%, var(--light-gray) 100%); padding: 46px clamp(1.4rem,4vw,2.4rem) 40px; position:relative; overflow:hidden; }
.quote-inner { max-width: 1180px; margin:0 auto; }
/* .quote-box { position:relative; margin:0; background: linear-gradient(150deg,#113535,#1a3a3a 70%,#214b4b); color:#e7fdf9; border-radius: 22px; padding: clamp(1.4rem,3.1vw,2rem) clamp(1.3rem,3vw,2.2rem) clamp(1.55rem,3.1vw,2.1rem); box-shadow: 0 14px 34px -18px rgba(0,0,0,0.28), 0 6px 18px -10px rgba(0,0,0,0.22); border:1px solid rgba(255,255,255,0.10); backdrop-filter: blur(10px) saturate(130%); -webkit-backdrop-filter: blur(10px) saturate(130%); } */
.quote-box::before { content:"\201C"; position:absolute; top:-18px; left:14px; font-size: 4rem; line-height:1; font-family: Georgia, serif; background: linear-gradient(90deg,#00d4aa,#36ffd6); -webkit-background-clip:text; background-clip:text; color:transparent; opacity:.22; filter: drop-shadow(0 4px 10px rgba(0,212,170,0.35)); }
.quote-text { font-size: clamp(1.15rem,2.4vw,1.55rem); line-height:1.35; font-weight:600; letter-spacing:-0.3px; background: linear-gradient(90deg,#ffffff,#bffff5); -webkit-background-clip:text; background-clip:text; color:transparent; margin:0 0 1.05rem; position:relative; }
.quote-attrib { font-size: .72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color: #9edfd4; position:relative; padding-left:34px; }
.quote-attrib::before { content:""; position:absolute; left:0; top:50%; width:26px; height:2px; background: linear-gradient(90deg,var(--accent-color),#36ffd6); transform:translateY(-50%); border-radius:2px; box-shadow:0 0 0 3px rgba(0,212,170,0.12); }
@media (max-width:680px){
    .quote-section { padding: 42px 1.1rem 36px; }
    .quote-box { border-radius: 20px; }
    .quote-text { font-size: clamp(1.1rem,4.6vw,1.45rem); }
    .quote-attrib { font-size:.65rem; }
}
@media (prefers-reduced-motion: reduce){
    .quote-box { animation:none !important; }
}

/* =========================
FREE TRIAL / RISK-FREE SECTION
========================= */
.trial-section { position:relative; background: var(--white); padding: 120px clamp(1.4rem,5vw,3rem) 60px; overflow:hidden; }
.trial-inner { max-width: 1180px; margin:0 auto; display:grid; gap: clamp(2.4rem,4vw,5rem); grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); align-items: center; }
.trial-content { position:relative; z-index:2; }
.trial-head { max-width: 620px; }
.trial-head h2 { font-size: clamp(2.1rem,4.7vw,3rem); line-height:1.15; font-weight:700; background: linear-gradient(100deg,var(--secondary-color),var(--primary-color)); -webkit-background-clip:text; background-clip:text; color:transparent; margin-top:.75rem; }
.trial-sub { font-size: clamp(1.05rem,1.55vw,1.22rem); color: var(--text-light); margin: 1.15rem 0 1.9rem; line-height:1.55; max-width: 560px; }
.trial-highlights { list-style:none; padding:0; margin:0 0 2.2rem; display:flex; flex-direction:column; gap:.85rem; font-size:.98rem; }
.trial-highlights li { position:relative; padding-left:1.5rem; line-height:1.45; color: var(--text-dark); font-weight:500; }
/* .trial-highlights li::before { content:""; position:absolute; left:0; top:.55em; width:10px; height:10px; border-radius:3px; background: linear-gradient(135deg,var(--accent-color),#36ffd6); box-shadow:0 0 0 4px rgba(0,212,170,0.18); } */
.trial-cta-wrap { display:flex; flex-direction:column; gap:.85rem; align-items:flex-start; }
.trial-cta { box-shadow: 0 6px 18px -4px rgba(30, 204, 248, 0.4); }
.trial-cta:hover { box-shadow: 0 10px 26px -8px rgba(30, 204, 248,0.5); }
.no-cc { font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; font-weight:600; color: var(--text-light); background: #eef9f7; padding:6px 14px 7px; border-radius: 40px; display:inline-block; }

.trial-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.trial-illux { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.12)) drop-shadow(0 6px 20px rgba(0,0,0,0.08)); }
/* .trial-badge { position:absolute; top:-14px; right:-10px; background: radial-gradient(circle at 30% 30%, var(--accent-color), #00b894 75%); color:#023b31; font-size:.75rem; letter-spacing:.11em; text-transform:uppercase; font-weight:700; padding:10px 16px 11px; border-radius: 40px; box-shadow:0 8px 22px -10px rgba(0,0,0,0.35), 0 4px 12px -6px rgba(0,212,170,0.55); animation: badgePulse 6s ease-in-out infinite; } */

@keyframes badgePulse { 0%, 55%, 100% { transform: scale(1); filter: brightness(1); } 6% { transform: scale(1.08); filter: brightness(1.15); } 12% { transform: scale(1); } }

/* Light radial ambient accent circles */
/* Removed decorative radial gradient overlays for a flat background */
/* .trial-section::before, .trial-section::after { } */

@media (max-width: 860px) {
    .trial-section { padding: 100px 1.25rem 110px; }
    .trial-inner { grid-template-columns: 1fr; }
    .trial-visual { order:-1; margin: 0 auto 1.6rem; }
    .trial-illux { max-width: 300px; }
    .trial-cta-wrap { align-items: flex-start; }
}
@media (max-width: 520px) {
    .trial-head h2 { font-size: clamp(1.9rem,7vw,2.25rem); }
    .trial-sub { font-size: 1rem; }
    .trial-highlights { font-size:.92rem; }
    .no-cc { font-size:.68rem; }
    .trial-illux { max-width: 260px; }
}


/* =========================
Why Most CRMs Fail Section
========================= */
.why-crms { position: relative; background: var(--white); padding: 110px clamp(1.4rem,5vw,3.2rem) 120px; overflow: hidden; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-head { text-align: center; margin: 0 auto 3.2rem; max-width: 760px; }
.why-head h2 { font-size: clamp(2.15rem,4.8vw,3.1rem); line-height:1.1; font-weight:700; background: linear-gradient(100deg,var(--secondary-color),var(--primary-color)); -webkit-background-clip:text; background-clip:text; color:transparent; position:relative; }

/* Two-column minimal layout that collapses on mobile */
.fail-layout { display: grid; gap: clamp(2.4rem,4vw,4rem); grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); align-items: start; position: relative; }

.fail-list { list-style:none; display:flex; flex-direction:column; gap:1.4rem; padding:0; margin:0; position:relative; }
.fail-line { font-size: clamp(1.4rem,2.3vw,2.05rem); font-weight:600; line-height:1.15; letter-spacing: -0.5px; position:relative; color: var(--text-dark); opacity:0; transform: translateY(16px); transition: color .45s ease, transform .55s cubic-bezier(.22,.9,.29,1); }
.fail-line::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: linear-gradient(90deg,var(--accent-color),#36ffd6); border-radius:2px; }
/* Interactive hover / focus effect (after initial entrance) */
.fail-line:hover, .fail-line:focus-visible { color: var(--accent-color); transform: translateY(0) translateX(8px); }
.fail-line:hover::after, .fail-line:focus-visible::after { width:100%; background: linear-gradient(90deg,var(--accent-color),#36ffd6); box-shadow:0 2px 10px -2px rgba(0,212,170,0.5); transition: width .5s cubic-bezier(.65,.05,.36,1), box-shadow .5s ease; }

/* Solution Card */
.sol-tag { display:inline-block; font-size: .62rem; letter-spacing:.14em; text-transform:uppercase; background: var(--accent-color); color:#023d32; padding:5px 12px 6px; border-radius:40px; margin-bottom: 1.2rem; font-weight:600; position:relative; box-shadow:0 0 0 1px rgba(0,0,0,0.15), 0 4px 10px -2px rgba(0,212,170,0.45); }

/* Decorative ambient lines */
.why-crms::before, .why-crms::after { content:""; position:absolute; width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, rgba(0,212,170,0.11), transparent 70%); top: -140px; right: -120px; filter: blur(2px); opacity: .65; pointer-events:none; }
.why-crms::after { top:auto; bottom: -160px; left: -160px; right:auto; background: radial-gradient(circle at 70% 70%, rgba(0,212,170,0.12), transparent 70%); opacity:.55; }

/* Activated animation state */
.why-crms.animate-in .fail-line { opacity:1; transform: translateY(0); transition: opacity .7s cubic-bezier(.22,.9,.29,1), transform .7s cubic-bezier(.22,.9,.29,1), color .45s ease; }
.why-crms.animate-in .fail-line:nth-child(1){ transition-delay:.05s; }
.why-crms.animate-in .fail-line:nth-child(2){ transition-delay:.18s; }
.why-crms.animate-in .fail-line:nth-child(3){ transition-delay:.31s; }
.why-crms.animate-in .fail-line:nth-child(1)::after { animation: underlineGrow .9s cubic-bezier(.65,.05,.36,1) .28s forwards; }
.why-crms.animate-in .fail-line:nth-child(2)::after { animation: underlineGrow .9s cubic-bezier(.65,.05,.36,1) .41s forwards; }
.why-crms.animate-in .fail-line:nth-child(3)::after { animation: underlineGrow .9s cubic-bezier(.65,.05,.36,1) .54s forwards; }
.why-crms.animate-in .solution-card { opacity:1; transform: translateY(0); transition: opacity .85s cubic-bezier(.22,.9,.29,1) .55s, transform .85s cubic-bezier(.22,.9,.29,1) .55s; }

@keyframes underlineGrow { 0% { width:0; } 45% { width:72%; } 100% { width:100%; } }

@media (max-width: 760px) {
    .why-crms { padding: 90px 1.25rem 100px; }
    .fail-line { font-size: clamp(1.35rem,5.5vw,1.85rem); }
    .solution-card { padding: 2rem 1.6rem 2.4rem; }
}
@media (max-width: 520px) {
    .fail-layout { gap: 2.2rem; }
    .solution-card p { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
    .fail-line, .solution-card { opacity:1 !important; transform:none !important; transition:none !important; }
    .fail-line::after { width:100% !important; animation:none !important; }
}

/* =========================
wynleadss.in vs Other CRMs
========================= */
.vs-section {
    background: var(--white);
    padding: 110px clamp(1.25rem, 5vw, 3rem) 60px;
    position: relative;
}
.vs-inner { max-width: 1220px; margin: 0 auto; }
.vs-head { text-align: center; margin: 0 auto 3.2rem; max-width: 860px; }
.vs-head h2 { font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1.12; font-weight: 700; color: var(--text-dark); }
.vs-head .tag-alt { display: inline-block; background: var(--secondary-color); color: #fff; padding: 6px 14px 7px; border-radius: 40px; font-size: .68em; letter-spacing: .1em; text-transform: uppercase; position: relative; top: -6px; font-weight:600; }
.vs-sub { font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--text-light); margin-top: 1.1rem; }

.vs-table-wrap { /* Ensure clean clipping of header without extra inner corner rounding */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(#ffffff,#ffffff);
    border: 1px solid #e5e8ec;
    border-radius: 20px;
    box-shadow: 0 14px 40px -16px rgba(0,0,0,0.08), 0 4px 18px -10px rgba(0,0,0,0.05);
}
.vs-table-wrap:focus-visible { outline: 3px solid var(--accent-color); outline-offset: 3px; }
.vs-table { width: 100%; border-collapse: collapse; font-size: .95rem; line-height: 1.4; }
.vs-table thead th { background: linear-gradient(90deg,#027e8f,#0F182C); color: #f2fffd; font-weight: 600; text-align: left; padding: 20px 24px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; position: sticky; top: 0; z-index: 2; }
/* Removed per-cell corner radii; container handles rounding to prevent odd sticky header reveal */
.vs-table tbody th { background: #f3f6f7; font-weight: 600; font-size: .83rem; letter-spacing: .05em; text-transform: uppercase; color: #274646; width: 180px; }
.vs-table tbody th, .vs-table td { padding: 20px 24px; vertical-align: top; border-bottom: 1px solid #e5e8ec; }
.vs-table tbody tr:last-child th, .vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table td { color: var(--text-dark); }
/* .vs-table .brand-col { background: linear-gradient(160deg,#00d4aa 0%,#00b894 100%); color:#073e33; font-weight:600; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); } */
.vs-table .brand-col::after { content:""; position:absolute; inset:0; pointer-events:none; }
.vs-table thead th.brand-col { position: relative; }
.vs-table td.brand-cell { background: linear-gradient(180deg,#f1fffc 0%,#e4fbf6 100%); position: relative; }
/* Removed decorative star (was misaligned on some breakpoints) for cleaner, distraction-free scan */
/* .vs-table td.brand-cell::before { } */

/* Entrance animation (staggered) for vs rows */
.vs-table tbody tr { opacity: 0; transform: translateY(14px); }
.vs-section.vs-animate .vs-table tbody tr { opacity: 1; transform: translateY(0); }
/* Stagger using nth-child delays */
.vs-section.vs-animate .vs-table tbody tr { transition: opacity .65s cubic-bezier(.22,.9,.29,1), transform .65s cubic-bezier(.22,.9,.29,1); }
.vs-section.vs-animate .vs-table tbody tr:nth-child(1) { transition-delay: .05s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(2) { transition-delay: .12s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(3) { transition-delay: .19s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(4) { transition-delay: .26s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(5) { transition-delay: .33s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(6) { transition-delay: .40s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(7) { transition-delay: .47s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(8) { transition-delay: .54s; }
.vs-section.vs-animate .vs-table tbody tr:nth-child(9) { transition-delay: .61s; }

/* Subtle one-off pulse to draw eye to differentiated column */
.vs-section.vs-animate .vs-table td.brand-cell { animation: brandPulse 2.2s ease .55s 1; }
@keyframes brandPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,212,170,0); }
    18% { box-shadow: 0 0 0 4px rgba(0,212,170,0.35); }
    42% { box-shadow: 0 0 0 14px rgba(0,212,170,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,212,170,0); }
}

@media (prefers-reduced-motion: reduce) {
    .vs-table tbody tr { opacity: 1 !important; transform: none !important; transition: none !important; }
    .vs-section.vs-animate .vs-table td.brand-cell { animation: none !important; }
}

/* Row striping for readability */
.vs-table tbody tr:nth-child(odd) td { background: #fbfcfd; }
.vs-table tbody tr:nth-child(even) td { background: #ffffff; }

/* Responsive adjustments */
@media (max-width: 880px) {
    .vs-table { font-size: .9rem; }
    .vs-table tbody th { width: 160px; }
}
/* Mid-tablet refinements (landscape tablets / small laptops) */
@media (max-width: 820px) and (min-width: 641px) {
    .vs-table thead th, .vs-table tbody th, .vs-table td { padding: 18px 18px; }
    .vs-table { font-size: .9rem; }
}
@media (max-width: 640px) {
    .vs-section { padding: 80px 1rem 100px; }
    .vs-table thead th { font-size: .65rem; padding: 16px 16px; }
    .vs-table tbody th, .vs-table td { padding: 16px 16px; }
}
@media (max-width: 500px) {
    /* Convert table into stacked cards for narrow screens */
    .vs-table thead { display: none; }
    .vs-table, .vs-table tbody, .vs-table tr, .vs-table td, .vs-table th { display: block; width: 100%; }
    .vs-table tbody th { position: relative; width: auto; background: #0f2f2f; color:#d8fffa; border-bottom: 0; border-radius: 14px 14px 0 0; margin-top: 30px; padding: 14px 18px 12px; font-size: .7rem; letter-spacing:.09em; }
    .vs-table tr { border: none; border-radius: 14px; overflow: visible; background: transparent; padding: 0 2px; }
    .vs-table tbody tr:first-child th { margin-top: 0; }
    .vs-table td { position: relative; padding: 14px 18px 14px; font-size: .9rem; background:#ffffff; border-radius: 0 0 14px 14px; box-shadow: 0 4px 12px -6px rgba(0,0,0,0.08); border:1px solid #e5e8ec; }
    .vs-table td:nth-of-type(1)::before, .vs-table td:nth-of-type(2)::before { content: attr(data-col); display: block; font-size: .6rem; letter-spacing: .08em; font-weight:600; text-transform: uppercase; color: #4a7c7c; margin-bottom: 6px; }
    .vs-table .brand-col { background: none; color: var(--text-dark); box-shadow:none; }
    .vs-table td.brand-cell { background:#f3fbf9; border:1px solid #cdeee6; border-radius: 0 0 14px 14px; }
    .vs-table td.brand-cell::before { color:#009b7b; }
    /* Empty space between brand and competitor datapoints */
    .vs-table td + td { margin-top: 16px; border: none; }
    .vs-table td + td { border-radius: 14px; }
    /* Ensure brand cell (first td) has its own radius separate from header */
    .vs-table td.brand-cell { border-top-left-radius: 0; border-top-right-radius: 0; }
    /* Competitor cell styling */
    .vs-table td + td:not(.brand-cell) { background:#ffffff; border:1px solid #e5e8ec; box-shadow:0 4px 12px -6px rgba(0,0,0,0.06); }
    /* Disable fade/slide animation on mobile stacked layout to avoid blank first paint */
    .vs-table tbody tr { opacity: 1 !important; transform: none !important; }
}


/* =========================
   FEATURES (Static Glass Cards)
   ========================= */
.features {
    position: relative;
    /* Match hero section gradient & grid layering */
    background:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        radial-gradient(circle at 68% 38%, rgba(0,212,170,0.12), transparent 60%),
        linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    background-size: 140px 140px, 140px 140px, 100% 100%, 100% 100%;
    background-attachment: fixed, fixed, scroll, scroll;
    color: #e8f8f6;
    padding: 120px clamp(1.4rem, 5vw, 3rem) 140px;
}
.features-inner { max-width: 1240px; margin: 0 auto; }
.features-head { text-align: center; max-width: 900px; margin: 0 auto 3.5rem; }
/* .features-head h2 { font-size: clamp(2.2rem, 5vw, 3.3rem); line-height: 1.1; background: linear-gradient(90deg,#fff,#99ffee,#36ffd6); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; } */
.features-head .tag-alt { top: -4px; }
.features-sub { font-size: clamp(1rem, 1.9vw, 1.25rem); color: #c2d9d7; margin-top: 1rem; line-height: 1.5; }

.feature-grid { display: grid; gap: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: stretch; }

/* Hover depth */
.feature-card { transition: transform .55s cubic-bezier(.22,.9,.29,1), box-shadow .55s ease, border-color .55s ease; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(0,0,0,0.7), 0 10px 26px -12px rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.15); }

@media (max-width: 680px) {
    .features { padding: 90px 1.2rem 110px; }
    .feature-card { padding: 2rem 1.4rem 2.4rem; }
    .feature-grid { gap: 1.8rem; }
}
@media (max-width: 480px) {
    .feature-card h3 { font-size: 1.2rem; }
    .feature-card .feat-num { width:34px; height:34px; font-size:.8rem; }
}

/* =========================
   BEFORE / AFTER COMPARISON
   ========================= */
.compare {
    background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 80px 20px 110px;
    position: relative;
}

.compare-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.compare-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 60px;
}

.compare-head h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.compare-head .tag, .vs-head .tag, .features-head .tag, .trial-head .tag {
    display: inline-block;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent-color);
    color: #003B32;
    padding: 4px 10px 5px;
    border-radius: 30px;
    position: relative;
    top: -4px;
    font-weight: 600;
    box-shadow: 0 4px 10px -3px rgba(0,212,170,0.45), 0 0 0 1px rgba(0,59,50,0.35);
    backdrop-filter: blur(4px);
}
/* When badge sits on its own line in features header give it bottom margin */
.features-head .tag { margin: 0 0 1rem; top: -2px; }

.compare-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.5;
}

.compare-stage {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.compare-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08), 0 8px 16px -6px rgba(0,0,0,0.05);
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
    /* Constrain overall size so imagery feels lighter on large screens */
    max-width: 900px; /* was effectively up to 1180px via parent */
    margin: 0 auto; /* center within stage */
}

.compare-pane {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.compare-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95);
}


.compare-after {
    /* Start fully hidden at the RIGHT edge; reveal proceeds right→left by decreasing left inset */
    clip-path: inset(0 0 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    will-change: clip-path;
}

/* Jagged edge to suggest transformation */
.edge-jag {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -22px; /* boundary moves from right to left; jag sits at leading edge */
    width: 44px;
    background: repeating-linear-gradient(
        60deg,
        rgba(255,255,255,0.0) 0 10px,
        rgba(255,255,255,0.35) 10px 20px
    );
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.65;
}

.compare-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%; /* will move as reveal progresses */
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none; /* actual drag is on wrapper */
}

.handle-core {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #023B31;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
}

.handle-core::after {
    content: none;
}

.handle-arrows { letter-spacing: 0; line-height: 1; }

/* (Removed scroll helper badge) */

.compare-legends {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.compare-legends .dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: -2px;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.dot-before { background: linear-gradient(135deg, #d1d8e0, #b2bec3); }
.dot-after { background: var(--accent-color); }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .compare-head h2 { font-size: 2.2rem; }
}
@media (max-width: 640px) {
    .compare { padding: 70px 16px 90px; }
    .compare-head h2 { font-size: 1.9rem; }
    .compare-sub { font-size: 1rem; }
    .handle-core { width: 28px; height: 28px; font-size: 0.85rem; }
    .compare-handle { width: 28px; height: 28px; }
}
@media (max-width: 460px) {
    .compare-legends { gap: 1.25rem; font-size: 0.85rem; }
    .compare-head h2 { font-size: 1.7rem; }
}

/* Navigation Bar */
.navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.nav-logo .nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo .nav-brand:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(45, 90, 90, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }
    
    .nav-logo .nav-brand {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        top: 60px;
    }
}

/* Hero Section */
.hero {
    /* Layer order: grid lines (x + y), subtle radial tint, original gradient */
    background:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        radial-gradient(circle at 68% 38%, #0f182c88, transparent 60%),
        linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    background-size: 140px 140px, 140px 140px, 100% 100%, 100% 100%;
    background-attachment: fixed, fixed, scroll, scroll; /* parallax‑like subtle stability */
    color: var(--white);
    padding: 80px 20px 100px 20px !important;
    text-align: center;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    position: relative; /* Needed for background effect layering */
    overflow: hidden; /* Hide animated overflow */
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative; /* Above animated background */
    z-index: 1;
}

/* Wave divider bridging hero -> next section */
.hero-wave {
    position: absolute;
    bottom: -1px; /* overlap to avoid seam */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 160px;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.35rem;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    z-index: 2;
}
.scroll-cue:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.15);
}
.scroll-cue-arrow {
    animation: bounceDown 2.6s infinite;
    display: inline-block;
    line-height: 1;
}
@keyframes bounceDown {
    0%, 18%, 100% { transform: translateY(0); }
    9% { transform: translateY(6px); }
    36% { transform: translateY(0); }
    45% { transform: translateY(6px); }
    54% { transform: translateY(0); }
}

@media (max-width: 600px) {
    .hero-wave svg { height: 120px; }
    .scroll-cue { width: 42px; height: 42px; font-size: 1.2rem; bottom: 34px; }
}

/* Subtle animated circular background patterns */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 32%, rgba(255,255,255,0.09) 0 120px, transparent 130px),
        radial-gradient(circle at 82% 38%, rgba(255,255,255,0.07) 0 100px, transparent 110px),
        radial-gradient(circle at 40% 78%, rgba(255,255,255,0.06) 0 140px, transparent 150px),
        radial-gradient(circle at 75% 82%, rgba(255,255,255,0.05) 0 90px, transparent 100px),
        radial-gradient(circle at 55% 45%, rgba(255,255,255,0.04) 0 160px, transparent 170px);
    background-size: 200% 200%;
    animation: heroCircles 55s linear infinite;
    mix-blend-mode: screen; /* Softer blending */
    opacity: 0.5; /* Overall low opacity */
}

/* Floating feature phrases layer */
.hero-features {
    position: absolute;
    inset: 0;
    z-index: 0; /* behind content, above ::before bg */
    pointer-events: none;
    font-family: inherit;
    overflow: hidden;
}
.hero-feature-float {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    white-space: nowrap;
    opacity: 0;
    filter: blur(0.2px);
    animation: featureFloat linear forwards;
    will-change: transform, opacity;
    mix-blend-mode: screen;
}
.hero-feature-float.alt { color: rgba(255,255,255,0.30); }
.hero-feature-float.accent { color: rgba(0,212,170,0.45); }

@keyframes featureFloat {
    0% { opacity: 0; transform: translateY(14px) scale(.95); }
    8% { opacity: .38; }
    15% { opacity: .5; }
    70% { opacity: .5; }
    84% { opacity: .34; }
    100% { opacity: 0; transform: translateY(-24px) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-feature-float { animation: none; opacity: .4; position: static; display: inline-block; margin: 2px 6px; }
    .hero-features { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding: 12px 10px; }
}

@keyframes heroCircles {
    /* Start dispersed */
    0% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
        opacity: 0.5;
    }
    /* First drift */
    18% {
        background-position: 80% 20%, 10% 15%, 90% 70%, 15% 85%, 55% 45%;
        opacity: 0.48;
    }
    /* Converge toward middle */
    30% {
        background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%;
        opacity: 0.55;
    }
    /* Disperse again */
    42% {
        background-position: 15% 85%, 85% 80%, 20% 25%, 75% 15%, 45% 55%;
        opacity: 0.48;
    }
    /* Second convergence */
    60% {
        background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%;
        opacity: 0.56;
    }
    /* Final wide drift */
    78% {
        background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%, 55% 55%;
        opacity: 0.49;
    }
    /* Loop back */
    100% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
        opacity: 0.5;
    }
}

.hero .top-head {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subheading {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Row of primary action buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px;
    font-size: .9rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(1, 191, 231, 1, 0.3); */
    text-transform: none;
}

.cta-primary:hover {
    background-color: #0F182C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 191, 231, 1, 0.4);
}

/* Outline secondary main CTA */
.cta-outline {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 10px;
    font-size: .9rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.cta-outline:hover {
    background: rgba(255,255,255,0.16);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-secondary {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cta-secondary:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px 20px;
        margin-top: 0;
    }
    
    .hero .top-head {
        font-size: 2.5rem;
    }
    
    .hero .subheading {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary, .cta-outline {
        padding: 12px 22px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 20px 50px 20px;
        margin-top: 0;
    }
    
    .hero .top-head {
        font-size: 2rem;
    }
    
    .hero .subheading {
        font-size: 1rem;
    }
    
    .cta-primary, .cta-outline {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}


/* new added jeeshma */


  /* Conversion-optimized hero layout (mirrors signup two-column feel) */
        /* --- Navbar (2-row, conversion-optimized) --- */
        .site-header{position:relative;top:0;z-index:999;}
        .site-header .navbar{position:fixed !important;display:block !important;top:0 !important;left:0 !important;right:0 !important;background:transparent !important;box-shadow:none;z-index:1000;margin:0}
        .site-header .topbar{position:relative !important;z-index:2; background: linear-gradient(180deg, #0F182C 0%, rgba(15, 24, 44, 0.92) 100%);}
        .site-header .primarybar{position:relative !important;z-index:1;margin-top:0 !important;background:transparent !important}
        .site-header .nav-menu{position:static !important}
        .topbar{font-size:12px;color:#C7CFDB;border-bottom:1px solid rgba(255,255,255,0.06);background:rgba(1,203,231,0.06)}
        .topbar-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:6px 16px}
        .topbar-offer{margin:0;color:#9EE7F4;font-weight:600;letter-spacing:.02em}
        .topbar-links{display:flex;gap:16px;list-style:none;margin:0;padding:0}
        .topbar-links a{color:#E2E8F0;text-decoration:none;opacity:.9}
        .topbar-links a:hover{opacity:1;color:#fff}

        .primarybar .nav-container{display:flex;align-items:center;justify-content:space-between;padding:10px 16px}
        .primarybar .nav-brand{display:inline-flex;align-items:center; width: 200px; vertical-align: middle;}
        .nav-toggle{display:none;background:transparent;border:0;cursor:pointer;padding:8px;margin:0}
        .nav-toggle .bar{display:block;width:22px;height:2px;background:#E2E8F0;margin:4px 0;border-radius:2px}
        .nav-menu{display:flex;align-items:center;gap:18px}
        .nav-list{display:flex;gap:14px;list-style:none;margin:0;padding:0}
        .nav-link{color:#D9E1EE;text-decoration:none;padding:8px 10px;border-radius:8px}
        .nav-link:hover{color:#ffffff;background:rgba(255,255,255,0.06)}
        .nav-cta{display:flex;gap:10px}
        .btn{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border-radius:10px;text-decoration:none;font-weight:700}
        .btn.login{background-color: #0F182C;color: white;}
        .btn-primary{background:#01CBE7;color:#0F182C;box-shadow:0 6px 18px rgba(1,203,231,0.25)}
        .btn-primary:hover{filter:brightness(1.05)}
        .btn-ghost{border:1px solid rgba(255,255,255,0.25);color:#E2E8F0}
        .btn-ghost:hover{border-color:rgba(255,255,255,0.4)}

        /* Compact on scroll (optional: enabled by existing sticky) */
        .site-header.menu-open{background:rgba(15,24,44,0.98)}

        /* Responsive */
        @media (max-width: 980px){
            .topbar-inner{padding:6px 12px}
            .primarybar .nav-container {
                padding: 8px 8px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .nav-logo {
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                min-width: 60px;
                margin-right: auto;
            }
            .nav-brand img {
                height: 32px !important;
                width: auto !important;
                max-width: 120px;
                min-width: 48px;
                
            }
            .nav-toggle {
                display: inline-flex;
                flex-direction: column;
                margin-left: auto;
                margin-right: 0;
            }
            .nav-menu{position:fixed;left:0;right:0;top:var(--menu-top, 86px);background:#0F182C;border-top:1px solid rgba(255,255,255,0.08);display:none;flex-direction:column;gap:10px;padding:12px 16px}
            .site-header.menu-open .nav-menu{display:flex}
            .nav-list{flex-direction:column;gap:6px}
            .nav-cta{flex-direction:column}
            .show-desktop{display:none}
        }
        /* Force transparent background for 2nd row (desktop only) */
        @media (min-width: 981px){
            .site-header,
            .site-header .primarybar,
            .site-header .primarybar .nav-container,
            .site-header .primarybar .nav-menu,
            .site-header .primarybar .nav-list{
                background: transparent !important;
            }
        }
        @media (max-width: 560px){
            .btn{width:100%;justify-content:center}
            .topbar-offer{font-size:11px}
        }

        .home-hero { position: relative; overflow: hidden; margin-top: -6rem; }
        .home-hero .hero-layout {
            display: flex;
            align-items: center;
            /* justify-content: space-between; */
            /* gap: clamp(20px, 5vw, 64px); */
            padding: clamp(16px, 3vw, 32px) clamp(16px, 4vw, 64px);
            min-height: 73vh;
        }
        .home-hero .hero-left { flex: 1 1 55%; min-width: 0;text-align: left; margin-left: 4rem; }
        .home-hero .hero-right { flex: 1 1 45%; min-width: 260px; display: flex; align-items: center; justify-content: center; }

        .home-hero .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(1, 203, 231, 0.12);
            color: #9EE7F4; border: 1px solid rgba(1,203,231,0.35);
            padding: 6px 10px; border-radius: 999px; font-size: 11px; font-weight: 600;
            letter-spacing: .02em; margin-bottom: 12px;
        }
        .home-hero .top-head { margin: 0 0 12px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; font-size: clamp(26px, 3.6vw, 46px); color: #F8FAFC; }
        .home-hero .subheading { margin: 0 0 16px; color: #C7CFDB; font-size: clamp(14px, 1.2vw, 17px); }
        .home-hero .hero-bullets { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 10px 18px; }
        .home-hero .hero-bullets li { display: flex; gap: 10px; align-items: flex-start; color: #D9E1EE; font-size: clamp(13px, 1.05vw, 16px); }
        .home-hero .hero-bullets li .tick { color: #8DA2FB; font-weight: 700; }
        .home-hero .cta-container { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; align-items: start; }
        .home-hero .cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
        .home-hero .cta-primary { background: #01CBE7; color: #0F182C; padding: 10px 16px; border-radius: 10px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 18px rgba(1,203,231,0.25); }
        .home-hero .cta-outline { border: 1px solid rgba(255,255,255,0.25); color: #E2E8F0; padding: 10px 16px; border-radius: 10px; text-decoration: none; }
        .home-hero .cta-secondary { color: #A4AEC0; text-decoration: none; font-size: 13px; }
    /* Subtle AI highlight pill */
    .home-hero .ai-highlights { display:flex; align-items: center; gap:8px; background: rgba(1,203,231,0.08); color:#D9E1EE; padding:8px 12px; border-radius:14px; font-size:13px; line-height:1.3; font-weight:500; max-width:75%; backdrop-filter:blur(4px); box-shadow:0 4px 14px -2px rgba(1,203,231,0.18); margin:4px 0 18px; }
    .home-hero .ai-highlights .ai-badge { display:inline-flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; background:linear-gradient(180deg,#8DA2FB,#01CBE7); color:#0F182C; padding:4px 7px 3px; border-radius:8px; box-shadow:0 2px 6px rgba(1,203,231,0.35); }
    .home-hero .ai-highlights .ai-text strong { color:#ffffff; font-weight:600; }
    .home-hero .ai-highlights .ai-logo { height:1.05em; width:auto; display:inline-block; object-fit:contain; filter:drop-shadow(0 1px 2px rgba(1,203,231,0.25)); margin-right:2px; }
    .home-hero .ai-highlights .ai-logo[data-dark-bg] { mix-blend-mode:normal; }
    /* Make entire AI highlight pill clickable without changing base style */
    .home-hero a.ai-highlights { text-decoration:none; color:inherit; display:flex; }
    .home-hero a.ai-highlights:hover { background: rgba(1,203,231,0.14); box-shadow:0 6px 20px -2px rgba(1,203,231,0.35); }
    .home-hero a.ai-highlights:focus-visible { outline:2px solid #01CBE7; outline-offset:3px; }
    @media (max-width:980px){ .home-hero .ai-highlights { margin-left:auto; margin-right:auto; } }
    @media (max-width:560px){ .home-hero .ai-highlights { font-size:12px; padding:7px 10px; } }

        /* Right-side mascot placeholder */
        .home-hero .mascot-card {
            /* width: clamp(280px, 80%, 520px); */
            /* aspect-ratio: 1 / 1; */
            width: 20rem;
            height: 20rem;
            border-radius: 18px;
            margin-top: -3rem;
            margin-left: 7rem;
            /* border: 1px solid rgba(255,255,255,0.12); */
            background: #0F182C;
            /* position: relative; overflow: hidden; */
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 24px 48px rgba(2, 8, 23, 0.233);
        }
        .home-hero .mascot-card img { max-width: 400px; max-height: 500px;margin-top: 13.8rem; margin-right: 5rem; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(1,203,231,0.25));z-index: 100; }
        .home-hero .mascot-placeholder { color: #9FB0C9; font-size: 14px; opacity: 0.9; }

        /* Decorative wave and scroll cue keep working */
        .home-hero .hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
        .home-hero .scroll-cue { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); color: #A4AEC0; text-decoration: none; font-size: 18px; }

        /* Responsive */
        @media (min-height: 1365px) {
             .home-hero .hero-layout{
                min-height: 40vh;
             }
        }
        @media (max-width: 980px) {
            .home-hero{min-height: 0 !important;}
            .home-hero .hero-layout { flex-direction: column; justify-content: center; min-height:40vh !important; }
            .home-hero .hero-right { width: 100%;flex: none; }
            .home-hero .mascot-card img { max-width: 300px; max-height: 320px;margin-top: 9rem;margin-right: 4rem; z-index: 300;}
            .home-hero .mascot-card {width: 13rem;height: 13rem;margin-top: 1rem; align-items: center; margin-left: 0;}
            .home-hero .hero-left{text-align: center; margin-left: 0;flex: none;}
            .home-hero .subheading{max-width: none;}
             .home-hero .cta-container { align-items: center; }
             /* Center hero bullets on tablet/mobile */
             .home-hero .hero-bullets{ align-items: center; justify-items: center; text-align: center; }
             .home-hero .hero-bullets li{ justify-content: center; text-align: center; }
             .home-hero .scroll-cue{display: none;}
             
        }
        @media (max-width: 560px) {
            .home-hero .hero-layout { padding: 0 !important; gap: 20px; margin-top: 3rem; }
            .home-hero .top-head { font-size:1.7rem }
            .home-hero .subheading{font-size:.9rem; padding:.4rem;}
            .home-hero .hero-bullets { display: none !important; }
            .home-hero .hero-bullets li{font-size:.7rem ;}
            .home-hero .mascot-card img{max-height: 280px;margin-top: 7.5rem;}
            
        }

        /* =============================
           Features (Scroll Story) v2
           ============================= */
        .features.features-v2 { position: relative; isolation: isolate; padding: clamp(40px, 8vw, 120px) 0; background: linear-gradient(180deg, #0F182C 0%, #0C1530 100%); }
        .features-v2 .features-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(20px, 4vw, 56px); }
        .features-v2 .features-head { display: none; }
        .features-v2 .pin { position: sticky; top: 14vh; align-self: start; }
        .features-v2 .pin .tag { display: inline-block; font-size: 12px; letter-spacing: .06em; font-weight: 700; color: #9EE7F4; background: rgba(1,203,231,0.12); border: 1px solid rgba(1,203,231,0.35); padding: 6px 10px; border-radius: 999px; margin-bottom: 12px; }
        .features-v2 .pin h2 { margin: 0 0 10px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; font-size: clamp(26px, 3.2vw, 40px); color: #F8FAFC; }
        .features-v2 .pin .pin-sub { margin: 0; color: #C7CFDB; max-width: 36ch; }
        .pin-sub span{ color:rgb(13, 252, 252); font-weight:700; text-shadow: 0 1px 2px rgba(15,11,11,0.24); }
    .features-v2 .pin .progress { position: relative; width: 8px; height: 40vh; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; margin-top: clamp(18px, 2vw, 24px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
        .features-v2 .pin .progress .fill { position: absolute; left: 0; right: 0; bottom: 0; height: 0%; background: linear-gradient(180deg, #8DA2FB 0%, #01CBE7 100%); box-shadow: 0 10px 28px rgba(1,203,231,0.25); transition: height .5s cubic-bezier(.22,.61,.36,1); }
    .features-v2 .pin .pin-rail { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 14px; }
    .features-v2 .pin .pin-quote { margin: 0; margin-top: clamp(18px, 2vw, 24px); color: #C7CFDB; font-size: 14px; line-height: 1.5; opacity: .9; }
    .features-v2 .pin .pin-quote blockquote { margin: 0 0 6px 0; font-style: italic; color: #E5EDFF; }
    .features-v2 .pin .pin-quote figcaption { font-size: 12px; color: #9FB0C9; }

        .features-v2 .steps { display: grid; gap: clamp(16px, 2.4vw, 28px); }
        .features-v2 .step { min-height: clamp(360px, 70vh, 520px); border-radius: 18px; padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 28px); background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(6px); transform: translateY(30px) scale(.98); opacity: .25; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .6s ease, border-color .6s ease, box-shadow .6s ease; will-change: transform, opacity; }
        .features-v2 .step.is-active { opacity: 1; transform: translateY(0) scale(1); border-color: rgba(1,203,231,0.35); box-shadow: 0 16px 48px rgba(1,203,231,0.12); }
        .features-v2 .feat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .features-v2 .feat-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; font-weight: 800; color: #0F182C; background: linear-gradient(180deg, #8DA2FB, #01CBE7); box-shadow: 0 8px 24px rgba(1,203,231,0.25); }
        .features-v2 .step h3 { margin: 0; font-size: clamp(18px, 1.6vw, 22px); color: #F5F8FF; letter-spacing: -0.01em; }
        .features-v2 .feat-desc { margin: 6px 0 14px; color: #AFC1D9; font-size: 14px; }
        .features-v2 .feat-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .features-v2 .feat-points li { display: flex; gap: 10px; align-items: flex-start; color: #D9E1EE; }
        .features-v2 .feat-points li::before { content: "✔"; color: #8DA2FB; font-weight: 900; margin-top: -1px; }
    .features-v2 .feat-media { margin-top: clamp(12px, 1.5vw, 16px); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); aspect-ratio: 16 / 9; box-shadow: 0 8px 24px rgba(2,8,23,0.22), inset 0 0 0 1px rgba(255,255,255,0.02); }
    .features-v2 .feat-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) contrast(1.02); }

        /* Subtle gradient halo tied to active card color */
        .features-v2::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 65% 35%, color-mix(in oklab, var(--accent, #01CBE7) 20%, transparent), transparent 70%); opacity: .25; pointer-events: none; transition: background .5s ease; }

        /* Responsive adjustments */
        @media (max-width: 980px) {
            .features-v2 .features-inner { grid-template-columns: 1fr; }
            .features-v2 .pin { position: relative; top: 0; }
            .features-v2 .pin .pin-rail { grid-template-columns: 1fr; }
            .features-v2 .pin .progress { display: none; }
            .features-v2 .pin .pin-sub { max-width: none; }
            .features-v2 .step { min-height: auto; }
        }
        @media (max-width: 560px) {
            .features.features-v2 { padding: 36px 0; }
            .features-v2 .step { padding: 16px; }
        }

        /* Reduced motion accessibility */
        @media (prefers-reduced-motion: reduce) {
            .features-v2 .step { transition: none; transform: none !important; opacity: 1 !important; }
            .features-v2 .pin .progress .fill { transition: none; }
        }

        /* =============================
           AI Suite Section (WynLeads & Swarra)
           ============================= */
        .ai-suite { position: relative; padding: clamp(40px, 8vw, 120px) 0; background: linear-gradient(180deg, #0C1530 0%, #0A1329 100%); }
        .ai-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
        .ai-head { text-align: center; margin-bottom: clamp(18px, 3vw, 32px); }
        .ai-head .tag { display: inline-block; font-size: 12px; letter-spacing: .06em; font-weight: 700; color: #9EE7F4; background: rgba(1,203,231,0.12); border: 1px solid rgba(1,203,231,0.35); padding: 6px 10px; border-radius: 999px; margin-bottom: 10px; }
        .ai-head h2 { margin: 0 0 10px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; font-size: clamp(26px, 3.2vw, 40px); color: #F8FAFC; }
        .ai-head .ai-sub { margin: 0 auto; color: #C7CFDB; max-width: 60ch; }
        .ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 3vw, 28px); align-items: stretch; }
        .ai-card { display: flex; flex-direction: column; gap: 10px; border-radius: 18px; padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 28px); background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(6px); box-shadow: 0 8px 24px rgba(2,8,23,0.22), inset 0 0 0 1px rgba(255,255,255,0.02); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
        .ai-card:hover { transform: translateY(-4px); border-color: rgba(1,203,231,0.35); box-shadow: 0 16px 48px rgba(1,203,231,0.12); }
        .ai-card .ai-headline { display: flex; align-items: center; gap: 12px; }
        .ai-card .ai-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(180deg, #8DA2FB, #01CBE7); box-shadow: 0 8px 24px rgba(1,203,231,0.25); overflow: hidden; }
        .ai-card .ai-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .ai-card h3 { margin: 0; font-size: clamp(18px, 1.6vw, 22px); color: #F5F8FF; letter-spacing: -0.01em; }
        .ai-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #0F182C; background: linear-gradient(180deg,#8DA2FB,#01CBE7); padding: 4px 8px; border-radius: 999px; margin-left: auto; }
        .ai-desc { margin: 4px 0 8px; color: #AFC1D9; font-size: 14px; }
        .ai-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .ai-points li { display: flex; gap: 10px; align-items: flex-start; color: #D9E1EE; }
        .ai-points li::before { content: "✔"; color: #8DA2FB; font-weight: 900; margin-top: -1px; }
        .ai-footnote { margin-top: auto; font-size: 12px; color: #9FB0C9; opacity: .9; }
        .ai-card .ai-media { margin-top: 8px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); aspect-ratio: 16 / 9; }
        .ai-card .ai-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); display: block; }
        @media (max-width: 980px) { .ai-grid { grid-template-columns: 1fr; } }
        @media (max-width: 560px) { .ai-head .ai-sub { max-width: none; } }

        /* =============================
           Logo Carousel Section
           ============================= */
        .logo-showcase { position: relative; padding: clamp(36px, 8vw, 112px) 0; background: linear-gradient(180deg, #0A1329 0%, #071023 100%); overflow: hidden; }
        .logo-showcase::before { content: ""; position: absolute; inset: 0; background: radial-gradient(520px 220px at 50% 0%, rgba(1,203,231,0.18), transparent 70%); pointer-events: none; opacity: 0.9; }
        .logo-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); text-align: center; display: grid; gap: clamp(18px, 3vw, 30px); }
        .logo-headline { display: grid; gap: 10px; }
        .logo-headline .tag { display: inline-block; margin: 0 auto; font-size: 12px; letter-spacing: .06em; font-weight: 700; color: #9EE7F4; background: rgba(1,203,231,0.12); border: 1px solid rgba(1,203,231,0.35); padding: 6px 10px; border-radius: 999px; }
        .logo-headline h2 { margin: 0; font-weight: 800; letter-spacing: -0.02em; font-size: clamp(24px, 3vw, 36px); color: #F8FAFC; }
        .logo-headline p { margin: 0 auto; max-width: 60ch; color: #C7CFDB; font-size: clamp(14px, 1.1vw, 16px); }
    .logo-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.85) 12%, rgba(0,0,0,0.85) 88%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.85) 12%, rgba(0,0,0,0.85) 88%, transparent 100%); }
        .logo-track { display: flex; align-items: center; gap: clamp(36px, 7vw, 96px); width: max-content; animation: logo-scroll 36s linear infinite; will-change: transform; }
        .logo-track:hover { animation-play-state: paused; }
        .logo-item { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-width: clamp(120px, 16vw, 180px); padding: clamp(12px, 1.5vw, 18px) clamp(14px, 2vw, 24px); border-radius: 14px; color: #E5EDFF; font-weight: 600; font-size: clamp(13px, 1.1vw, 15px); text-transform: uppercase; letter-spacing: .08em; }
        .logo-item[aria-hidden="true"] { color: rgba(229,237,255,0.55); }
        .logo-images{ width: 200px;}

        @media (max-width: 780px) {
            .logo-track { gap: clamp(28px, 6vw, 56px); }
            .logo-item { min-width: clamp(100px, 30vw, 160px); font-size: clamp(12px, 3vw, 14px); }
        }
        @media (max-width: 560px) {
            .logo-headline .tag { font-size: 11px; }
            .logo-headline h2 { font-size: clamp(20px, 5vw, 28px); }
            .logo-headline p { font-size: 13px; }
             .logo-images{ width: 120px;}
        }
        @media (prefers-reduced-motion: reduce) {
            .logo-track { animation: none; }
        }

        @keyframes logo-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

/* =============================
     Long-form Educational Section - MODERN TABBED DESIGN
     (AI CRM content depth with interactive transitions)
     ============================= */
.content-deep-modern { 
    background: linear-gradient(135deg, #0F182C 0%, #1a2a4a 50%, #0F182C 100%);
    padding: clamp(60px, 8vw, 140px) 0; 
    position: relative; 
    overflow: hidden; 
}

/* Animated background patterns */
.content-deep-modern::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: 
        radial-gradient(circle at 20% 20%, rgba(1,203,231,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(141,162,251,0.12) 0%, transparent 50%);
    animation: deepPulse 8s ease-in-out infinite alternate;
    pointer-events: none; 
}

@keyframes deepPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

.content-inner-modern { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 clamp(16px, 4vw, 32px); 
    display: grid; 
    gap: clamp(32px, 5vw, 56px); 
    position: relative;
    z-index: 1;
}

.deep-head-modern { 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
    display: grid; 
    gap: 16px; 
}

.deep-badge {
    display: inline-block;
    margin: 0 auto;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0F182C;
    background: linear-gradient(135deg, #01CBE7, #8DA2FB);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(1,203,231,0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.deep-head-modern h2 { 
    margin: 0; 
    font-weight: 800; 
    letter-spacing: -0.02em; 
    line-height: 1.1; 
    font-size: clamp(28px, 4vw, 48px); 
    background: linear-gradient(135deg, #ffffff 0%, #01CBE7 100%);
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
}

.deep-sub-modern { 
    margin: 0; 
    color: #C7CFDB; 
    font-size: clamp(15px, 1.3vw, 19px); 
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Tabbed Interface */
.deep-tabs-wrapper {
    display: grid;
    gap: 24px;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.tab-btn {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1,203,231,0.2) 0%, rgba(141,162,251,0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-btn:hover {
    transform: translateY(-4px);
    border-color: rgba(1,203,231,0.4);
    box-shadow: 0 8px 24px rgba(1,203,231,0.2);
}

.tab-btn:hover::before {
    opacity: 1;
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(1,203,231,0.15), rgba(141,162,251,0.15));
    border-color: #01CBE7;
    box-shadow: 
        0 8px 32px rgba(1,203,231,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.tab-btn.active::before {
    opacity: 1;
}

.tab-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tab-btn:hover .tab-icon,
.tab-btn.active .tab-icon {
    transform: scale(1.2) rotate(5deg);
}

.tab-label {
    font-size: 14px;
    font-weight: 600;
    color: #C7CFDB;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tab-btn.active .tab-label {
    color: #ffffff;
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
}

.tab-content h3 {
    margin: 0 0 20px;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #01CBE7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tab-content p {
    margin: 0 0 20px;
    color: #C7CFDB;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.6;
}

.tab-content p em {
    color: #01CBE7;
    font-style: normal;
    font-weight: 600;
}

.tab-content a {
    color: #01CBE7;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.tab-content a:hover {
    border-bottom-color: #01CBE7;
}

.deep-points-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.deep-points-modern li {
    position: relative;
    padding-left: 32px;
    color: #C7CFDB;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInItem 0.5s ease forwards;
}

.tab-content.active .deep-points-modern li:nth-child(1) { animation-delay: 0.1s; }
.tab-content.active .deep-points-modern li:nth-child(2) { animation-delay: 0.2s; }
.tab-content.active .deep-points-modern li:nth-child(3) { animation-delay: 0.3s; }
.tab-content.active .deep-points-modern li:nth-child(4) { animation-delay: 0.4s; }
.tab-content.active .deep-points-modern li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.deep-points-modern li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #01CBE7, #8DA2FB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #0F182C;
    box-shadow: 0 2px 8px rgba(1,203,231,0.4);
}

.deep-points-modern li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Comparison Visual */
.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 24px;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
}

.comp-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.comp-item:hover {
    transform: scale(1.05);
}

.comp-label {
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    display: inline-block;
}

.comp-label.bad {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-label.good {
    background: rgba(16, 185, 129, 0.2);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.comp-divider {
    font-size: 24px;
    color: #01CBE7;
    font-weight: 700;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.use-case-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
}

.tab-content.active .use-case-item:nth-child(1) { animation-delay: 0.1s; }
.tab-content.active .use-case-item:nth-child(2) { animation-delay: 0.2s; }
.tab-content.active .use-case-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.use-case-item:hover {
    transform: translateY(-4px);
    background: rgba(1,203,231,0.1);
    border-color: rgba(1,203,231,0.3);
    box-shadow: 0 8px 24px rgba(1,203,231,0.2);
}

.use-case-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #01CBE7, #8DA2FB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.use-case-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.use-case-item p {
    font-size: 14px;
    color: #C7CFDB;
    margin: 0;
}

/* Steps Timeline */
.steps-timeline {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.timeline-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInStep 0.5s ease forwards;
}

.tab-content.active .timeline-step:nth-child(1) { animation-delay: 0.1s; }
.tab-content.active .timeline-step:nth-child(2) { animation-delay: 0.2s; }
.tab-content.active .timeline-step:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInStep {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-marker {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #01CBE7, #8DA2FB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #0F182C;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(1,203,231,0.4);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.step-content p {
    font-size: 14px;
    color: #C7CFDB;
    margin: 0;
}

.deep-cta-modern { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: center; 
    margin-top: clamp(12px, 3vw, 24px); 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-visual {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .comp-divider {
        transform: rotate(90deg);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 12px 8px;
    }
    
    .tab-icon {
        font-size: 28px;
    }
    
    .tab-label {
        font-size: 12px;
    }
    
    .tab-content {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-deep-modern::before,
    .deep-badge,
    .tab-btn,
    .tab-icon,
    .tab-content,
    .deep-points-modern li,
    .use-case-item,
    .timeline-step {
        animation: none !important;
        transition: none !important;
    }
    
    .deep-points-modern li,
    .use-case-item,
    .timeline-step {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =============================
     OLD STYLES (Kept for backward compatibility)
     ============================= */
.content-deep { background: linear-gradient(180deg, #ffffff 0%, var(--light-gray) 100%); padding: clamp(56px, 7vw, 120px) 0; position: relative; overflow: hidden; }
.content-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); display: grid; gap: clamp(18px, 3vw, 28px); }
.deep-head { text-align: center; max-width: 920px; margin: 0 auto; display: grid; gap: 10px; }
.deep-head h2 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; font-size: clamp(26px, 3.2vw, 38px); background: var(--grad-head-teal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.deep-sub { margin: 0; color: var(--text-light); font-size: clamp(14px, 1.15vw, 18px); }
.deep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 24px); align-items: stretch; }
.deep-block { background: #ffffff; border: 1px solid var(--gray-200); border-radius: 18px; padding: clamp(16px, 2.2vw, 22px); box-shadow: 0 10px 26px -16px rgba(0,0,0,0.12), 0 4px 14px -10px rgba(0,0,0,0.06); transition: transform .35s var(--ease-standard), box-shadow .35s ease, border-color .35s ease; }
.deep-block:hover { transform: translateY(-4px); border-color: rgba(1,203,231,0.45); box-shadow: 0 18px 44px -20px rgba(0,0,0,0.18), 0 10px 26px -16px rgba(1,203,231,0.25); }
.deep-block h3 { margin: 0 0 8px; font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; letter-spacing: -0.01em; color: var(--text-dark); }
.deep-block p { margin: 6px 0 0; color: #3a4a4a; font-size: 0.98rem; line-height: 1.55; }
.deep-points { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 10px; }
.deep-points li { position: relative; padding-left: 1.2rem; color: #2f4745; font-size: .98rem; line-height: 1.45; }
.deep-points li::before { content:""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-accent-col); box-shadow: 0 0 0 3px rgba(0,212,170,0.22); }
.deep-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: clamp(8px, 2.2vw, 18px); }
.content-deep::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 220px; background: radial-gradient(520px 220px at 50% 0%, rgba(1,203,231,0.14), transparent 70%); pointer-events: none; }
@media (max-width: 980px){ .deep-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px){ .deep-block { padding: 14px; } .deep-block p { font-size: .95rem; } }