/* ============================================================
   PLATINUM — Design System & Component Library
   A comprehensive CSS framework for chiropractic practice
   management SaaS. Production-ready, fully responsive.

   ARCHITECTURE (Tree-Based):
   ├── §1  Design Tokens (CSS Custom Properties)
   │   ├── Brand Palette, Text, Backgrounds, Borders
   │   ├── Shadows, Easing, Transitions
   │   ├── Spacing, Typography, Radius, Fonts, Layout
   │   ├── Shared Component Tokens (card, icon, dark theme)
   │   └── Icon Color Palette (6 colors × base/hover)
   ├── §2  Reset & Base Styles
   ├── §3  Utility Classes
   ├── §4  Grid System
   ├── §4b Shared Component Base (card-base, icon-base)
   ├── §5  Header & Navigation (inc. Mega Menu)
   ├── §6  Buttons
   ├── §7  Badges
   ├── §8  Cards (shared base → variants)
   ├── §9  Feature Cards
   ├── §10 Hero Sections
   ├── §11 Section Headers
   ├── §12 Dashboard Mock
   ├── §13 Role Tabs
   ├── §14 Comparison Table
   ├── §15 Stats
   ├── §16 Workflow Steps
   ├── §17 Feature List
   ├── §18 Testimonials
   ├── §19 CTA Section
   ├── §20 Pricing Cards
   ├── §21 Support Section
   ├── §22 Integrations Grid
   ├── §23 Form Styles
   ├── §24 Accordion
   ├── §25 Inline Form (Newsletter)
   ├── §26 Divider
   ├── §27 Footer v2 (2026 Modern)
   ├── §28 Animations
   ├── §29-31 Responsive (1024/768/480)
   ├── §32 Trust Bar
   ├── §33-39 Tabs, Panels, Testimonials, Awards
   ├── §40 Chat Widget
   ├── §41-48 Modules, Outcomes, Role Cards
   ├── §49-50 Why Platinum, Header Toggle
   ├── §51 Mega Menu Navigation
   ├── Platform Modules & Dashboard V2
   ├── The Shift — Timeline & Diagram
   ├── 2026 Modern Enhancements
   ├── Page-Specific (Auth, Blog, About, Contact, Support)
   └── Print Styles
   ============================================================ */

/* ===========================================
   1. DESIGN TOKENS (CSS Custom Properties)
   =========================================== */
:root {
  /* ================================================
     2026 DESIGN TOKENS — Platinum Design System
     Refined for maximum impact & visual excellence
     ================================================ */

  /* ── Platinum Brand Palette ─────────────────────────────
     ps_primary              #0069A6  — primary action blue
     ps_primary_dark         #163760  — deep navy
     ps_primary_background   #ECF6FB  — lightest sky tint
     ps_primary_blue_light   #DFEBF2  — pale blue surface
     ps_accent               #FF8956  — warm coral/orange CTA
     ps_background           #F5F5F5  — neutral page bg
  ─────────────────────────────────────────────────────── */

  /* Blue scale — Platinum brand ramp */
  --color-blue-50:  #ecf6fb;   /* ps_primary_background    */
  --color-blue-100: #dfebf2;   /* ps_primary_blue_light    */
  --color-blue-200: #b3d4e8;
  --color-blue-300: #80b8d4;
  --color-blue-400: #4d9cc0;
  --color-blue-500: #1a85c2;
  --color-blue-600: #0069a6;   /* ps_primary               */
  --color-blue-700: #163760;   /* ps_primary_dark          */

  /* Primary Palette — Platinum Brand */
  --color-primary:            #0069a6;  /* ps_primary               */
  --color-primary-dark:       #163760;  /* ps_primary_dark          */
  --color-primary-light:      #ecf6fb;  /* ps_primary_background    */
  --color-primary-light-shade:#dfebf2;  /* ps_primary_blue_light    */
  --color-secondary:          #163760;  /* ps_primary_dark          */
  --color-accent:             #ff8956;  /* ps_accent — coral CTA    */
  --color-accent-warm:        #ff8956;  /* alias                    */
  --color-accent-gold:        #f59e0b;  /* keep for star ratings    */
  --color-electric:           #0069a6;  /* brand primary            */

  /* Text — refined slate scale */
  --color-text:           #163760;      /* ps_primary_dark for headings */
  --color-text-body:      #334e68;      /* readable mid-navy            */
  --color-text-secondary: #486581;
  --color-text-light:     #829ab1;
  --color-text-muted:     #bcccdc;

  /* Backgrounds — soft, airy, modern */
  --color-bg:        #f7f8fa;   /* softer neutral page bg    */
  --color-bg-white:  #ffffff;
  --color-bg-light:  #eaf1f7;   /* soft blue surface         */
  --color-bg-tinted: #f0f7fc;   /* lightest sky tint         */
  --color-bg-dark:   #163760;   /* ps_primary_dark           */
  --color-bg-darker: #0e2344;

  /* Borders — delicate edges */
  --color-border:       #dfebf2;
  --color-border-light: #ecf6fb;
  --color-border-dark:  #b3d4e8;

  /* Shadows — premium layered depth system (2026 aesthetic) */
  --shadow-xs:   0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm:   0 2px 8px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md:   0 4px 16px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg:   0 12px 36px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-xl:   0 20px 60px rgba(15, 23, 42, 0.10), 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-2xl:  0 32px 100px rgba(15, 23, 42, 0.12), 0 12px 40px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 8px 32px rgba(0, 105, 166, 0.12), 0 20px 60px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 0 3px rgba(0, 105, 166, 0.10), 0 0 28px rgba(0, 105, 166, 0.08);
  --shadow-blue-glow: 0 0 48px rgba(0, 105, 166, 0.14), 0 8px 40px rgba(0, 105, 166, 0.10);
  --shadow-accent-glow: 0 0 40px rgba(255, 137, 86, 0.14), 0 8px 32px rgba(255, 137, 86, 0.10);
  --shadow-hero: 0 0 0 1px rgba(22, 55, 96, 0.05),
                 0 4px 20px rgba(0, 105, 166, 0.08),
                 0 24px 72px rgba(15, 23, 42, 0.10),
                 0 64px 140px rgba(15, 23, 42, 0.05);
  --shadow-premium: 0 0 0 1px rgba(0, 105, 166, 0.06),
                    0 4px 16px rgba(0, 105, 166, 0.06),
                    0 16px 48px rgba(15, 23, 42, 0.08);

  /* Easing — physics-driven */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Transitions */
  --transition-fast: 0.18s var(--ease-out);
  --transition-base: 0.36s var(--ease-out);
  --transition-slow: 0.56s var(--ease-out);

  /* Spacing Scale — generous for premium breathing room */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --space-48: 12rem;

  /* Typography Scale — fluid with generous clamp() — 2026 refined */
  --text-xs:   clamp(0.72rem, 0.68rem + 0.2vw,  0.78rem);
  --text-sm:   clamp(0.82rem, 0.78rem + 0.22vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem  + 0.25vw, 1.06rem);
  --text-lg:   clamp(1.05rem, 1rem    + 0.3vw,  1.18rem);
  --text-xl:   clamp(1.15rem, 1.05rem + 0.5vw,  1.32rem);
  --text-2xl:  clamp(1.35rem, 1.15rem + 1vw,    1.6rem);
  --text-3xl:  clamp(1.7rem,  1.35rem + 1.5vw,  2.15rem);
  --text-4xl:  clamp(2.1rem,  1.6rem  + 2.5vw,  3.1rem);
  --text-5xl:  clamp(2.7rem,  2rem    + 3.5vw,  4rem);
  --text-6xl:  clamp(3.4rem,  2.4rem  + 5vw,    5rem);
  --text-7xl:  clamp(4rem,    2.6rem  + 7vw,    6.8rem);
  --text-8xl:  clamp(4.8rem,  2.8rem  + 9vw,    8.5rem);

  /* Border Radius — modern, soft curves */
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-3xl:  44px;
  --radius-full: 9999px;

  /* Font Families */
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 840px;
  --header-height: 72px;

  /* ── Shared Component Tokens ────────────────────────── */

  /* Card Base */
  --card-bg: #ffffff;
  --card-border: 1px solid rgba(15, 23, 42, 0.07);
  --card-radius: var(--radius-2xl);
  --card-shadow: var(--shadow-card);
  --card-shadow-hover: var(--shadow-card-hover);
  --card-transition: box-shadow 0.4s var(--ease-smooth),
                     transform 0.4s var(--ease-spring),
                     border-color 0.3s ease;
  --card-hover-y: translateY(-6px);
  --card-hover-border: rgba(0, 105, 166, 0.14);

  /* Icon Container */
  --icon-size: 60px;
  --icon-size-lg: 72px;
  --icon-radius: var(--radius-xl);
  --icon-transition: transform 0.3s var(--ease-spring);

  /* Icon Color Palette */
  --icon-blue-bg: linear-gradient(135deg, #dfebf2, #ecf6fb);
  --icon-blue-fg: #0069a6;
  --icon-blue-shadow: 0 4px 14px rgba(0, 105, 166, 0.18);
  --icon-blue-hover-bg: linear-gradient(135deg, #80b8d4, #b3d4e8);
  --icon-blue-hover-fg: #004f7d;
  --icon-blue-hover-shadow: 0 6px 18px rgba(0, 105, 166, 0.32);

  --icon-green-bg: linear-gradient(135deg, #dcfce7, #f0fdf4);
  --icon-green-fg: #16a34a;
  --icon-green-shadow: 0 4px 14px rgba(34, 197, 94, 0.18);
  --icon-green-hover-bg: linear-gradient(135deg, #86efac, #b6f0c8);
  --icon-green-hover-fg: #117a38;
  --icon-green-hover-shadow: 0 6px 18px rgba(34, 197, 94, 0.32);

  --icon-purple-bg: linear-gradient(135deg, #dfebf2, #ecf6fb);
  --icon-purple-fg: #163760;
  --icon-purple-shadow: 0 4px 14px rgba(139, 92, 246, 0.18);
  --icon-purple-hover-bg: linear-gradient(135deg, #80b8d4, #b3d4e8);
  --icon-purple-hover-fg: #0e2344;
  --icon-purple-hover-shadow: 0 6px 18px rgba(139, 92, 246, 0.32);

  --icon-orange-bg: linear-gradient(135deg, #fef3c7, #fffbeb);
  --icon-orange-fg: #d97706;
  --icon-orange-shadow: 0 4px 14px rgba(245, 158, 11, 0.18);
  --icon-orange-hover-bg: linear-gradient(135deg, #fbbf24, #fde68a);
  --icon-orange-hover-fg: #b45309;
  --icon-orange-hover-shadow: 0 6px 18px rgba(245, 158, 11, 0.32);

  --icon-red-bg: linear-gradient(135deg, #fee2e2, #fef2f2);
  --icon-red-fg: #dc2626;
  --icon-red-shadow: 0 4px 14px rgba(239, 68, 68, 0.18);
  --icon-red-hover-bg: linear-gradient(135deg, #f87171, #fca5a5);
  --icon-red-hover-fg: #b91c1c;
  --icon-red-hover-shadow: 0 6px 18px rgba(239, 68, 68, 0.32);

  --icon-teal-bg: linear-gradient(135deg, #ccfbf1, #f0fdfa);
  --icon-teal-fg: #0d9488;
  --icon-teal-shadow: 0 4px 14px rgba(20, 184, 166, 0.18);
  --icon-teal-hover-bg: linear-gradient(135deg, #5eead4, #99f6e4);
  --icon-teal-hover-fg: #0a7468;
  --icon-teal-hover-shadow: 0 6px 18px rgba(20, 184, 166, 0.32);

  /* Dark Theme */
  --dark-bg: #070e1a;
  --dark-bg-gradient: linear-gradient(168deg, #0a1c32 0%, #112d4e 40%, #0e2344 100%);
  --dark-text: #ffffff;
  --dark-text-muted: rgba(255, 255, 255, 0.5);
  --dark-text-subtle: rgba(255, 255, 255, 0.3);
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-light: rgba(255, 255, 255, 0.06);
  --dark-surface: rgba(255, 255, 255, 0.04);
  --dark-surface-hover: rgba(255, 255, 255, 0.065);
  --dark-surface-glass: rgba(255, 255, 255, 0.03);

  /* CTA Gradient */
  --cta-gradient: linear-gradient(135deg, #0069a6 0%, #005080 40%, #163760 100%);
}


/* ===========================================
   2. RESET & BASE STYLES
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-height);
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Modern selection color */
::selection {
  background: rgba(0, 105, 166, 0.14);
  color: var(--color-text);
}

/* Modern scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: var(--radius-full);
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 105, 166, 0.4); }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--color-text);
  overflow-x: hidden;
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
body.loaded {
  opacity: 1;
}
body.page-exit {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.6, 1) !important;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ===========================================
   3. UTILITY CLASSES
   =========================================== */

/* Text Alignment & Colors */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-text-secondary) !important; }
.text-sm { font-size: var(--text-sm) !important; }
.text-lg { font-size: var(--text-lg) !important; }
.text-xl { font-size: var(--text-xl) !important; }

/* Margin Bottom */
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

/* Margin Top */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Sections — generous premium spacing */
.section {
  padding: clamp(4rem, 6vw, 7rem) 0;
}

/* Reduce top gap on the first section right after the hero */
.hero + .section,
.hero + .section.section--bg-tinted,
.hero + .section.section--bg-white {
  padding-top: var(--space-14);
}

/* No gap between hero and features bar */
.hero + .features-bar {
  margin-top: -1px;
}

.section--sm {
  padding: clamp(3rem, 4vw, 5rem) 0;
}

.section--lg {
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.section--bg-white {
  background-color: var(--color-bg-white);
}

.section--bg-light {
  background-color: var(--color-bg-light);
}

.section--bg-dark {
  background-color: var(--color-bg-dark);
}

.section--bg-dark h1,
.section--bg-dark h2,
.section--bg-dark h3,
.section--bg-dark h4,
.section--bg-dark h5,
.section--bg-dark h6 {
  color: #fff;
}

.section--bg-dark p,
.section--bg-dark .section-header__text,
.section--bg-dark .section-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
}


/* ===========================================
   4. GRID SYSTEM
   =========================================== */
.grid {
  display: grid;
  gap: var(--space-8);
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex--center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex--col {
  display: flex;
  flex-direction: column;
}


/* ===========================================
   4b. SHARED COMPONENT BASE CLASSES
   Centralized patterns to eliminate duplication
   across card, feature-card, support-card, etc.
   =========================================== */

/* ── Card Base ── shared by all card-like components */
.card,
.feature-card,
.testimonial,
.support-card,
.integration-card,
.pricing-card,
.stat-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
  position: relative;
  overflow: hidden;
}

.card:hover,
.feature-card:hover,
.support-card:hover,
.integration-card:hover,
.pricing-card:hover,
.stat-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: var(--card-hover-y);
  border-color: var(--card-hover-border);
}

/* ── Icon Base ── shared icon container pattern */
.card__icon,
.feature-card__icon,
.support-card__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--icon-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--icon-transition);
}

/* ── Icon Color Variants ── unified across all components */
[class*="__icon--blue"]   { background: var(--icon-blue-bg);   color: var(--icon-blue-fg);   box-shadow: var(--icon-blue-shadow); }
[class*="__icon--green"]  { background: var(--icon-green-bg);  color: var(--icon-green-fg);  box-shadow: var(--icon-green-shadow); }
[class*="__icon--purple"] { background: var(--icon-purple-bg); color: var(--icon-purple-fg); box-shadow: var(--icon-purple-shadow); }
[class*="__icon--orange"] { background: var(--icon-orange-bg); color: var(--icon-orange-fg); box-shadow: var(--icon-orange-shadow); }
[class*="__icon--red"]    { background: var(--icon-red-bg);    color: var(--icon-red-fg);    box-shadow: var(--icon-red-shadow); }
[class*="__icon--teal"]   { background: var(--icon-teal-bg);   color: var(--icon-teal-fg);   box-shadow: var(--icon-teal-shadow); }

/* ── Icon Hover Colors ── activated by parent card hover */
.card:hover [class*="__icon--blue"],
.feature-card:hover [class*="__icon--blue"]     { background: var(--icon-blue-hover-bg);   color: var(--icon-blue-hover-fg);   box-shadow: var(--icon-blue-hover-shadow); }
.card:hover [class*="__icon--green"],
.feature-card:hover [class*="__icon--green"]    { background: var(--icon-green-hover-bg);  color: var(--icon-green-hover-fg);  box-shadow: var(--icon-green-hover-shadow); }
.card:hover [class*="__icon--purple"],
.feature-card:hover [class*="__icon--purple"]   { background: var(--icon-purple-hover-bg); color: var(--icon-purple-hover-fg); box-shadow: var(--icon-purple-hover-shadow); }
.card:hover [class*="__icon--orange"],
.feature-card:hover [class*="__icon--orange"]   { background: var(--icon-orange-hover-bg); color: var(--icon-orange-hover-fg); box-shadow: var(--icon-orange-hover-shadow); }
.card:hover [class*="__icon--red"],
.feature-card:hover [class*="__icon--red"]      { background: var(--icon-red-hover-bg);    color: var(--icon-red-hover-fg);    box-shadow: var(--icon-red-hover-shadow); }
.card:hover [class*="__icon--teal"],
.feature-card:hover [class*="__icon--teal"]     { background: var(--icon-teal-hover-bg);   color: var(--icon-teal-hover-fg);   box-shadow: var(--icon-teal-hover-shadow); }

/* Icon scale + rotate on card hover */
.card:hover .card__icon,
.feature-card:hover .card__icon,
.feature-card:hover .feature-card__icon,
.support-card:hover .support-card__icon {
  transform: scale(1.12) rotate(-3deg);
}

/* Smooth icon SVG transition */
.card__icon svg,
.feature-card__icon svg {
  transition: transform 0.35s var(--ease-spring);
}
.card:hover .card__icon svg,
.feature-card:hover .card__icon svg,
.feature-card:hover .feature-card__icon svg {
  transform: scale(1.05);
}

/* ── Section Title Pattern ── shared title/text styles for card-like elements */
[class*="__title"] {
  color: var(--color-secondary);
  line-height: 1.3;
}

[class*="__text"],
[class*="__desc"],
[class*="__description"] {
  color: var(--color-text-secondary);
  line-height: 1.75;
}


/* ===========================================
   5. HEADER
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 0 rgba(0,105,166,0.06), 0 4px 24px rgba(15, 40, 50, 0.08);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.header__brand img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.header__logo {
  height: 36px;
  width: auto;
}

.header__wordmark {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__cta {
  display: inline-flex;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__item {
  position: relative;
}

.nav__item--dropdown {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.nav__link--dropdown {
  cursor: pointer;
}

/* Chevron Icon */
.icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.icon--chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__item--dropdown:hover .icon--chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
}

.nav__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__link {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.dropdown__link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger__icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.hamburger__icon--close {
  display: none;
}

.hamburger.active .hamburger__icon--open {
  display: none;
}

.hamburger.active .hamburger__icon--close {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-white);
  padding: var(--space-6);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  list-style: none;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav__item--dropdown {
  position: relative;
}

.mobile-nav__toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-dropdown {
  display: none;
  padding-left: var(--space-6);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown__link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.mobile-nav__cta {
  margin-top: var(--space-6);
}


/* ===========================================
   6. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.32s var(--ease-smooth);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.01em;
  position: relative;
  isolation: isolate;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #0069a6 0%, #005080 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 105, 166, 0.32),
              0 1px 3px rgba(0, 105, 166, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #005080 0%, #163760 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 105, 166, 0.40),
              0 2px 8px rgba(0, 105, 166, 0.22);
}

/* Accent / coral CTA — ps_accent #FF8956 */
.btn--accent {
  background: linear-gradient(135deg, #ff8956 0%, #e8703e 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 137, 86, 0.38),
              0 1px 3px rgba(255, 137, 86, 0.2);
}

.btn--accent:hover {
  background: linear-gradient(135deg, #e8703e 0%, #cc5c2a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 137, 86, 0.46),
              0 2px 8px rgba(255, 137, 86, 0.28);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border: 1.5px solid rgba(0, 105, 166, 0.25);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.btn--secondary:hover {
  background-color: var(--color-primary-light);
  border-color: rgba(0, 105, 166, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 105, 166, 0.12);
}

.btn--dark {
  background-color: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.btn--dark:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-base);
  font-weight: 700;
}

.btn--sm {
  padding: 8px 20px;
  font-size: var(--text-xs);
}

.btn--full,
.btn--block {
  width: 100%;
}

.btn--icon {
  gap: var(--space-2);
}

.btn--icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ===========================================
   7. BADGES
   =========================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  line-height: 1.5;
}

.badge--primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.badge--success {
  background-color: #E7F6EE;
  color: #16a34a;
}

.badge--warning {
  background-color: #FEF3E2;
  color: #ea580c;
}


/* ===========================================
   8. CARDS
   =========================================== */
/* .card base: inherits from shared base in §4b */
.card {
  padding: var(--space-8);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(248,251,255,0.2) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.008);
}

.card:hover::after {
  opacity: 1;
}

.card:active {
  transform: translateY(-2px) scale(1);
}

.card--flat {
  border: none;
  box-shadow: var(--shadow-sm);
}

.card--flat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* .card__icon: base layout from §4b, only unique props here */
.card__icon {
  margin-bottom: var(--space-5);
  font-size: 24px;
  transition: var(--icon-transition), background 0.3s var(--ease-spring), color 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}

/* Icon color variants: handled by shared [class*="__icon--*"] in §4b */

.card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
  line-height: 1.3;
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.2s ease, color 0.2s ease;
}

.card__link:hover {
  gap: var(--space-3);
  color: var(--color-accent);
}

.card__strip {
  height: 4px;
  width: calc(100% + var(--space-8) * 2);
  margin: calc(var(--space-8) * -1) calc(var(--space-8) * -1) var(--space-6);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.card__strip--primary {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.card__strip--success {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.card__strip--warning {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}


/* ===========================================
   9. FEATURE CARDS
   =========================================== */
/* .feature-card: inherits from shared base in §4b */
.feature-card {
  padding: var(--space-10);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(0, 105, 166, 0.14);
}

.feature-card:hover::before {
  opacity: 0;
}

/* .feature-card__icon: base layout from §4b, unique props only */
.feature-card__icon {
  margin-bottom: var(--space-6);
  font-size: 26px;
  transition: var(--icon-transition), background 0.3s var(--ease-spring), color 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Icon color variants + hover: handled by shared [class*="__icon--*"] in §4b */

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
  line-height: 1.3;
}

.feature-card__description,
.feature-card__text,
.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.75;
}


/* ===========================================
   10. HERO SECTIONS
   =========================================== */
.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding-top: calc(var(--header-height) + clamp(1rem, 2vw, 2rem));
  padding-bottom: clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .container {
  width: 100%;
}

.hero--centered {
  text-align: center;
}

.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* Full-width content — no column constraint */
.hero__content {
  width: 100%;
  max-width: 100%;
}

.hero--centered .hero__content {
  margin-left: auto;
  margin-right: auto;
}

.hero__title {
  font-size: var(--text-7xl);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: var(--space-8);
  max-width: 100%;
  color: var(--color-secondary);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero--centered .hero__title {
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.75vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  max-width: 680px;
}

.hero--centered .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-2);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.hero--centered .hero__actions {
  justify-content: center;
}

.hero__visual {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-3xl);
  box-shadow: 0 32px 100px rgba(15, 23, 42, 0.08), 0 8px 32px rgba(0, 105, 166, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  display: block;
}

/* Social proof stat row inside hero */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.hero--centered .hero__social-proof {
  justify-content: center;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__proof-item strong {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__proof-item span {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__proof-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(15,40,50,0.12), transparent);
  flex-shrink: 0;
}

.page-spacer {
  height: var(--header-height);
}


/* ===========================================
   11. SECTION HEADERS
   =========================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(3rem, 4vw, 4.5rem);
}

.section-header__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
}

.section-header__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

/* Accent underline decoration */
.section-header__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: var(--space-5) auto 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
}

.section-header__text,
.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.75;
  text-wrap: balance;
}


/* ===========================================
   12. DASHBOARD MOCK
   =========================================== */
.dashboard-mock {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.dashboard-mock__topbar {
  background: var(--color-bg-light);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-border-light);
}

.dashboard-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-mock__dot--red { background-color: #ef4444; }
.dashboard-mock__dot--yellow { background-color: #f59e0b; }
.dashboard-mock__dot--green { background-color: #22c55e; }

.dashboard-mock__title-bar {
  height: 10px;
  width: 120px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin-left: auto;
}

.dashboard-mock__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

.dashboard-mock__sidebar {
  background: var(--color-bg-light);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.dashboard-mock__sidebar-item {
  height: 12px;
  background: var(--color-border);
  border-radius: var(--radius-sm);
}

.dashboard-mock__sidebar-item:nth-child(1) { width: 80%; }
.dashboard-mock__sidebar-item:nth-child(2) { width: 65%; }
.dashboard-mock__sidebar-item:nth-child(3) { width: 90%; }
.dashboard-mock__sidebar-item:nth-child(4) { width: 70%; }
.dashboard-mock__sidebar-item:nth-child(5) { width: 55%; }

.dashboard-mock__sidebar-item--active {
  background: var(--color-primary);
  opacity: 0.7;
}

.dashboard-mock__main {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.dashboard-mock__row {
  display: flex;
  gap: var(--space-4);
}

.dashboard-mock__widget {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border: 1px solid var(--color-border-light);
}

.dashboard-mock__widget--full {
  width: 100%;
}

.dashboard-mock__widget-header {
  height: 10px;
  width: 60%;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.dashboard-mock__bar {
  height: 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.dashboard-mock__bar--blue { background-color: var(--color-primary); opacity: 0.6; }
.dashboard-mock__bar--green { background-color: #22c55e; opacity: 0.5; }
.dashboard-mock__bar--purple { background-color: var(--color-primary); opacity: 0.5; }
.dashboard-mock__bar--teal { background-color: #14b8a6; opacity: 0.5; }
.dashboard-mock__bar--orange { background-color: #f59e0b; opacity: 0.5; }

.dashboard-mock__table-row {
  height: 12px;
  background: #f0f2f5;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.dashboard-mock__table-row:nth-child(odd) { width: 100%; }
.dashboard-mock__table-row:nth-child(2) { width: 90%; }
.dashboard-mock__table-row:nth-child(4) { width: 80%; }
.dashboard-mock__table-row:nth-child(6) { width: 85%; }


/* ===========================================
   13. ROLE TABS
   =========================================== */
.role-tabs {
  /* Container for role-based tab content */
}

.role-tabs__nav {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.role-tabs__btn {
  padding: 12px 24px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-bg-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.role-tabs__btn:hover,
.role-tabs__btn--active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.role-tabs__content {
  position: relative;
}

.role-content {
  display: none;
}

.role-content--active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.role-content__text,
.role-content__visual {
  /* Standard content areas */
}

.role-content__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-secondary);
}

.role-content__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.role-content__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}

.role-content__features li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.role-content__features li svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.role-content__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}


/* ===========================================
   14. COMPARISON TABLE
   =========================================== */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead th {
  background: var(--color-bg-dark);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  text-align: left;
  font-size: var(--text-sm);
}

.comparison-table thead th:first-child {
  border-top-left-radius: var(--radius-lg);
}

.comparison-table thead th:last-child {
  border-top-right-radius: var(--radius-lg);
}

.comparison-table tbody td {
  background: var(--color-bg-white);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-sm);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius-lg);
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius-lg);
}

.comparison-table__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
}

.comparison-table__cross {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
}


/* ===========================================
   15. STATS
   =========================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.stat {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
}

.stat__number {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

/* Bold colored stat numbers — ref-layout-2 inspired */
.stat__number--blue {
  background: linear-gradient(135deg, #0069a6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__number--coral {
  background: linear-gradient(135deg, #ff8956 0%, #ee5a24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* Stat Cards (legacy) */
.stat-card {
  text-align: center;
  padding: var(--space-9) var(--space-8);
  background: var(--card-bg);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring);
}
.stat-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.stat-card__title { font-size: var(--text-2xl); font-weight: 700; color: var(--color-secondary); margin-bottom: var(--space-2); }
.stat-card__description { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* ===========================================
   RESULTS SECTION — Modern Advanced
   =========================================== */
.results-section {
  position: relative;
  overflow: hidden;
  background: #070e1a;
  padding: 100px 0 110px;
}
.results-section__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.results-section__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.results-section__bg-orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,105,166,0.18) 0%, transparent 70%);
  top: -120px; left: -160px;
}
.results-section__bg-orb--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,180,0,0.10) 0%, transparent 70%);
  bottom: -80px; right: -120px;
}
.results-section__container { position: relative; z-index: 1; }

/* Header */
.results-section__header { text-align: center; margin-bottom: 64px; }
.results-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(46,150,229,0.12);
  border: 1px solid rgba(46,150,229,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.results-section__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}
.results-section__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Metrics row */
.results-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 56px;
  backdrop-filter: blur(10px);
}
.results-metric { flex: 1; text-align: center; padding: 0 32px; }
.results-metric__number {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.results-metric__unit { font-size: 0.55em; font-weight: 700; opacity: 0.7; }
.results-metric__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.results-metric__divider { width: 1px; height: 56px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Outcome cards */
.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px 32px;
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.result-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.14);
}
.result-card:hover .result-card__glow { opacity: 1; }

/* Glow blobs */
.result-card__glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  top: -60px; left: -60px;
}
.result-card__glow--blue  { background: rgba(0,105,166,0.35); }
.result-card__glow--green { background: rgba(34,197,94,0.25); }
.result-card__glow--gold  { background: rgba(255,180,0,0.25); }

/* Icon wrap */
.result-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.result-card__icon-wrap--blue  { background: rgba(0,105,166,0.18); color: #4d9cc0; border: 1px solid rgba(0,105,166,0.3); }
.result-card__icon-wrap--green { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.result-card__icon-wrap--gold  { background: rgba(255,180,0,0.15);  color: #fbbf24; border: 1px solid rgba(255,180,0,0.25); }

/* Card body */
.result-card__body { flex: 1; }
.result-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.result-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.result-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 12px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
  .results-cards { grid-template-columns: 1fr; gap: 14px; }
  .results-metrics { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .results-metric__divider { width: 60px; height: 1px; }
}
@media (max-width: 600px) {
  .results-section { padding: 72px 0 80px; }
  .results-metrics { padding: 28px 20px; }
  .result-card { padding: 28px 24px 24px; }
}

/* ===========================================
   16. WORKFLOW STEPS
   =========================================== */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
}

.workflow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.workflow-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-heading);
  box-shadow: 0 6px 20px rgba(0, 105, 166, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.workflow-step:hover .workflow-step__number {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 105, 166, 0.4);
}

.workflow-step__title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-secondary);
}

.workflow-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.workflow-step__connector {
  display: none;
}


/* ===========================================
   17. FEATURE LIST
   =========================================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-list__item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.feature-list__item:hover {
  background-color: var(--color-bg-light);
}

.feature-list__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.feature-list__content {
  display: flex;
  flex-direction: column;
}

.feature-list__title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--color-secondary);
}

.feature-list__text,
.feature-list__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ===========================================
   18. TESTIMONIALS
   =========================================== */
/* .testimonial: inherits from shared base in §4b */
.testimonial {
  padding: var(--space-10);
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 105, 166, 0.12);
}

.testimonial__quote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-8);
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--color-primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-secondary);
}

.testimonial__role {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}


/* ===========================================
   19. CTA SECTION
   =========================================== */
.cta-section {
  background: linear-gradient(135deg, #0069a6 0%, #005080 40%, #163760 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-20) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ── CTA Split Layout (common component) ── */
.cta-section--split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  text-align: left;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem);
}

.cta-section--split::before,
.cta-section--split::after {
  display: none;
}

/* Decorative orbs */
.cta-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-section__orb--1 {
  top: -30%;
  left: -15%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
}
.cta-section__orb--2 {
  bottom: -30%;
  right: -15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(167,139,250,0.14) 0%, transparent 70%);
}

/* Left content column */
.cta-section__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow: hidden;
}

.cta-section--split .cta-section__title {
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 0;
}

.cta-section--split .cta-section__text {
  margin: 0;
  max-width: 480px;
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.cta-section--split .cta-section__actions {
  justify-content: flex-start;
  margin-top: var(--space-2);
}

/* Badge */
.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 14px;
  width: fit-content;
}
.cta-section__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 8px rgba(96,165,250,0.6);
  animation: ctaBadgePulse 2s ease-in-out infinite;
}
@keyframes ctaBadgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Trust row */
.cta-section__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: var(--space-2);
}
.cta-section__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* Right visual column */
.cta-section__right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section__visual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.cta-section__svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* CTA section — minimal outer padding */
.section--cta {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

/* ── CTA Split Responsive ── */
@media (max-width: 900px) {
  .cta-section--split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .cta-section--split .cta-section__actions {
    justify-content: center;
  }
  .cta-section__trust {
    justify-content: center;
  }
  .cta-section__badge {
    margin: 0 auto;
  }
  .cta-section__right {
    order: -1;
  }
  .cta-section__visual {
    max-width: 300px;
  }
  .cta-section--split .cta-section__text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-section__svg circle[r="3.5"],
  .cta-section__badge-dot {
    animation: none !important;
  }
}


/* ===========================================
   20. PRICING CARDS
   =========================================== */
/* .pricing-card: inherits from shared base in §4b */
.pricing-card {
  padding: var(--space-10);
  border-width: 1.5px;
  text-align: center;
}

.pricing-card:hover {
  border-color: rgba(0, 105, 166, 0.25);
}

.pricing-card--featured {
  border-color: rgba(0, 105, 166, 0.35);
  box-shadow: 0 24px 56px rgba(0, 105, 166, 0.15), 0 8px 16px rgba(15, 23, 42, 0.05);
  background: linear-gradient(160deg, #f8fbff 0%, #ffffff 60%);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-secondary);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.pricing-card__price {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
  font-family: var(--font-heading);
}

.pricing-card__price span {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-8);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 0;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.pricing-card__feature::before {
  content: '\2713';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}


/* ===========================================
   21. SUPPORT SECTION
   =========================================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* .support-card: inherits from shared base in §4b */
.support-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
}

/* .support-card__icon: base layout from §4b, unique props only */
.support-card__icon {
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
  margin: 0 auto var(--space-6);
  background: var(--icon-blue-bg);
  color: var(--color-primary);
  font-size: 30px;
  box-shadow: var(--icon-blue-shadow);
}


/* ===========================================
   22. INTEGRATIONS GRID
   =========================================== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* .integration-card: inherits from shared base in §4b */
.integration-card {
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.integration-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 105, 166, 0.18);
}

.integration-card__logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ecf6fb, #ecf6fb);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.1);
  transition: transform 0.3s var(--ease-spring);
}

.integration-card:hover .integration-card__logo {
  transform: scale(1.1);
}

.integration-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
}

.integration-card__description {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  text-align: center;
}


/* ===========================================
   23. FORM STYLES
   =========================================== */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px var(--space-5);
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(248, 251, 255, 0.7);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(100, 120, 140, 0.5);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(0, 105, 166, 0.3);
  background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 105, 166, 0.1), 0 2px 8px rgba(0, 105, 166, 0.08);
  background: #fff;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.65;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237a8ea0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}


/* ===========================================
   24. ACCORDION (Modernized)
   =========================================== */
.accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion__item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-3);
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.3s var(--ease-spring);
  overflow: hidden;
}

.accordion__item:hover {
  border-color: rgba(0, 105, 166, 0.18);
  box-shadow: 0 4px 20px rgba(0, 105, 166, 0.07);
  transform: translateY(-1px);
}

.accordion__item.active {
  border-color: rgba(0, 105, 166, 0.28);
  box-shadow: 0 6px 24px rgba(0, 105, 166, 0.1);
  transform: none;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
}

.accordion__trigger:hover {
  color: var(--color-primary);
}

.accordion__trigger .accordion__title {
  flex: 1;
}

.accordion__trigger .accordion__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion__trigger .accordion__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-light);
  transition: stroke 0.3s ease;
}

.accordion__item.active .accordion__trigger .accordion__icon {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.accordion__item.active .accordion__trigger .accordion__icon svg {
  stroke: #fff;
}

/* Hide the old ::after +/- indicator */
.accordion__trigger::after {
  display: none;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion__content-inner,
.accordion__content > p {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}


/* ===========================================
   25. INLINE FORM (Newsletter)
   =========================================== */
.inline-form {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.inline-form__inner {
  display: flex;
  gap: var(--space-3);
  width: 100%;
}

.inline-form .form-input {
  flex: 1;
}


/* ===========================================
   26. DIVIDER
   =========================================== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-12) 0;
  border: none;
}


/* ===========================================
   27. FOOTER — 2026 Modern Split Layout
   =========================================== */

/* ── Base ── */
.footer-v2 {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0,105,166,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 15%, rgba(99,102,241,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,80,128,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 70% 60%, rgba(37,99,235,0.06) 0%, transparent 50%),
    linear-gradient(168deg, #070e1a 0%, #0b1929 20%, #0d2240 50%, #0a1a30 80%, #060d18 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Ambient mesh glow overlay */
.footer-v2__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 5% 0%, rgba(0,105,166,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 92% 85%, rgba(99,102,241,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 25% 20% at 50% 30%, rgba(37,99,235,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 20% 80%, rgba(0,105,166,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-v2 .container { position: relative; z-index: 1; }

/* ── Top CTA Band — Glassmorphic Newsletter ── */
.footer-v2__cta-band {
  position: relative;
  z-index: 1;
  padding: var(--space-1) 0 0;
}

.footer-v2__cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 60%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,105,166,0.7), rgba(46,150,229,0.9), rgba(0,105,166,0.7), transparent);
  border-radius: 2px;
}

.footer-v2__cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  padding: var(--space-10) var(--space-10);
  margin: var(--space-10) 0 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.footer-v2__cta-left {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  flex: 1;
  min-width: 0;
}

.footer-v2__cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,105,166,0.25) 0%, rgba(46,150,229,0.15) 100%);
  border: 1px solid rgba(0,105,166,0.2);
  color: rgba(180,220,255,0.9);
}

.footer-v2__cta-content { flex: 1; min-width: 0; }

.footer-v2__cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(0,105,166,0.2);
  border: 1px solid rgba(0,105,166,0.3);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(180,220,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.footer-v2__cta-title {
  font-size: var(--text-xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: var(--space-1);
}

.footer-v2__cta-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 400px;
}

.footer-v2__cta-form {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  align-items: stretch;
}

.footer-v2__input--name {
  width: 180px;
}

.footer-v2__input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-v2__input-icon {
  position: absolute;
  left: 14px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

.footer-v2__input {
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: var(--text-sm);
  width: 260px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(8px);
}

.footer-v2__input::placeholder { color: rgba(255,255,255,0.5); }

.footer-v2__input:focus {
  border-color: rgba(0,105,166,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.12);
}

.footer-v2__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.4rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s var(--ease-spring), box-shadow 0.25s ease;
  white-space: nowrap;
}

.footer-v2__cta-btn:hover {
  background: #0078bf;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,105,166,0.35);
}

.footer-v2__cta-btn svg {
  transition: transform 0.2s ease;
}

.footer-v2__cta-btn:hover svg {
  transform: translateX(2px) rotate(-12deg);
}

/* ── Main Body — Split Layout ── */
.footer-v2__body {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: var(--space-16);
  padding: var(--space-14) 0 var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Brand Column ── */
.footer-v2__brand {
  display: flex;
  flex-direction: column;
}

.footer-v2__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-v2__logo:hover { opacity: 0.85; }

.footer-v2__logo-icon {
  height: 36px;
  width: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  border-radius: 8px;
}

.footer-v2__wordmark {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.footer-v2__desc {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-v2__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.footer-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-v2__badge:hover {
  border-color: rgba(0,105,166,0.3);
  color: rgba(255,255,255,0.9);
}

.footer-v2__badge svg { opacity: 0.8; }

/* Social icons */
.footer-v2__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.footer-v2__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.25s var(--ease-spring),
              box-shadow 0.25s ease;
}

.footer-v2__social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,105,166,0.3);
}

/* ── Navigation Grid — 4 equal columns ── */
.footer-v2__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.footer-v2__col { display: flex; flex-direction: column; }

.footer-v2__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  position: relative;
}

.footer-v2__heading-icon {
  opacity: 0.7;
  flex-shrink: 0;
}

.footer-v2__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: rgba(0,105,166,0.5);
  border-radius: 2px;
}

.footer-v2__heading--mt {
  margin-top: var(--space-8);
}

.footer-v2__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-v2__list li a {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-v2__list li a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* ── Bottom Bar — Split 3-column ── */
.footer-v2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0 var(--space-8);
}

.footer-v2__bottom-left,
.footer-v2__bottom-center,
.footer-v2__bottom-right {
  display: flex;
  align-items: center;
}

.footer-v2__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.footer-v2__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
  justify-content: center;
}

.footer-v2__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  text-decoration: none;
  padding: 0 var(--space-2);
}

.footer-v2__legal a:hover { color: rgba(255,255,255,0.9); }

.footer-v2__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.footer-v2__back-top {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-v2__back-top:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ── Footer v2 Responsive — 1024px ── */
@media (max-width: 1024px) {
  .footer-v2__cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-8);
  }
  .footer-v2__cta-form { width: 100%; }
  .footer-v2__input { flex: 1; width: auto; }
  .footer-v2__input--name { width: auto; }
  .footer-v2__body {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .footer-v2__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-10);
  }
}

/* ── Footer v2 Responsive — 768px ── */
@media (max-width: 768px) {
  .footer-v2__cta-card {
    padding: var(--space-6);
    margin: var(--space-6) 0 0;
    border-radius: var(--radius-lg);
  }
  .footer-v2__cta-form {
    flex-direction: column;
    gap: var(--space-3);
  }
  .footer-v2__cta-icon-wrap { display: none; }
  .footer-v2__input { width: 100%; }
  .footer-v2__input--name { width: 100%; }
  .footer-v2__body {
    padding: var(--space-10) 0 var(--space-8);
  }
  .footer-v2__nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-8);
  }
  .footer-v2__desc { max-width: 100%; }
  .footer-v2__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }
  .footer-v2__bottom-left,
  .footer-v2__bottom-center,
  .footer-v2__bottom-right {
    justify-content: center;
  }
  .footer-v2__legal { justify-content: center; }
}

/* ── Footer v2 Responsive — 480px ── */
@media (max-width: 480px) {
  .footer-v2__nav {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .footer-v2__social {
    justify-content: center;
  }
  .footer-v2__brand {
    align-items: center;
    text-align: center;
  }
  .footer-v2__badges { justify-content: center; }
}

/* Old .footer removed — replaced by .footer-v2 (§27) */
.footer { display: none; }

/* ── Grid Responsive — 480px ── */
@media (max-width: 480px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}


/* ===========================================
   28. ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ===========================================
   RESPONSIVE BREAKPOINTS
   Component-scoped responsive rules are kept
   near their component. Global layout rules below.
   =========================================== */

/* ===========================================
   29. RESPONSIVE -- 1024px
   =========================================== */
@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  .hero {
    min-height: 85vh;
  }

  .hero__title {
    font-size: var(--text-6xl);
  }

  .section-header__title {
    font-size: var(--text-3xl);
  }

  .cta-section__title {
    font-size: var(--text-3xl);
  }

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

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

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

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

  .workflow-steps::before {
    display: none;
  }

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


/* ===========================================
   30. RESPONSIVE -- 768px
   =========================================== */
@media (max-width: 768px) {
  :root {
    --space-20: 3.5rem;
    --space-24: 4rem;
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }

  .hero {
    min-height: auto;
  }

  .hero__social-proof {
    gap: var(--space-4);
    margin-top: var(--space-8);
  }

  .hero__proof-divider {
    display: none;
  }

  .section-header__title {
    font-size: var(--text-2xl);
  }

  .cta-section__title {
    font-size: var(--text-2xl);
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  /* Header */
  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  /* Grids */
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .workflow-steps {
    grid-template-columns: 1fr;
  }

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

  .role-content--active {
    grid-template-columns: 1fr;
  }

  /* Comparison table */
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: var(--space-3);
    font-size: var(--text-xs);
  }

  /* Dashboard mock */
  .dashboard-mock__body {
    grid-template-columns: 1fr;
  }
}


/* ===========================================
   31. RESPONSIVE -- 480px
   =========================================== */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .inline-form__inner {
    flex-direction: column;
  }

  .inline-form .btn {
    width: 100%;
  }
}


/* ===========================================
   32. TRUST BAR — 2026 Premium Marquee
   =========================================== */
.trust-bar {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f8fbff 100%);
  border-top: 1px solid rgba(15,40,50,0.07);
  border-bottom: 1px solid rgba(15,40,50,0.07);
  overflow: hidden;
  position: relative;
}

/* Subtle dot-grid texture */
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,105,166,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* ── Header Row ── */
.trust-bar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

/* Stars + rating */
.trust-bar__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.trust-bar__rating {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
  margin-left: var(--space-2);
  letter-spacing: -0.01em;
}

/* Center label */
.trust-bar__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.015em;
  margin: 0;
  text-align: center;
}

/* Dot separator */
.trust-bar__divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  flex-shrink: 0;
}

/* "100+ Clinics Active" pill */
.trust-bar__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 105, 166, 0.08);
  border: 1px solid rgba(0, 105, 166, 0.18);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-bar__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.1); }
}

/* ── Marquee Wrapper with edge fades ── */
.trust-bar__marquee-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.trust-bar__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar__fade--left {
  left: 0;
  background: linear-gradient(to right,
    #f8fbff 0%,
    rgba(248, 251, 255, 0) 100%);
}

.trust-bar__fade--right {
  right: 0;
  background: linear-gradient(to left,
    #f8fbff 0%,
    rgba(248, 251, 255, 0) 100%);
}

.trust-bar__marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: var(--space-2) 0;
}

/* ── Tracks ── */
.trust-bar__track {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: max-content;
  flex-shrink: 0;
}

.trust-bar__track--fwd {
  animation: marquee-fwd 28s linear infinite;
}

.trust-bar__track--rev {
  animation: marquee-rev 34s linear infinite;
}

.trust-bar__marquee:hover .trust-bar__track {
  animation-play-state: paused;
}

@keyframes marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Logo Chips ── */
.trust-bar__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  background: var(--card-bg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-spring);
  letter-spacing: -0.01em;
  cursor: default;
}

.trust-bar__chip:hover {
  box-shadow: 0 6px 20px rgba(0, 105, 166, 0.13), 0 2px 6px rgba(15,40,50,0.05);
  border-color: rgba(0, 105, 166, 0.22);
  transform: translateY(-2px);
}

/* Alt row chips — slightly different tint */
.trust-bar__chip--alt {
  background: rgba(240, 247, 255, 0.85);
  border-color: rgba(0, 105, 166, 0.09);
  color: var(--color-text);
}

/* Colored status dots inside chips */
.trust-bar__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-bar__chip-dot--blue   { background: var(--color-primary); box-shadow: 0 0 0 2px rgba(0,105,166,0.2); }
.trust-bar__chip-dot--green  { background: #22c55e; box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
.trust-bar__chip-dot--purple { background: var(--color-primary); box-shadow: 0 0 0 2px rgba(139,92,246,0.2); }
.trust-bar__chip-dot--teal   { background: #14b8a6; box-shadow: 0 0 0 2px rgba(20,184,166,0.2); }
.trust-bar__chip-dot--orange { background: #f59e0b; box-shadow: 0 0 0 2px rgba(245,158,11,0.2); }

@media (max-width: 768px) {
  .trust-bar {
    padding: var(--space-12) 0;
  }
  .trust-bar__header {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }
  .trust-bar__divider-dot {
    display: none;
  }
  .trust-bar__fade {
    width: 60px;
  }
}


/* ===========================================
   33. ICON TABS (Interactive Platform Tabs)
   =========================================== */
.icon-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.icon-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-base);
  background: none;
  border: none;
}

.icon-tab__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition-base);
}

.icon-tab__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

.icon-tab:hover .icon-tab__icon {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.icon-tab:hover .icon-tab__label {
  color: var(--color-primary);
}

.icon-tab.active .icon-tab__icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.3);
  transform: scale(1.1);
}

.icon-tab.active .icon-tab__label {
  color: var(--color-primary);
  font-weight: 700;
}


/* ===========================================
   34. TAB PANELS
   =========================================== */
.tab-panels {
  position: relative;
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeInPanel 0.4s ease;
}

.tab-panel.active {
  display: block;
}

.tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.tab-panel__info {
  display: flex;
  flex-direction: column;
}

.tab-panel__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.tab-panel__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-secondary);
}

.tab-panel__text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.tab-panel__visual {
  /* Container for visual card */
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================================
   35. CHECK LIST
   =========================================== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  list-style: none;
}

.check-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
}

.check-item::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}


/* ===========================================
   36. SECTION LABEL (used with section__label)
   =========================================== */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
}

.section__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  flex-shrink: 0;
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.section__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ===========================================
   37. FEATURED TESTIMONIAL
   =========================================== */
.testimonial--featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border: none;
}

.testimonial--featured .testimonial__quote,
.testimonial--featured .testimonial__text,
.testimonial--featured .testimonial__name {
  color: #fff;
}

.testimonial--featured .testimonial__role {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial--featured .testimonial__quote::before {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial__quote-mark {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
  opacity: 0.5;
}

.testimonial--featured .testimonial__quote-mark {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial__text {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.testimonial__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.testimonial__stat {
  display: flex;
  flex-direction: column;
}

.testimonial__stat-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
}

.testimonial__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}


/* ===========================================
   38. AWARDS ROW
   =========================================== */
.awards-row {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  padding: var(--space-4) 0;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.award-badge__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-badge__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
}


/* ===========================================
   39. FLOATING ELEMENTS (Hero)
   =========================================== */
.float-element {
  position: absolute;
  border-radius: var(--radius-xl);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-5);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  border: 1px solid var(--color-border-light);
  white-space: nowrap;
}

.float-element--1 {
  top: 12%;
  right: -16px;
  animation-delay: 0s;
}

.float-element--2 {
  bottom: 20%;
  left: -20px;
  animation-delay: 2s;
}

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


/* ===========================================
   40. CHAT WIDGET — Modern 2026 Design
   =========================================== */

/* Container */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}

/* ── Floating Action Button ─────────────────── */
.chat-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a85c2 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 16px rgba(0, 105, 166, 0.35),
    0 0 0 0 rgba(0, 105, 166, 0.3);
  transition: all 0.4s var(--ease-spring);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.chat-widget__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.chat-widget__btn:hover {
  transform: scale(1.12);
  box-shadow:
    0 8px 32px rgba(0, 105, 166, 0.45),
    0 0 0 0 rgba(0, 105, 166, 0);
}

.chat-widget__btn:active {
  transform: scale(0.95);
}

/* Pulse ring animation on button */
.chat-widget__btn--pulse {
  animation: chatPulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes chatPulse {
  0% { box-shadow: 0 4px 16px rgba(0,105,166,0.35), 0 0 0 0 rgba(0,105,166,0.35); }
  50% { box-shadow: 0 4px 16px rgba(0,105,166,0.35), 0 0 0 14px rgba(0,105,166,0); }
  100% { box-shadow: 0 4px 16px rgba(0,105,166,0.35), 0 0 0 0 rgba(0,105,166,0); }
}

/* Icon transitions inside button */
.chat-widget__btn .cw-icon {
  transition: transform 0.35s var(--ease-spring), opacity 0.25s ease;
  position: absolute;
}

.chat-widget__btn .cw-icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.chat-widget--open .chat-widget__btn .cw-icon--chat {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.chat-widget--open .chat-widget__btn .cw-icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.chat-widget--open .chat-widget__btn {
  background: var(--color-primary-dark);
}

/* Notification badge */
.chat-widget__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  animation: badgePop 0.4s var(--ease-spring) both;
}

@keyframes badgePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ── Chat Panel ─────────────────────────────── */
.chat-widget__panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-height: 560px;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(22, 55, 96, 0.06),
    0 24px 80px rgba(15, 23, 42, 0.14),
    0 8px 24px rgba(0, 105, 166, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s ease;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.chat-widget--open .chat-widget__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* ── Panel Header ───────────────────────────── */
.chat-widget__header {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 18px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.chat-widget__header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.chat-widget__header-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.chat-widget__header-sub {
  font-size: var(--text-sm);
  opacity: 0.85;
  font-weight: 400;
}

.chat-widget__header-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: var(--text-xs);
  opacity: 0.9;
}

.chat-widget__header-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.chat-widget__header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-widget__header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  flex-shrink: 0;
}

/* ── Messages Area ─────────────────────────── */
.chat-widget__messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 200px;
  max-height: 320px;
  scroll-behavior: smooth;
}

.chat-widget__messages::-webkit-scrollbar { width: 4px; }
.chat-widget__messages::-webkit-scrollbar-track { background: transparent; }
.chat-widget__messages::-webkit-scrollbar-thumb { background: var(--color-border-dark); border-radius: 4px; }

/* ── Message Bubbles ───────────────────────── */
.chat-widget__msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
  animation: msgFadeIn 0.35s ease both;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-widget__msg--bot {
  align-self: flex-start;
}

.chat-widget__msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-widget__msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a85c2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-widget__msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: var(--text-sm);
  line-height: 1.55;
  word-break: break-word;
}

.chat-widget__msg--bot .chat-widget__msg-bubble {
  background: var(--color-bg);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}

.chat-widget__msg--user .chat-widget__msg-bubble {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a85c2 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Card-type message (pricing, summary) */
.chat-widget__msg--card .chat-widget__msg-bubble {
  padding: 0;
  background: none;
  max-width: 100%;
  overflow: hidden;
}

.chat-widget__msg--card {
  max-width: 100%;
}

/* ── Typing Indicator ──────────────────────── */
.chat-widget__typing .chat-widget__msg-bubble {
  padding: 12px 18px;
}

.chat-widget__typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.chat-widget__typing-dots span {
  width: 7px;
  height: 7px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.chat-widget__typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-widget__typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ── Quick Replies ─────────────────────────── */
.chat-widget__quick-replies {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px;
  border-top: 1px solid var(--color-border-light);
}

.chat-widget__qr-btn {
  padding: 7px 14px;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-blue-50);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  white-space: nowrap;
}

.chat-widget__qr-btn:hover {
  background: var(--color-blue-100);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

/* ── Dynamic Content Area ──────────────────── */
.chat-widget__dynamic {
  display: none;
  padding: 0 16px 12px;
  max-height: 260px;
  overflow-y: auto;
}

/* ── Chat Input Area ───────────────────────── */
.chat-widget__input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-white);
}

.chat-widget__chat-input {
  flex: 1;
  padding: 10px 14px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.chat-widget__chat-input::placeholder {
  color: var(--color-text-muted);
}

.chat-widget__chat-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.1);
}

.chat-widget__send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a85c2 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.chat-widget__send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 105, 166, 0.3);
}

.chat-widget__send-btn:active {
  transform: scale(0.92);
}

/* ── Panel Footer / Branding ────────────────── */
.chat-widget__footer {
  padding: 10px 24px;
  text-align: center;
  font-size: 11px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

/* ── Date Picker ───────────────────────────── */
.cw-datepicker__title,
.cw-timepicker__title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.cw-datepicker__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.cw-datepicker__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.cw-datepicker__day:hover {
  border-color: var(--color-primary);
  background: var(--color-blue-50);
}

.cw-datepicker__day--selected {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff;
}

.cw-datepicker__day--selected .cw-datepicker__day-name,
.cw-datepicker__day--selected .cw-datepicker__day-month {
  color: rgba(255, 255, 255, 0.8);
}

.cw-datepicker__day-name {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.cw-datepicker__day-num {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
}

.cw-datepicker__day-month {
  font-size: 10px;
  color: var(--color-text-muted);
}

/* ── Time Picker ───────────────────────────── */
.cw-timepicker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.cw-timepicker__slot {
  padding: 9px 8px;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 500;
  text-align: center;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cw-timepicker__slot:hover {
  border-color: var(--color-primary);
  background: var(--color-blue-50);
}

.cw-timepicker__slot--selected {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff;
}

/* ── Pricing Card (in chat) ────────────────── */
.cw-pricing {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  font-size: var(--text-xs);
}

.cw-pricing__tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 6px;
}

.cw-pricing__desc {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cw-pricing__plans {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-pricing__plan {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  position: relative;
}

.cw-pricing__plan--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.cw-pricing__badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.cw-pricing__plan-name {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.cw-pricing__plan-price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
}

.cw-pricing__plan-price span {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
}

.cw-pricing__features {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cw-pricing__features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-secondary);
}

.cw-pricing__features li svg {
  color: #059669;
  flex-shrink: 0;
}

.cw-pricing__link {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.cw-pricing__link:hover {
  text-decoration: underline;
}

/* ── Demo Summary Card ─────────────────────── */
.cw-summary {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}

.cw-summary__icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #059669;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.cw-summary__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: #065f46;
  margin-bottom: 12px;
}

.cw-summary__details {
  text-align: left;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.cw-summary__row {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid #f0fdf4;
}

.cw-summary__row:last-child {
  border-bottom: none;
}

.cw-summary__row strong {
  color: var(--color-text);
  margin-right: 4px;
}

.cw-summary__note {
  font-size: 11px;
  color: #065f46;
  line-height: 1.5;
  opacity: 0.8;
}

/* ── Mobile Responsive ─────────────────────── */
@media (max-width: 480px) {
  .chat-widget__panel {
    width: calc(100vw - 16px);
    right: -16px;
    bottom: 72px;
    max-height: calc(100dvh - 120px);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }
  .cw-datepicker__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cw-timepicker__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===========================================
   41. GRADIENT & MESH BACKGROUNDS
   =========================================== */
.section--bg-tinted {
  background-color: #f0f5fb;
}

.section--bg-mesh {
  background:
    radial-gradient(ellipse 70% 40% at 15% 10%, rgba(0, 105, 166, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(22, 55, 96, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(77, 156, 192, 0.03) 0%, transparent 70%),
    var(--color-bg);
}

.text-gradient {
  background: linear-gradient(135deg, #0069a6 0%, #4d9cc0 50%, #4d9cc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 20px 7px 10px;
  background: linear-gradient(135deg, rgba(236,246,251,0.96), rgba(223,235,242,0.96));
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  border: 1.5px solid rgba(0, 105, 166, 0.18);
  box-shadow: 0 2px 10px rgba(0, 105, 166, 0.10);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 12.5px;
}

/* Hero primary CTA — ps_accent coral orange for max conversion impact */
.btn--gradient {
  background: linear-gradient(135deg, #ff8956 0%, #e8703e 50%, #d4622c 100%);
  background-size: 250% 250%;
  animation: gradientPulse 5s ease infinite;
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 137, 86, 0.40), 0 1px 4px rgba(255, 137, 86, 0.22);
}

.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 137, 86, 0.50), 0 4px 12px rgba(255, 137, 86, 0.32);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn--white:hover {
  background: var(--color-primary-light);
}


/* ===========================================
   42. STAT NUMBER COLORS
   =========================================== */
.stat__number--blue { color: var(--color-primary); }
.stat__number--coral { color: #FF4D3A; }
.stat__number--green { color: #22c55e; }
.stat__number--purple { color: var(--color-primary); }

.stat__number[data-count] {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.stat__number[data-count].counted {
  opacity: 1;
  transform: translateY(0);
}


/* Section 43 removed: .footer__social-icon, .footer__legal — dead code (old .footer is display:none) */


/* ===========================================
   44. ADDITIONAL RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .tab-panel__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .icon-tabs {
    gap: var(--space-2);
    flex-wrap: wrap;
  }

  .icon-tab__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .tab-panel__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .float-element {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

}

@media (max-width: 480px) {
  .icon-tab__label {
    display: none;
  }

  .testimonial__stats {
    gap: var(--space-4);
  }
}


/* ===========================================
   45. HARD TRUTH CARDS
   =========================================== */
.hard-truth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.hard-truth-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hard-truth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hard-truth-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.hard-truth-card:hover::before {
  opacity: 1;
}

.hard-truth-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.hard-truth-card__icon--orange {
  background: #FEF3E2;
  color: #f59e0b;
}

.hard-truth-card__icon--green {
  background: #E7F6EE;
  color: #22c55e;
}

.hard-truth-card__icon--coral {
  background: #FEE8E8;
  color: #ef4444;
}

.hard-truth-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.hard-truth-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}




/* ===========================================
   46. THE SHIFT SECTION (legacy — see new .shift-card styles below)
   =========================================== */

.shift-connectors {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.shift-connector {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-fast);
}

.shift-connector:hover {
  background: rgba(0, 105, 166, 0.04);
}

.shift-connector__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0, 105, 166, 0.15);
}

.shift-connector__dot--orange {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.shift-connector__dot--green {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.shift-connector__dot--purple {
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(22, 55, 96, 0.15);
}

.shift-connector__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
}

.shift-connector__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Workflow Visual */
.shift-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--color-bg-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  width: 100%;
  max-width: 320px;
}

.workflow-visual__node {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  width: 100%;
  transition: all var(--transition-base);
}

.workflow-visual__node--active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.25);
}

.workflow-visual__icon {
  font-size: 24px;
}

.workflow-visual__label {
  font-size: var(--text-sm);
  font-weight: 600;
}

.workflow-visual__line {
  width: 2px;
  height: 20px;
  background: var(--color-border);
  position: relative;
}

.workflow-visual__line::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-border);
}



/* ===========================================
   47. CORE OUTCOMES
   =========================================== */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.outcome-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.outcome-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.outcome-card__number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary-light);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(0,105,166,0.15), rgba(46,150,229,0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outcome-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.outcome-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ===========================================
   48. ROLE CARDS
   =========================================== */
.role-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.role-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), #0069a6);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.role-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px) scale(1.005);
  border-color: rgba(0, 105, 166, 0.14);
}

.role-card:hover::before {
  opacity: 1;
}

.role-card:hover .role-card__arrow {
  transform: translateX(6px);
  color: var(--color-primary);
}

.role-card:hover .role-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.role-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #dfebf2, #ecf6fb);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0,105,166,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.role-card__icon--orange {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  color: #d97706;
  box-shadow: 0 4px 14px rgba(245,158,11,0.18);
}

.role-card__icon--green {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  color: #16a34a;
  box-shadow: 0 4px 14px rgba(34,197,94,0.18);
}

.role-card__icon--purple {
  background: linear-gradient(135deg, #dfebf2, #ecf6fb);
  color: var(--color-secondary);
  box-shadow: 0 4px 14px rgba(139,92,246,0.18);
}

.role-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.role-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.role-card__arrow {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  margin-top: var(--space-5);
  transition: transform var(--transition-fast), color var(--transition-fast);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .role-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .role-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================================
   49. WHY PLATINUM (Dark Section)
   =========================================== */
/* ========================================================
   SVG SECTION BACKGROUND SYSTEM
   Shared utility for Meteor / Concentric Circle / Wave Line
   ======================================================== */
.svg-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.svg-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Lift all direct siblings above the SVG layer */
.svg-section-bg ~ * {
  position: relative;
  z-index: 1;
}

/* ── Meteor (transparent bg, diagonal streak lines) ──────
   Works as a subtle overlay on any existing bg-mesh hero */
.svg-bg--meteor {
  opacity: 0.55;
  mix-blend-mode: screen;          /* blends blue lines onto light hero */
}

/* ── Concentric Circle (dark navy fill) ─────────────────
   Used on why-platinum hero — flips text to white */
.hero--dark-svg .hero__title,
.hero--dark-svg .hero__subtitle {
  color: #fff;
}

.hero--dark-svg .hero__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero--dark-svg .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Wave Line (dark navy fill) ─────────────────────────
   Used on demo hero — already dark, aurora blends on top */
.svg-bg--wave {
  opacity: 0.9;
}

/* ========================================================
   Concentric Circle SVG background (index Why Platinum)
   ======================================================== */
/* Concentric Circle SVG background */
.why-platinum-section {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.why-platinum-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.why-platinum-bg__svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-platinum-section .container {
  position: relative;
  z-index: 1;
}

.why-platinum-layout {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.why-platinum-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-platinum-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  margin: 0 auto;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-base);
  font-weight: 500;
}

.why-feature svg {
  flex-shrink: 0;
}


/* ===========================================
   50. HEADER TOGGLE (Hamburger)
   =========================================== */
/* scrolled compact state */
.header.scrolled {
  box-shadow: 0 2px 20px rgba(15,40,50,0.10);
  border-bottom-color: transparent;
}

/* Make header always visible once scrolled (sticky, never hides) */
.header--peek-hidden {
  transform: translateY(-100%);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu link styles */
.mobile-menu__link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }

  .header__actions {
    display: none;
  }

}



/* ===========================================
   51. MEGA-MENU — 2026 Modern SaaS Navigation
   =========================================== */

/* ── Nav list ── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: static;
}

/* ── Nav links ── */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
  text-decoration: none;
  line-height: 1;
}

.nav-link:hover,
.nav-item.is-open > .nav-link {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-link--ghost {
  color: var(--color-text-secondary);
  font-weight: 500;
}
.nav-link--ghost:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Chevron */
.nav-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
  color: var(--color-text-light);
}
.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
}

/* ── Full-width mega-menu backdrop ── */
.mega-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: rgba(9, 25, 35, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out);
  z-index: 997;
}
.mega-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Mega Menu Panel ── */
.mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-top: 1px solid rgba(220, 227, 235, 0.6);
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.10),
    0 8px 24px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(15, 23, 42, 0.03);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.32s var(--ease-out),
    visibility 0.28s;
  z-index: 998;
  pointer-events: none;
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* ── Mega menu inner layout ── */
.mega-menu__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px var(--space-6) 24px;
}

/* ── Staggered entry animations for mega links ── */
.mega-menu.is-open .mega-link,
.mega-menu.is-open .mega-tabs__btn {
  animation: megaFadeIn 0.32s var(--ease-out) both;
}
.mega-menu.is-open .mega-link:nth-child(1),
.mega-menu.is-open .mega-tabs__btn:nth-child(1) { animation-delay: 0.04s; }
.mega-menu.is-open .mega-link:nth-child(2),
.mega-menu.is-open .mega-tabs__btn:nth-child(2) { animation-delay: 0.07s; }
.mega-menu.is-open .mega-link:nth-child(3),
.mega-menu.is-open .mega-tabs__btn:nth-child(3) { animation-delay: 0.10s; }
.mega-menu.is-open .mega-link:nth-child(4),
.mega-menu.is-open .mega-tabs__btn:nth-child(4) { animation-delay: 0.13s; }
.mega-menu.is-open .mega-link:nth-child(5) { animation-delay: 0.16s; }
.mega-menu.is-open .mega-link:nth-child(6) { animation-delay: 0.19s; }
.mega-menu.is-open .mega-link:nth-child(7) { animation-delay: 0.22s; }

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   TABBED MEGA MENU — Product (2026 Glassmorphic Tabs)
   ═══════════════════════════════════════════ */

/* ── Vertical Tab Sidebar with glassmorphism ── */
.mega-tabs {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  margin-right: 28px;
  background: linear-gradient(160deg, rgba(236,246,251,0.6) 0%, rgba(220,233,243,0.35) 100%);
  border: 1px solid rgba(220,227,235,0.5);
  border-radius: var(--radius-lg);
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mega-tabs__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: left;
  white-space: nowrap;
  position: relative;
}

.mega-tabs__btn svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.mega-tabs__btn:hover {
  color: var(--color-primary);
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,105,166,0.1);
  transform: translateX(2px);
}

.mega-tabs__btn:hover svg {
  opacity: 0.8;
  transform: scale(1.1);
}

.mega-tabs__btn.is-active {
  color: var(--color-primary);
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,105,166,0.15);
  box-shadow: 0 2px 8px rgba(0,105,166,0.08), 0 0 0 1px rgba(0,105,166,0.06);
  font-weight: 600;
}

.mega-tabs__btn.is-active svg {
  opacity: 1;
  color: var(--color-primary);
}

/* Active indicator line */
.mega-tabs__indicator {
  position: absolute;
  left: 0;
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, var(--color-primary) 0%, #2e96e5 100%);
  border-radius: 0 3px 3px 0;
  transition: top 0.3s var(--ease-spring);
  top: 14px;
  box-shadow: 0 0 8px rgba(0,105,166,0.3);
}

/* ── Tab Panels ── */
.mega-panels {
  flex: 1;
  min-width: 0;
  position: relative;
}

.mega-panel {
  display: none;
  animation: megaPanelIn 0.28s var(--ease-out);
}

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

@keyframes megaPanelIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Panel grid — 2-column for items */
.mega-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 20px;
}

/* ═══════════════════════════════════════════
   COLUMN MEGA MENUS — Solutions & Resources
   ═══════════════════════════════════════════ */

/* ── Columns area ── */
.mega-cols {
  display: flex;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.mega-col {
  flex: 1;
  min-width: 0;
  padding: 0 6px;
}
.mega-col + .mega-col {
  border-left: 1px solid rgba(220,227,235,0.5);
  padding-left: 22px;
}
.mega-col__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid linear-gradient(90deg, var(--color-primary), transparent);
  border-bottom: 2px solid rgba(0,105,166,0.12);
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   MEGA LINKS — Shared icon + text items
   ═══════════════════════════════════════════ */
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 2px;
  border-left: 2px solid transparent;
}
.mega-link:hover {
  background: rgba(0,105,166,0.04);
  color: var(--color-primary);
  transform: translateX(3px);
  border-left-color: var(--color-primary);
  box-shadow: 0 1px 4px rgba(0,105,166,0.04);
}
.mega-link__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  color: var(--color-primary);
}
.mega-link__icon svg {
  display: block;
  flex-shrink: 0;
}

/* ── Category-tinted icon backgrounds ── */
.mega-link__icon--platform {
  background: linear-gradient(135deg, #ecf6fb 0%, #dce9f3 100%);
  color: var(--color-primary);
}
.mega-link__icon--clinical {
  background: linear-gradient(135deg, #ecf6fb 0%, #dfebf2 100%);
  color: var(--color-primary);
}
.mega-link__icon--growth {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
}
.mega-link__icon--revenue {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.mega-link__icon--cta {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  color: #c2410c;
}
.mega-link__icon--role-doctor {
  background: linear-gradient(135deg, #ecf6fb 0%, #dfebf2 100%);
  color: var(--color-primary);
}
.mega-link__icon--role-desk {
  background: linear-gradient(135deg, #fff7ed 0%, #fde8c8 100%);
  color: #d97706;
}
.mega-link__icon--role-billing {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.mega-link__icon--role-owner {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #be185d;
}

/* ── Icon hover states ── */
.mega-link:hover .mega-link__icon {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.mega-link:hover .mega-link__icon--platform {
  background: linear-gradient(135deg, #dce9f3 0%, #b3d4e8 100%);
}
.mega-link:hover .mega-link__icon--clinical,
.mega-link:hover .mega-link__icon--role-doctor {
  background: linear-gradient(135deg, #dfebf2 0%, #b3d4e8 100%);
}
.mega-link:hover .mega-link__icon--growth {
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
}
.mega-link:hover .mega-link__icon--revenue,
.mega-link:hover .mega-link__icon--role-billing {
  background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}
.mega-link:hover .mega-link__icon--cta {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}
.mega-link:hover .mega-link__icon--role-desk {
  background: linear-gradient(135deg, #fde8c8 0%, #fcd4a0 100%);
}
.mega-link:hover .mega-link__icon--role-owner {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
}

/* ── Company mega menu icon variants ── */
.mega-link__icon--company-about {
  background: linear-gradient(135deg, #ecf6fb 0%, #dce9f3 100%);
  color: var(--color-primary);
}
.mega-link__icon--company-connect {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.mega-link__icon--company-news {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #be185d;
}
.mega-link:hover .mega-link__icon--company-about {
  background: linear-gradient(135deg, #dce9f3 0%, #b3d4e8 100%);
}
.mega-link:hover .mega-link__icon--company-connect {
  background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}
.mega-link:hover .mega-link__icon--company-news {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
}

.mega-link__text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
.mega-link__text span {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-top: 1px;
  transition: color 0.18s;
}
.mega-link:hover .mega-link__text span {
  color: var(--color-primary);
  opacity: 0.65;
}

/* ── Simple text links (no icon) ── */
.mega-link--simple {
  padding: 7px 10px;
  font-size: var(--text-sm);
  font-weight: 500;
  align-items: center;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.15s;
  margin-bottom: 1px;
}

/* ═══════════════════════════════════════════
   FEATURED CARD — Right sidebar promo
   ═══════════════════════════════════════════ */
.mega-featured {
  flex: 0 0 220px;
  background: linear-gradient(145deg, var(--color-primary) 0%, #0a3d6b 100%);
  border-radius: var(--radius-xl);
  padding: 22px 20px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-left: 24px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.mega-featured::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.mega-featured::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(46,150,229,0.22) 0%, transparent 70%);
  border-radius: 50%;
}
.mega-featured__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
}
.mega-featured__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mega-featured__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}
.mega-featured__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.mega-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative; z-index: 1;
  width: fit-content;
}
.mega-featured__link:hover {
  background: rgba(255,255,255,0.26);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-1px);
}
/* Mini UI chrome */
.mega-featured__ui {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 80px; height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  z-index: 1;
}
.mega-featured__ui::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mega-featured__ui::after {
  content: '';
  position: absolute;
  top: 16px; left: 8px; right: 8px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  box-shadow: 0 8px 0 rgba(255,255,255,0.1), 0 16px 0 rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════
   HIGHLIGHT CARD — Testimonial / Content (2026)
   ═══════════════════════════════════════════ */
.mega-highlight {
  flex: 0 0 220px;
  background: linear-gradient(145deg, var(--color-bg-light) 0%, #ecf6fb 100%);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  border: 1px solid var(--color-border-light);
  margin-left: 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Glass variant */
.mega-highlight--glass {
  background: linear-gradient(150deg, rgba(236,246,251,0.7) 0%, rgba(220,233,243,0.4) 100%);
  border-color: rgba(220,227,235,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Decorative quote mark */
.mega-highlight__quote-mark {
  position: absolute;
  top: -4px;
  right: 12px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

/* Small badge */
.mega-highlight__badge-sm {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0,105,166,0.08);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  width: fit-content;
}

.mega-highlight__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mega-highlight blockquote {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.55;
  margin-bottom: 10px;
  font-style: italic;
  quotes: none;
  flex: 1;
  position: relative;
  z-index: 1;
}
.mega-highlight cite {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  font-style: normal;
  margin-bottom: 14px;
  line-height: 1.5;
}
.mega-highlight cite strong {
  display: block;
  color: var(--color-text-secondary);
  font-weight: 600;
}
.mega-highlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.18s var(--ease-out);
}
.mega-highlight__cta:hover {
  gap: 7px;
  text-decoration: underline;
}

/* ── Practice Type icon variants ── */
.mega-link__icon--type-solo {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #0284c7;
}
.mega-link__icon--type-multi {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  color: #7c3aed;
}
.mega-link__icon--type-enterprise {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
}
.mega-link:hover .mega-link__icon--type-solo {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}
.mega-link:hover .mega-link__icon--type-multi {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}
.mega-link:hover .mega-link__icon--type-enterprise {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

/* ── Resource icon variants ── */
.mega-link__icon--resource-learn {
  background: linear-gradient(135deg, #ecf6fb 0%, #dfebf2 100%);
  color: var(--color-primary);
}
.mega-link__icon--resource-community {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #be185d;
}
.mega-link__icon--resource-tool {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.mega-link:hover .mega-link__icon--resource-learn {
  background: linear-gradient(135deg, #dfebf2 0%, #b3d4e8 100%);
}
.mega-link:hover .mega-link__icon--resource-community {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
}
.mega-link:hover .mega-link__icon--resource-tool {
  background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
}

/* ═══════════════════════════════════════════
   MEGA MENU FOOTER — CTA Bar
   ═══════════════════════════════════════════ */
.mega-menu__footer {
  border-top: 1px solid var(--color-border-light);
  margin-top: 0;
  padding: 14px var(--space-6);
  background: rgba(247,248,250,0.5);
}
.mega-menu__footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
}
.mega-menu__footer-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}
.mega-menu__footer-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.mega-menu__footer-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s;
}
.mega-menu__footer-link:hover {
  text-decoration: underline;
}
.mega-menu__footer-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mega-menu__footer-btn:hover {
  background: #e6753c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,137,86,0.3);
}

/* ═══════════════════════════════════════════
   SIMPLE DROPDOWN — Company nav (2026 Card Style)
   ═══════════════════════════════════════════ */
.nav-item--simple-drop {
  position: relative;
}
.simple-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(15,23,42,0.12),
    0 4px 16px rgba(15,23,42,0.06),
    0 0 0 1px rgba(15,23,42,0.04);
  border: 1px solid rgba(220,227,235,0.6);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, transform 0.26s var(--ease-out), visibility 0.22s;
  z-index: 1001;
  pointer-events: none;
}
.nav-item--simple-drop:hover .simple-dropdown,
.nav-item--simple-drop.is-open .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Dropdown icon wrappers */
.simple-dropdown__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.simple-dropdown__icon--blue {
  background: linear-gradient(135deg, #ecf6fb 0%, #dce9f3 100%);
  color: var(--color-primary);
}
.simple-dropdown__icon--purple {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  color: #6d28d9;
}
.simple-dropdown__icon--green {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #059669;
}
.simple-dropdown__icon--orange {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  color: #c2410c;
}
.simple-dropdown__icon--pink {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  color: #be185d;
}

/* Dropdown text block */
.simple-dropdown__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.simple-dropdown__text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
.simple-dropdown__text span {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.3;
  margin-top: 1px;
}

/* Dropdown divider */
.simple-dropdown__divider {
  height: 1px;
  background: var(--color-border-light);
  margin: 4px 8px;
}

/* Dropdown link */
.simple-dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  text-decoration: none;
}
.simple-dropdown__link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateX(2px);
}
.simple-dropdown__link:hover .simple-dropdown__icon {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.simple-dropdown__link:hover .simple-dropdown__text span {
  color: var(--color-primary);
  opacity: 0.7;
}

/* ── Header actions (right side) ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* ── Mobile: hide desktop nav ── */
@media (max-width: 1024px) {
  .header__nav { display: none !important; }
  .header__actions { display: none !important; }
  .mega-menu { display: none !important; }
  .mega-backdrop { display: none !important; }
}
@media (min-width: 1025px) {
  .header__toggle { display: none !important; }
}

/* ── Old header__dropdown kept for backwards compat ── */
.header__nav-item { position: relative; }
.header__dropdown { display: none; }

/* ═══════════════════════════════════════════
   MOBILE MENU — 2026 Slide-In Panel
   ═══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 996;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-4) var(--space-5) var(--space-10);
  transform: translateX(100%);
  transition: transform 0.36s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__group {
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-2) 0;
}

/* ── Mobile Accordion ── */
.mobile-menu__accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.mobile-menu__accordion .mobile-menu__label {
  padding: 0;
  margin: 0;
}
.mobile-menu__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  text-transform: uppercase;
  padding: var(--space-3) 0 var(--space-2);
}
.mobile-menu__chevron {
  transition: transform 0.25s var(--ease-out);
  color: var(--color-text-light);
  flex-shrink: 0;
}
.mobile-menu__accordion[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
}
.mobile-menu__accordion-body {
  display: none;
  padding: 0 0 var(--space-2) var(--space-4);
}
.mobile-menu__accordion[aria-expanded="true"] + .mobile-menu__accordion-body {
  display: block;
  animation: mobileAccordionIn 0.26s var(--ease-out);
}
@keyframes mobileAccordionIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu__sublabel {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  padding: var(--space-3) 0 var(--space-1);
}
.mobile-menu__sublabel:first-child {
  padding-top: 0;
}
.mobile-menu__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Mobile Links ── */
.mobile-menu__link {
  display: flex;
  align-items: center;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* ── Mobile CTA ── */
.mobile-menu__cta {
  padding: var(--space-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet adjustments
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) and (min-width: 1025px) {
  .mega-tabs { flex: 0 0 150px; }
  .mega-featured { flex: 0 0 190px; }
  .mega-highlight { flex: 0 0 180px; }
  .mega-panel__grid { grid-template-columns: 1fr; }
}


/* ===========================================
   52. DASHBOARD MOCK PLACEHOLDER LAYOUT
   =========================================== */
.dashboard-mock__content {
  padding: 0;
}

.dashboard-mock__placeholder {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 280px;
}

.dashboard-mock__bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-light);
}

@media (max-width: 768px) {
  .dashboard-mock__placeholder {
    grid-template-columns: 1fr;
  }

  .dashboard-mock__sidebar {
    display: none;
  }
}


/* ===========================================
   53. FOOTER GRID (overridden in section 55)
   =========================================== */


/* ===========================================
   54. MODULE TABS — Premium 2026 Showcase
   =========================================== */

/* --- Section wrapper with depth & atmosphere --- */
#platform-modules {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

/* Background decorative layer */
.modules-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Dot grid pattern */
.modules-bg__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 105, 166, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* Floating gradient orbs */
.modules-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: auroraFloat 20s ease-in-out infinite;
}

.modules-bg__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 105, 166, 0.06) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-duration: 24s;
}

.modules-bg__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 55, 96, 0.04) 0%, transparent 70%);
  bottom: -5%;
  left: -8%;
  animation-duration: 28s;
  animation-delay: -8s;
}

/* --- Enhanced Section Header --- */
.module-section-header {
  margin-bottom: var(--space-16);
}

.module-section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.08), rgba(22, 55, 96, 0.06));
  border: 1px solid rgba(0, 105, 166, 0.12);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.module-section-header__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: aiPulse 2s ease-in-out infinite;
}

.module-section-header__title {
  font-size: clamp(var(--text-3xl), 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.module-section-header__line {
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), #0069a6);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  margin: var(--space-6) auto 0;
}

/* --- Tab Navigation: Glassmorphic pill track --- */
.module-tabs {
  position: relative;
}

.module-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  padding: 6px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 105, 166, 0.06);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.module-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-xl);
  background: transparent;
  color: var(--color-text-secondary);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.module-tabs__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease, stroke 0.3s ease;
}

.module-tabs__btn:hover {
  color: var(--color-primary);
  background: rgba(0, 105, 166, 0.06);
}

.module-tabs__btn:hover svg {
  opacity: 1;
}

.module-tabs__btn--active {
  background: var(--color-bg-white);
  color: var(--color-primary);
  border-color: rgba(0, 105, 166, 0.15);
  box-shadow:
    0 4px 16px rgba(0, 105, 166, 0.12),
    0 1px 3px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Active tab gradient accent line */
.module-tabs__btn--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  animation: tabIndicatorIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tabIndicatorIn {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.module-tabs__btn--active svg {
  opacity: 1;
  stroke: var(--color-primary);
}

.module-tabs__btn--active:hover {
  background: var(--color-bg-white);
  color: var(--color-primary);
}

/* --- Module Content Container --- */
.module-tabs__content {
  position: relative;
  min-height: 420px;
}

/* --- Module Panel (content area) --- */
.module-panel {
  display: none;
  opacity: 0;
}

.module-panel--active {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  background: var(--color-bg-white);
  border-radius: 24px;
  border: 1px solid rgba(0, 105, 166, 0.1);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255,255,255,0.9) inset;
  overflow: hidden;
  animation: modulePanelIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modulePanelIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Info side entrance — scale + slide */
.module-panel--active .module-panel__info {
  animation: moduleInfoIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

@keyframes moduleInfoIn {
  0% { opacity: 0; transform: translateX(-24px) scale(0.97); filter: blur(3px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

/* Visual side entrance */
.module-panel--active .module-panel__visual {
  animation: moduleVisualIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes moduleVisualIn {
  0% { opacity: 0; transform: translateX(20px) scale(0.97); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.module-panel__info {
  display: flex;
  flex-direction: column;
  padding: 48px 44px 44px;
  position: relative;
  overflow: hidden;
}

/* Premium top gradient accent bar */
.module-panel__info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #2e96e5 40%, #0069a6 70%, #ec4899 100%);
  background-size: 200% 100%;
  animation: gradientShift 5s ease infinite;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

/* Decorative radial glow — top right */
.module-panel__info::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 105, 166, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* --- Badge (pill with pulsing dot) --- */
.module-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.09) 0%, rgba(77, 156, 192, 0.05) 100%);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(0, 105, 166, 0.15);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.module-panel__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 105, 166, 0.2);
  animation: aiPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* --- Title (larger, bolder, gradient underline) --- */
.module-panel__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.12;
  position: relative;
  z-index: 1;
}

/* Gradient accent underline */
.module-panel__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin-top: var(--space-3);
}

/* --- Description (improved readability) --- */
.module-panel__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

/* --- Feature List (2-column grid, premium card tiles) --- */
.module-panel__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: var(--space-2);
  padding: 0;
  border: none;
  background: none;
}

.module-panel__features li {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  padding: 13px 14px 13px 46px;
  border-radius: var(--radius-xl);
  background: rgba(246, 249, 255, 0.85);
  border: 1px solid rgba(0, 105, 166, 0.08);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.module-panel__features li::before {
  content: '';
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, var(--color-primary), var(--color-accent));
  position: absolute;
  left: 14px;
  top: 14px;
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.25);
}

/* Remove the old text-based checkmark */
.module-panel__features li::after {
  content: none;
}

.module-panel__features li:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 105, 166, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.1);
}

/* Multi-color icon tiles per row */
.module-panel__features li:nth-child(2)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25); }
.module-panel__features li:nth-child(3)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #0069a6, #4d9cc0); box-shadow: 0 2px 8px rgba(22, 55, 96, 0.25); }
.module-panel__features li:nth-child(4)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #f59e0b, #fbbf24); box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25); }
.module-panel__features li:nth-child(5)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #14b8a6, #2dd4bf); box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25); }
.module-panel__features li:nth-child(6)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #ef4444, #f87171); box-shadow: 0 2px 8px rgba(239, 68, 68, 0.25); }
.module-panel__features li:nth-child(7)::before  { background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 4' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/auto no-repeat, linear-gradient(135deg, #ec4899, #f472b6); box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25); }

/* Staggered entrance for feature items */
.module-panel--active .module-panel__features li {
  animation: featureItemIn 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.module-panel--active .module-panel__features li:nth-child(1) { animation-delay: 0.12s; }
.module-panel--active .module-panel__features li:nth-child(2) { animation-delay: 0.17s; }
.module-panel--active .module-panel__features li:nth-child(3) { animation-delay: 0.22s; }
.module-panel--active .module-panel__features li:nth-child(4) { animation-delay: 0.27s; }
.module-panel--active .module-panel__features li:nth-child(5) { animation-delay: 0.32s; }
.module-panel--active .module-panel__features li:nth-child(6) { animation-delay: 0.37s; }
.module-panel--active .module-panel__features li:nth-child(7) { animation-delay: 0.42s; }

@keyframes featureItemIn {
  0%   { opacity: 0; transform: translateY(10px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.module-panel__features li strong {
  display: block;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

/* Feature description text */
.module-panel__features li span {
  display: block;
  color: var(--color-text-secondary);
  font-size: 11.5px;
  line-height: 1.55;
}

/* Subtle left accent line on each card */
.module-panel__features li:nth-child(1)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, var(--color-primary), var(--color-accent)); }
.module-panel__features li:nth-child(2)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #16a34a, #22c55e); }
.module-panel__features li:nth-child(3)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #0069a6, #4d9cc0); }
.module-panel__features li:nth-child(4)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #f59e0b, #fbbf24); }
.module-panel__features li:nth-child(5)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #14b8a6, #2dd4bf); }
.module-panel__features li:nth-child(6)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #ef4444, #f87171); }
.module-panel__features li:nth-child(7)::after { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #ec4899, #f472b6); }

/* --- Module Panel Visual wrapper --- */
.module-panel__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 32px;
  background: linear-gradient(145deg, #eef5ff 0%, #f4f0ff 100%);
  border-left: 1px solid rgba(0, 105, 166, 0.08);
}

/* Soft radial overlay on visual side */
.module-panel__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(0, 105, 166, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* --- Module Mockup (visual side) --- */
.module-mockup {
  background: var(--color-bg-white);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(0, 105, 166, 0.07);
  border: 1px solid rgba(0, 105, 166, 0.08);
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}

/* Subtle gradient overlay on top */
.module-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 105, 166, 0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.module-mockup:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.12),
    0 8px 20px rgba(0, 105, 166, 0.06),
    0 0 0 1px rgba(0, 105, 166, 0.12);
}

.module-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px var(--space-4);
  background: linear-gradient(180deg, #f8fafb, var(--color-bg-light));
  border-bottom: 1px solid var(--color-border-light);
}

.module-mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: transform 0.3s ease;
}

.module-mockup:hover .module-mockup__bar span {
  transform: scale(1.15);
}

.module-mockup__bar span:nth-child(1) { background: #ef4444; }
.module-mockup__bar span:nth-child(2) { background: #f59e0b; }
.module-mockup__bar span:nth-child(3) { background: #22c55e; }

.module-mockup__body {
  padding: var(--space-6);
}

.module-mockup__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.module-mockup__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

/* --- SOAP Note rows with stagger entrance --- */
.module-mockup__row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.module-panel--active .module-mockup__row {
  animation: mockupRowIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.module-panel--active .module-mockup__row:nth-child(1) { animation-delay: 0.2s; }
.module-panel--active .module-mockup__row:nth-child(2) { animation-delay: 0.28s; }
.module-panel--active .module-mockup__row:nth-child(3) { animation-delay: 0.36s; }
.module-panel--active .module-mockup__row:nth-child(4) { animation-delay: 0.44s; }
.module-panel--active .module-mockup__row:nth-child(5) { animation-delay: 0.5s; }
.module-panel--active .module-mockup__row:nth-child(6) { animation-delay: 0.56s; }
.module-panel--active .module-mockup__row:nth-child(7) { animation-delay: 0.62s; }

@keyframes mockupRowIn {
  0% { opacity: 0; transform: translateX(12px); }
  100% { opacity: 1; transform: translateX(0); }
}

.module-mockup__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 105, 166, 0.2);
}

.module-mockup__tag-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
}

.module-mockup__line {
  height: 10px;
  background: linear-gradient(90deg, var(--color-bg-light), rgba(0, 105, 166, 0.06));
  border-radius: var(--radius-full);
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on mockup lines */
.module-panel--active .module-mockup__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: lineShimmer 2s ease 0.5s;
}

@keyframes lineShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.module-mockup__pill {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 105, 166, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-mockup__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.15);
}

/* --- Schedule mockup --- */
.module-mockup__schedule {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.module-mockup__appt {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.module-panel--active .module-mockup__appt {
  animation: mockupRowIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.module-panel--active .module-mockup__appt:nth-child(1) { animation-delay: 0.2s; }
.module-panel--active .module-mockup__appt:nth-child(2) { animation-delay: 0.28s; }
.module-panel--active .module-mockup__appt:nth-child(3) { animation-delay: 0.36s; }
.module-panel--active .module-mockup__appt:nth-child(4) { animation-delay: 0.44s; }
.module-panel--active .module-mockup__appt:nth-child(5) { animation-delay: 0.52s; }

.module-mockup__time {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  width: 40px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.module-mockup__appt-bar {
  flex: 1;
  padding: 8px var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #fff;
  transition: transform 0.2s ease;
}

.module-mockup__appt-bar:hover {
  transform: translateX(3px);
}

.module-mockup__appt-bar--blue {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.module-mockup__appt-bar--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.module-mockup__appt-bar--purple {
  background: linear-gradient(135deg, #0069a6, #163760);
}

/* --- Stats grid mockup --- */
.module-mockup__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.module-mockup__stat {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-mockup__stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.module-mockup__stat-num {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.module-mockup__stat-lbl {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: var(--space-1);
  font-weight: 500;
}

/* --- Chart mockup with animated bars --- */
.module-mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-top: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.module-mockup__chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  min-height: 8px;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  opacity: 0.75;
}

.module-mockup__chart-bar:hover {
  opacity: 1;
}

.module-panel--active .module-mockup__chart-bar {
  animation: chartGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.module-panel--active .module-mockup__chart-bar:nth-child(1) { animation-delay: 0.25s; }
.module-panel--active .module-mockup__chart-bar:nth-child(2) { animation-delay: 0.3s; }
.module-panel--active .module-mockup__chart-bar:nth-child(3) { animation-delay: 0.35s; }
.module-panel--active .module-mockup__chart-bar:nth-child(4) { animation-delay: 0.4s; }
.module-panel--active .module-mockup__chart-bar:nth-child(5) { animation-delay: 0.45s; }
.module-panel--active .module-mockup__chart-bar:nth-child(6) { animation-delay: 0.5s; }
.module-panel--active .module-mockup__chart-bar:nth-child(7) { animation-delay: 0.55s; }

@keyframes chartGrow {
  0% { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}

/* --- Payment methods mockup --- */
.module-mockup__payment-methods {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin: var(--space-4) 0;
}

.module-mockup__method {
  padding: 8px var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-secondary);
  cursor: default;
  transition: all 0.2s ease;
}

.module-mockup__method--active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.25);
}

.module-mockup__btn-mock {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--space-4);
  box-shadow: 0 4px 12px rgba(0, 105, 166, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-mockup__btn-mock:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 105, 166, 0.3);
}

/* --- AI indicator mockup --- */
.module-mockup__ai-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding: 6px 14px;
  background: rgba(0, 105, 166, 0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 105, 166, 0.1);
}

.module-mockup__ai-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: aiPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 105, 166, 0.4);
}

@keyframes aiPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 105, 166, 0.4);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(0, 105, 166, 0);
  }
}

/* --- Pipeline mockup --- */
.module-mockup__pipeline {
  display: flex;
  gap: 3px;
  margin: var(--space-4) 0;
}

.module-mockup__pipe-step {
  flex: 1;
  padding: 8px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-text-light);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.module-mockup__pipe-step--done {
  background: #E7F6EE;
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.15);
}

.module-mockup__pipe-step--active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.25);
  transform: scale(1.05);
}

/* --- Phone mockup variant --- */
.module-mockup--phone {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 28px;
  position: relative;
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.module-mockup--phone .module-mockup__bar {
  display: none;
}

.module-mockup__phone-notch {
  width: 100px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
}

.module-mockup__phone-notch::after {
  content: '';
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 4px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.module-mockup__phone-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-mockup__phone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.module-mockup__phone-card strong {
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .module-panel--active {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .module-tabs__nav {
    max-width: 100%;
    gap: 4px;
    padding: 4px;
  }

  .module-tabs__btn {
    padding: 8px 12px;
    font-size: var(--text-xs);
  }

  .module-tabs__btn svg {
    display: none;
  }
}

@media (max-width: 768px) {
  .module-tabs__nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .module-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .module-tabs__btn {
    flex-shrink: 0;
    padding: 8px 14px;
  }

  .module-panel--active {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .module-panel__info {
    padding: 32px 24px 28px;
  }

  .module-panel__visual {
    order: -1;
    border-left: none;
    border-bottom: 1px solid rgba(0, 105, 166, 0.08);
    padding: 32px 24px;
    justify-content: center;
  }

  .module-panel__features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .module-panel__features li {
    padding: 11px 14px 11px 44px;
  }

  .module-panel__features li::before {
    width: 22px;
    height: 22px;
    left: 12px;
    top: 12px;
    border-radius: 6px;
  }

  .module-mockup--phone {
    max-width: 240px;
  }

  .modules-bg__grid {
    display: none;
  }

  .modules-bg__orb {
    display: none;
  }

  .module-section-header__title {
    font-size: var(--text-2xl);
  }

  .module-section-header__line {
    width: 60px;
    height: 3px;
  }

  .module-panel__visual::before {
    display: none;
  }
}


/* Section 55 removed: .footer__* dead code (old .footer display:none, HTML uses .footer-v2) */






/* ===========================================
   MODERNIZATION — Competitor-Inspired Enhancements
   =========================================== */

/* --- Circular Module Icon Tabs (Prompt Health style) --- */
.module-tabs__nav--circular {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  max-width: none;
}

.module-tabs__nav--circular .module-tabs__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  width: auto;
  min-width: 76px;
  box-shadow: none;
  transform: none;
  cursor: pointer;
}

.module-tabs__nav--circular .module-tabs__btn::after {
  display: none;
}

.module-tabs__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border: 2px solid var(--color-border-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

/* Multi-color light backgrounds per module icon */
[data-module="ehr"] .module-tabs__icon-circle       { background: #E8F1FB; border-color: #c9ddf3; }
[data-module="ehr"] .module-tabs__icon-circle svg    { stroke: #0069a6; }
[data-module="pms"] .module-tabs__icon-circle        { background: #FEF3E2; border-color: #fce0b4; }
[data-module="pms"] .module-tabs__icon-circle svg     { stroke: #f59e0b; }
[data-module="crm"] .module-tabs__icon-circle        { background: #E7F6EE; border-color: #b9e5cc; }
[data-module="crm"] .module-tabs__icon-circle svg     { stroke: #16a34a; }
[data-module="patient-app"] .module-tabs__icon-circle { background: #F0E8FB; border-color: #d8c7f4; }
[data-module="patient-app"] .module-tabs__icon-circle svg { stroke: #0069a6; }
[data-module="analytics"] .module-tabs__icon-circle   { background: #E6F7F7; border-color: #b3e8e6; }
[data-module="analytics"] .module-tabs__icon-circle svg { stroke: #14b8a6; }
[data-module="payments"] .module-tabs__icon-circle    { background: #FEE8E8; border-color: #f8c4c4; }
[data-module="payments"] .module-tabs__icon-circle svg { stroke: #ef4444; }
[data-module="ai-tools"] .module-tabs__icon-circle    { background: linear-gradient(135deg, #E8F1FB, #F0E8FB); border-color: #c9d5f3; }
[data-module="ai-tools"] .module-tabs__icon-circle svg { stroke: #0069a6; }
[data-module="rcm"] .module-tabs__icon-circle         { background: #FFF7ED; border-color: #fde4c4; }
[data-module="rcm"] .module-tabs__icon-circle svg      { stroke: #ea580c; }
[data-module="marketplace"] .module-tabs__icon-circle  { background: #FDF2F8; border-color: #f5c4de; }
[data-module="marketplace"] .module-tabs__icon-circle svg { stroke: #ec4899; }

.module-tabs__icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-text-light);
  transition: stroke 0.3s ease, transform 0.35s ease;
}

.module-tabs__btn-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.module-tabs__nav--circular .module-tabs__btn:hover .module-tabs__icon-circle {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.module-tabs__nav--circular .module-tabs__btn:hover .module-tabs__icon-circle svg {
  transform: scale(1.1);
}

.module-tabs__nav--circular .module-tabs__btn:hover .module-tabs__btn-label {
  color: var(--color-primary);
}

.module-tabs__nav--circular .module-tabs__btn--active .module-tabs__icon-circle {
  border-color: currentColor;
  box-shadow: 0 8px 24px rgba(0, 105, 166, 0.2);
  transform: translateY(-3px) scale(1.12);
}

/* Active state: deeper colored bg per module */
.module-tabs__btn--active[data-module="ehr"] .module-tabs__icon-circle       { background: var(--color-primary); border-color: var(--color-primary); }
.module-tabs__btn--active[data-module="pms"] .module-tabs__icon-circle        { background: #f59e0b; border-color: #f59e0b; }
.module-tabs__btn--active[data-module="crm"] .module-tabs__icon-circle        { background: #16a34a; border-color: #16a34a; }
.module-tabs__btn--active[data-module="patient-app"] .module-tabs__icon-circle { background: var(--color-primary); border-color: var(--color-primary); }
.module-tabs__btn--active[data-module="analytics"] .module-tabs__icon-circle   { background: #14b8a6; border-color: #14b8a6; }
.module-tabs__btn--active[data-module="payments"] .module-tabs__icon-circle    { background: #ef4444; border-color: #ef4444; }
.module-tabs__btn--active[data-module="ai-tools"] .module-tabs__icon-circle    { background: linear-gradient(135deg, #0069a6, #0069a6); border-color: var(--color-primary); }
.module-tabs__btn--active[data-module="rcm"] .module-tabs__icon-circle         { background: #ea580c; border-color: #ea580c; }
.module-tabs__btn--active[data-module="marketplace"] .module-tabs__icon-circle  { background: #ec4899; border-color: #ec4899; }

/* Active module icon shadows match module color */
.module-tabs__btn--active[data-module="ehr"] .module-tabs__icon-circle       { box-shadow: 0 8px 24px rgba(0, 105, 166, 0.35); }
.module-tabs__btn--active[data-module="pms"] .module-tabs__icon-circle        { box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35); }
.module-tabs__btn--active[data-module="crm"] .module-tabs__icon-circle        { box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35); }
.module-tabs__btn--active[data-module="patient-app"] .module-tabs__icon-circle { box-shadow: 0 8px 24px rgba(22, 55, 96, 0.35); }
.module-tabs__btn--active[data-module="analytics"] .module-tabs__icon-circle   { box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35); }
.module-tabs__btn--active[data-module="payments"] .module-tabs__icon-circle    { box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35); }
.module-tabs__btn--active[data-module="ai-tools"] .module-tabs__icon-circle    { box-shadow: 0 8px 24px rgba(22, 55, 96, 0.35); }
.module-tabs__btn--active[data-module="rcm"] .module-tabs__icon-circle         { box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35); }
.module-tabs__btn--active[data-module="marketplace"] .module-tabs__icon-circle  { box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35); }

.module-tabs__nav--circular .module-tabs__btn--active .module-tabs__icon-circle svg {
  stroke: #fff;
  transform: scale(1.05);
}

.module-tabs__nav--circular .module-tabs__btn--active .module-tabs__btn-label {
  color: var(--color-primary);
  font-weight: 700;
}

.module-tabs__nav--circular .module-tabs__btn--active:hover .module-tabs__icon-circle {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* --- Awards / Recognition Badges --- */
.awards-section {
  padding: var(--space-12) 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
}

.awards-section__inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.awards-section__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.awards-row {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(145deg, #fff8f0, #fff3e6);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: var(--radius-lg);
  min-width: 120px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 180, 0, 0.15);
}

.award-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.award-badge__icon--gold {
  background: linear-gradient(145deg, #FFB400, #FF9500);
  color: #fff;
}

.award-badge__icon--green {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
}

.award-badge__icon--blue {
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  color: #fff;
}

.award-badge__icon--coral {
  background: linear-gradient(145deg, #ff6b6b, #ee5a24);
  color: #fff;
}

.award-badge__season {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.award-badge__title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.3;
}

/* --- Video-Style Testimonials --- */
.testimonials-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.testimonial--video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-10);
  color: #fff;
  background: linear-gradient(145deg, #c41b4e, #0069a6);
}

.testimonial--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.testimonial--video > * {
  position: relative;
  z-index: 2;
}

.testimonial__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial__play:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial__play svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 3px;
}

.testimonial--video .testimonial__quote-mark {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  margin-bottom: var(--space-2);
  font-family: Georgia, serif;
}

.testimonial--video .testimonial__text {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: var(--space-6);
}

.testimonial--video .testimonial__name {
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
}

.testimonial--video .testimonial__role {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2);
}

/* Testimonial stats inside video card */
.testimonial__stats-row {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial__stat-item {
  text-align: left;
}

.testimonial__stat-item .testimonial__stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  font-style: italic;
}

.testimonial__stat-item .testimonial__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

/* Read case study link */
.testimonial__case-study {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  margin-top: var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.testimonial__case-study:hover {
  border-color: #fff;
}

.testimonial__case-study svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  transition: transform 0.3s ease;
}

.testimonial__case-study:hover svg {
  transform: translateX(3px);
}

/* --- AI & Automation Feature Cards (Prompt-style) --- */
.ai-features {
  padding: var(--space-20) 0;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.ai-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.ai-card__visual {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #f0f7fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-4);
}

.ai-card__visual--green {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.ai-card__visual--purple {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.ai-card__visual--coral {
  background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 100%);
}

/* Mini product mockup inside AI card */
.ai-card__mockup {
  width: 90%;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ai-card__mockup-bar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: var(--color-bg-light);
}

.ai-card__mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ai-card__mockup-bar span:nth-child(1) { background: #ff5f57; }
.ai-card__mockup-bar span:nth-child(2) { background: #ffbd2e; }
.ai-card__mockup-bar span:nth-child(3) { background: #28ca42; }

.ai-card__mockup-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-card__mockup-line {
  height: 8px;
  border-radius: 4px;
  background: var(--color-bg-light);
}

.ai-card__mockup-line--accent {
  background: rgba(0, 105, 166, 0.15);
}

.ai-card__mockup-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 105, 166, 0.1);
  color: var(--color-primary);
}

.ai-card__mockup-pill--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.ai-card__mockup-pill--coral {
  background: rgba(255, 107, 107, 0.1);
  color: #ee5a24;
}

/* AI card content */
.ai-card__content {
  padding: var(--space-6) var(--space-8) var(--space-8);
}

.ai-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.ai-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.ai-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
}

.ai-card__link:hover {
  gap: var(--space-3);
}

.ai-card__link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  transition: transform 0.3s ease;
}

.ai-card__link:hover svg {
  transform: translateX(3px);
}

/* --- Floating UI Decoration Elements --- */
.float-ui {
  position: absolute;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  animation: floatBounce 3s ease-in-out infinite;
  z-index: 5;
}

.float-ui--1 { top: 15%; right: -20px; animation-delay: 0s; }
.float-ui--2 { bottom: 25%; left: -30px; animation-delay: 1s; }
.float-ui--3 { top: 40%; right: -40px; animation-delay: 2s; }

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

.float-ui__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.float-ui__dot--green { background: #22c55e; }
.float-ui__dot--blue { background: var(--color-primary); }
.float-ui__dot--coral { background: #ff6b6b; }
.float-ui__dot--purple { background: var(--color-primary); }
.float-ui__dot--gold { background: #FFB400; }

/* --- Toggle Switch Decoration --- */
.toggle-decoration {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
}

.toggle-switch {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #22c55e;
  position: relative;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* --- Star Rating Decoration --- */
.star-rating {
  display: flex;
  gap: 2px;
  color: #FFB400;
  font-size: var(--text-lg);
}

/* --- Notification Pill Decoration --- */
.notification-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.notification-pill--warning {
  background: rgba(255, 180, 0, 0.1);
  color: #d97706;
  border-color: rgba(255, 180, 0, 0.2);
}

.notification-pill--coral {
  background: rgba(255, 107, 107, 0.1);
  color: #ee5a24;
  border-color: rgba(255, 107, 107, 0.2);
}

.notification-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* --- Enhanced Stats Section (competitor-style big numbers) --- */
.stats-section--modern {
  background: linear-gradient(180deg, #f0f7fa 0%, var(--color-bg-white) 100%);
}

.stat__number--xl {
  font-size: var(--text-6xl);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__number--coral {
  color: #ff6b6b;
}

.stat__number--primary {
  color: var(--color-primary);
}

/* --- Arrow Links (competitor style) --- */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
  cursor: pointer;
}

.arrow-link:hover {
  gap: var(--space-3);
}

.arrow-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.arrow-link:hover::after {
  transform: translateX(3px);
}

/* --- Responsive for new components --- */
@media (max-width: 1024px) {
  .module-tabs__nav--circular {
    gap: var(--space-4);
  }

  .module-tabs__icon-circle {
    width: 54px;
    height: 54px;
  }

  .module-panel__features {
    grid-template-columns: 1fr 1fr;
  }

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

  .testimonials-modern {
    grid-template-columns: 1fr;
  }

  .awards-section__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .module-tabs__btn-label {
    font-size: 10px;
  }

  .ai-cards {
    grid-template-columns: 1fr;
  }

  .testimonial--video {
    min-height: 280px;
  }

  .testimonial__stats-row {
    flex-direction: column;
    gap: var(--space-3);
  }

  .awards-row {
    gap: var(--space-3);
  }

  .award-badge {
    min-width: 100px;
    padding: var(--space-3) var(--space-4);
  }

}

@media (max-width: 480px) {
  .module-tabs__nav--circular {
    gap: var(--space-2);
  }


  .module-tabs__btn-label {
    display: none;
  }

  .testimonial__play {
    width: 56px;
    height: 56px;
  }

  .testimonial__play svg {
    width: 22px;
    height: 22px;
  }
}


/* ===========================================
   DEMO PAGE — Premium 2026 Styles
   =========================================== */

/* Demo Hero */
.demo-hero {
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + clamp(3rem, 5vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.demo-hero .container {
  width: 100%;
}

.demo-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

.demo-hero__content {
  padding-top: 0;
  width: 100%;
}

.demo-hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.035em;
}

.demo-hero__subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.75vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 100%;
}

/* Checklist */
.demo-hero__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.demo-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
}

.demo-check svg {
  flex-shrink: 0;
}

/* Trust badges row */
.demo-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.demo-trust__badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.demo-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* Form Card */
.demo-hero__form-wrap {
  position: relative;
  z-index: 2;
}

.demo-form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-radius: var(--radius-3xl);
  padding: var(--space-10) var(--space-12);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 24px 64px rgba(0, 105, 166, 0.1),
    0 1px 2px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(0, 105, 166, 0.1);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring);
}

.demo-form-card:hover {
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.07),
    0 32px 80px rgba(0, 105, 166, 0.14),
    0 1px 2px rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-2px);
}

.demo-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0069a6, #4d9cc0, #0069a6, #0069a6);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.demo-form-card__header {
  margin-bottom: var(--space-8);
}

.demo-form-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.demo-form-card__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Form layout */
.demo-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.demo-form__note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* Demo Steps */
.demo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.demo-step {
  background: var(--card-bg);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring), border-color 0.3s ease;
}

.demo-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #0069a6);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.demo-step:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
  border-color: rgba(0, 105, 166, 0.14);
}

.demo-step:hover::after {
  opacity: 1;
}

.demo-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4d9cc0 50%, #0069a6 100%);
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-family: var(--font-heading);
  box-shadow: 0 6px 24px rgba(0, 105, 166, 0.35), 0 2px 6px rgba(0, 105, 166, 0.2);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.demo-step:hover .demo-step__number {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(0, 105, 166, 0.4), 0 4px 10px rgba(0, 105, 166, 0.25);
}

.demo-step__connector {
  position: absolute;
  top: 38px;
  right: -40px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-border));
  z-index: 1;
}

.demo-step:last-child .demo-step__connector {
  display: none;
}

.demo-step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.demo-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Demo page responsive */
@media (max-width: 1024px) {
  .demo-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .demo-hero__content {
    text-align: center;
    padding-top: 0;
  }

  .demo-hero__title {
    font-size: var(--text-4xl);
  }

  .demo-hero__subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-hero__checklist {
    align-items: center;
  }

  .demo-trust {
    justify-content: center;
  }

  .demo-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .demo-step__connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .demo-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-8));
    padding-bottom: var(--space-12);
  }

  .demo-hero__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .demo-form__row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .demo-form-card {
    padding: var(--space-6);
  }

  .demo-trust__badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .demo-hero__title {
    font-size: var(--text-2xl);
  }

  .demo-form-card {
    padding: var(--space-5);
  }
}


/* ===========================================
   60. BILLING PIPELINE (RCM Visual)
   =========================================== */
.billing-pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: var(--space-4) 0 var(--space-8);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.billing-pipeline::-webkit-scrollbar {
  display: none;
}

.billing-pipeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 130px;
  flex: 1;
  padding: var(--space-6) var(--space-3);
  border-radius: var(--radius-xl);
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.billing-pipeline__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: var(--color-primary);
}

/* Done state */
.billing-pipeline__step--done {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(180deg, #f7fdf9, var(--color-bg-white));
}

.billing-pipeline__step--done .billing-pipeline__icon {
  background: #E7F6EE;
  color: #16a34a;
}

/* Active state */
.billing-pipeline__step--active {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #eef4fb, var(--color-bg-white));
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.12);
  transform: translateY(-2px);
}

.billing-pipeline__step--active .billing-pipeline__icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 105, 166, 0.3);
  animation: breathe 3s ease-in-out infinite;
}

.billing-pipeline__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: all 0.3s ease;
}

.billing-pipeline__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.billing-pipeline__text {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Connector arrows */
.billing-pipeline__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 52px;
  margin-top: var(--space-6);
  flex-shrink: 0;
}

.billing-pipeline__connector span {
  width: 20px;
  height: 2px;
  background: var(--color-border);
  position: relative;
  display: block;
}

.billing-pipeline__connector span::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--color-border);
}

/* Pipeline entrance animation */
.billing-pipeline__step {
  opacity: 0;
  transform: translateY(20px);
  animation: pipelineStepIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.billing-pipeline__step:nth-child(1) { animation-delay: 0.1s; }
.billing-pipeline__step:nth-child(3) { animation-delay: 0.18s; }
.billing-pipeline__step:nth-child(5) { animation-delay: 0.26s; }
.billing-pipeline__step:nth-child(7) { animation-delay: 0.34s; }
.billing-pipeline__step:nth-child(9) { animation-delay: 0.42s; }
.billing-pipeline__step:nth-child(11) { animation-delay: 0.5s; }
.billing-pipeline__step:nth-child(13) { animation-delay: 0.58s; }

.billing-pipeline__connector {
  opacity: 0;
  animation: fadeIn 0.3s ease both;
}

.billing-pipeline__connector:nth-child(2) { animation-delay: 0.14s; }
.billing-pipeline__connector:nth-child(4) { animation-delay: 0.22s; }
.billing-pipeline__connector:nth-child(6) { animation-delay: 0.3s; }
.billing-pipeline__connector:nth-child(8) { animation-delay: 0.38s; }
.billing-pipeline__connector:nth-child(10) { animation-delay: 0.46s; }
.billing-pipeline__connector:nth-child(12) { animation-delay: 0.54s; }

@keyframes pipelineStepIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Pipeline responsive */
@media (max-width: 1024px) {
  .billing-pipeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }

  .billing-pipeline__connector {
    display: none;
  }

  .billing-pipeline__step {
    min-width: calc(33% - var(--space-4));
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .billing-pipeline__step {
    min-width: calc(50% - var(--space-3));
  }

  .stats-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .billing-pipeline__step {
    min-width: 100%;
  }
}

/* ============================================================
   MODULES SHOWCASE — Platform page Core Modules section
   ============================================================ */

.modules-showcase {
  position: relative;
  /* overflow removed — theater uses sticky positioning */
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 60%, #f0f7ff 100%);
}

/* Background clip wrapper — clips orbs without affecting sticky */
.modules-showcase__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Module showcase content section */
.modules-showcase__theater {
  position: relative;
  padding: var(--space-24) 0 var(--space-20);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Module deep-link anchors */
.mod-scroll-anchor {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
  display: block;
}

/* Ambient orbs */
.modules-showcase__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.modules-showcase__orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
}
.modules-showcase__orb--2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -150px;
  background: radial-gradient(circle, rgba(20,184,166,0.10) 0%, transparent 70%);
}
.modules-showcase__orb--3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
}

.modules-showcase__theater .container { position: relative; z-index: 1; }

/* Mobile: compact padding for module showcase */
@media (max-width: 960px) {
  .modules-showcase__theater {
    padding: var(--space-20) 0 var(--space-12);
  }
}

/* Header */
.modules-showcase__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.modules-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue-600);
  margin-bottom: var(--space-4);
}

.modules-showcase__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-blue-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.modules-showcase__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.modules-showcase__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Tab Nav ---- */
.mod-tabs { width: 100%; }

.mod-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-10);
}

.mod-tabs__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
  border: 1.5px solid #d0d5dd;
  background: white;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: color 0.22s var(--ease-out),
              background-color 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out),
              transform 0.22s var(--ease-out),
              box-shadow 0.22s var(--ease-out);
  font-family: var(--font-body);
  white-space: nowrap;
}

.mod-tabs__pill:hover {
  border-color: var(--color-blue-300);
  color: var(--color-blue-600);
  background: var(--color-blue-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14,165,233,0.12);
}
/* Per-module hover colors */
.mod-tabs__pill[data-mod="ehr"]:not(.mod-tabs__pill--active):hover    { border-color: #80b8d4; color: var(--color-primary); background: rgba(0,105,166,0.08); box-shadow: 0 4px 12px rgba(0,105,166,0.14); }
.mod-tabs__pill[data-mod="pms"]:not(.mod-tabs__pill--active):hover    { border-color: #86efac; color: #16a34a; background: rgba(34,197,94,0.08); box-shadow: 0 4px 12px rgba(34,197,94,0.14); }
.mod-tabs__pill[data-mod="crm"]:not(.mod-tabs__pill--active):hover    { border-color: #c4b5fd; color: var(--color-secondary); background: rgba(139,92,246,0.08); box-shadow: 0 4px 12px rgba(139,92,246,0.14); }
.mod-tabs__pill[data-mod="patient-app"]:not(.mod-tabs__pill--active):hover { border-color: #fdba74; color: #ea580c; background: rgba(249,115,22,0.08); box-shadow: 0 4px 12px rgba(249,115,22,0.14); }
.mod-tabs__pill[data-mod="analytics"]:not(.mod-tabs__pill--active):hover   { border-color: #fca5a5; color: #dc2626; background: rgba(239,68,68,0.08);  box-shadow: 0 4px 12px rgba(239,68,68,0.14); }
.mod-tabs__pill[data-mod="payments"]:not(.mod-tabs__pill--active):hover    { border-color: #99f6e4; color: #0d9488; background: rgba(20,184,166,0.08); box-shadow: 0 4px 12px rgba(20,184,166,0.14); }
.mod-tabs__pill[data-mod="ai-tools"]:not(.mod-tabs__pill--active):hover    { border-color: #c4b5fd; color: var(--color-secondary); background: rgba(139,92,246,0.08); box-shadow: 0 4px 12px rgba(139,92,246,0.14); }
.mod-tabs__pill[data-mod="rcm"]:not(.mod-tabs__pill--active):hover         { border-color: #99f6e4; color: #0d9488; background: rgba(20,184,166,0.08); box-shadow: 0 4px 12px rgba(20,184,166,0.14); }
.mod-tabs__pill[data-mod="marketplace-mod"]:not(.mod-tabs__pill--active):hover,
.mod-tabs__pill[data-mod="marketplace"]:not(.mod-tabs__pill--active):hover { border-color: #fde68a; color: #d97706; background: rgba(245,158,11,0.08); box-shadow: 0 4px 12px rgba(245,158,11,0.14); }

/* Active tab — white text, color per module */
.mod-tabs__pill--active {
  background: var(--color-blue-600);
  border-color: var(--color-blue-600);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
  transform: translateY(-1px);
}
/* Per-module active colors */
.mod-tabs__pill[data-mod="ehr"].mod-tabs__pill--active         { background: var(--color-primary); border-color: var(--color-primary); color: #fff !important; box-shadow: 0 4px 16px rgba(0,105,166,0.35); }
.mod-tabs__pill[data-mod="pms"].mod-tabs__pill--active         { background: #16a34a; border-color: #16a34a; box-shadow: 0 4px 16px rgba(34,197,94,0.35); }
.mod-tabs__pill[data-mod="crm"].mod-tabs__pill--active         { background: var(--color-secondary); border-color: var(--color-secondary); box-shadow: 0 4px 16px rgba(139,92,246,0.35); }
.mod-tabs__pill[data-mod="patient-app"].mod-tabs__pill--active { background: #ea580c; border-color: #ea580c; box-shadow: 0 4px 16px rgba(249,115,22,0.35); }
.mod-tabs__pill[data-mod="analytics"].mod-tabs__pill--active   { background: #dc2626; border-color: #dc2626; box-shadow: 0 4px 16px rgba(239,68,68,0.35); }
.mod-tabs__pill[data-mod="payments"].mod-tabs__pill--active    { background: #0d9488; border-color: #0d9488; box-shadow: 0 4px 16px rgba(20,184,166,0.35); }
.mod-tabs__pill[data-mod="ai-tools"].mod-tabs__pill--active    { background: var(--color-secondary); border-color: var(--color-secondary); box-shadow: 0 4px 16px rgba(139,92,246,0.35); }
.mod-tabs__pill[data-mod="rcm"].mod-tabs__pill--active         { background: #0d9488; border-color: #0d9488; box-shadow: 0 4px 16px rgba(20,184,166,0.35); }
.mod-tabs__pill[data-mod="marketplace-mod"].mod-tabs__pill--active,
.mod-tabs__pill[data-mod="marketplace"].mod-tabs__pill--active { background: #d97706; border-color: #d97706; box-shadow: 0 4px 16px rgba(245,158,11,0.35); }

.mod-tabs__pill--active:hover,
.mod-tabs__pill--active:focus {
  filter: brightness(1.08);
  color: #fff !important;
}

.mod-tabs__pill-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mod-tabs__pill-icon svg {
  width: 18px; height: 18px;
  display: block;
}
.mod-tabs__pill-icon--blue   { background: rgba(14,165,233,0.15); color: var(--color-blue-600); }
.mod-tabs__pill-icon--green  { background: rgba(34,197,94,0.15);  color: #16a34a; }
.mod-tabs__pill-icon--purple { background: rgba(139,92,246,0.15); color: var(--color-secondary); }
.mod-tabs__pill-icon--orange { background: rgba(249,115,22,0.15); color: #ea580c; }
.mod-tabs__pill-icon--red    { background: rgba(239,68,68,0.15);  color: #dc2626; }
.mod-tabs__pill-icon--teal   { background: rgba(20,184,166,0.15); color: #0d9488; }
.mod-tabs__pill-icon--violet { background: rgba(139,92,246,0.12); color: var(--color-secondary); }
.mod-tabs__pill-icon--gold   { background: rgba(245,158,11,0.15); color: #d97706; }

.mod-tabs__pill--active .mod-tabs__pill-icon,
.mod-tabs__pill--active:hover .mod-tabs__pill-icon {
  background: rgba(255,255,255,0.3);
  color: #fff !important;
}

/* ---- Scroll progress bar (desktop theater) ---- */
.mod-tabs__progress {
  height: 3px;
  background: rgba(14,165,233,0.12);
  border-radius: 100px;
  margin-bottom: var(--space-8);
  overflow: hidden;
}
.mod-tabs__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60c8f5, #0ea5e9);
  border-radius: 100px;
  width: 0%;
  will-change: width;
}
@media (max-width: 960px) {
  .mod-tabs__progress { height: 2px; margin-bottom: var(--space-6); }
}

/* ---- Panels container ---- */
.mod-panels {
  position: relative;
  min-height: 380px;
}

/* ---- Individual Panel ---- */
/* Visibility is controlled by inline styles in JS.
   .mod-panel--active is only added for click-driven animated switches. */
.mod-panel {
  display: none;
  opacity: 0;
}

.mod-panel--active {
  display: block;
  opacity: 1;
  animation: modPanelIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mod-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  padding: var(--space-8);
}

/* Content side */
.mod-panel__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mod-panel__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.mod-panel__badge--blue   { background: rgba(14,165,233,0.1);  color: var(--color-blue-600); }
.mod-panel__badge--green  { background: rgba(34,197,94,0.1);   color: #15803d; }
.mod-panel__badge--purple { background: rgba(139,92,246,0.1);  color: #6d28d9; }
.mod-panel__badge--orange { background: rgba(249,115,22,0.1);  color: #c2410c; }
.mod-panel__badge--red    { background: rgba(239,68,68,0.1);   color: #b91c1c; }
.mod-panel__badge--teal   { background: rgba(20,184,166,0.1);  color: #0f766e; }
.mod-panel__badge--violet { background: rgba(139,92,246,0.1);  color: #6d28d9; }
.mod-panel__badge--gold   { background: rgba(245,158,11,0.1);  color: #b45309; }

.mod-panel__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin: 0;
}

.mod-panel__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.mod-panel__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mod-panel__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  font-weight: 500;
}

.mod-panel__feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  background: rgba(14,165,233,0.1);
  color: var(--color-blue-600);
  font-weight: 700;
}
.mod-panel__feature-check--green  { background: rgba(34,197,94,0.1);  color: #15803d; }
.mod-panel__feature-check--purple { background: rgba(139,92,246,0.1); color: #6d28d9; }
.mod-panel__feature-check--orange { background: rgba(249,115,22,0.1); color: #c2410c; }
.mod-panel__feature-check--red    { background: rgba(239,68,68,0.1);  color: #b91c1c; }
.mod-panel__feature-check--teal   { background: rgba(20,184,166,0.1); color: #0f766e; }
.mod-panel__feature-check--violet { background: rgba(139,92,246,0.1); color: #6d28d9; }
.mod-panel__feature-check--gold   { background: rgba(245,158,11,0.1); color: #b45309; }

.mod-panel__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue-600);
  text-decoration: none;
  transition: gap 0.2s var(--ease-out);
  margin-top: var(--space-2);
}
.mod-panel__link:hover { gap: var(--space-3); }
.mod-panel__link--green  { color: #15803d; }
.mod-panel__link--purple { color: #6d28d9; }
.mod-panel__link--orange { color: #c2410c; }
.mod-panel__link--red    { color: #b91c1c; }
.mod-panel__link--teal   { color: #0f766e; }
.mod-panel__link--violet { color: #6d28d9; }
.mod-panel__link--gold   { color: #b45309; }

/* Visual side */
.mod-panel__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Mockup base ---- */
.mod-mockup {
  width: 100%;
  max-width: 440px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
}

.mod-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mod-mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
  display: block;
}
.mod-mockup__bar span:first-child { background: #fca5a5; }
.mod-mockup__bar span:nth-child(2) { background: #fcd34d; }
.mod-mockup__bar span:nth-child(3) { background: #86efac; }

.mod-mockup__title {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  margin-left: 8px;
}

.mod-mockup__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Color accent tops */
.mod-mockup--blue   { border-top: 3px solid var(--color-blue-500); }
.mod-mockup--green  { border-top: 3px solid #22c55e; }
.mod-mockup--purple { border-top: 3px solid #0069a6; }
.mod-mockup--red    { border-top: 3px solid #ef4444; }
.mod-mockup--teal   { border-top: 3px solid #14b8a6; }
.mod-mockup--violet { border-top: 3px solid #0069a6; }
.mod-mockup--gold   { border-top: 3px solid #f59e0b; }

/* EHR mockup parts */
.mod-mockup__row--header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mod-mockup__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-blue-100, #e0f2fe);
  color: var(--color-blue-600);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mod-mockup__name  { font-size: 13px; font-weight: 700; color: #111827; }
.mod-mockup__meta  { font-size: 11px; color: #6b7280; }
.mod-mockup__status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.mod-mockup__status--green { background: #dcfce7; color: #15803d; }

.mod-mockup__soap {
  display: flex;
  gap: 4px;
}
.mod-mockup__soap-tab {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: #f3f4f6;
  color: #6b7280;
}
.mod-mockup__soap-tab--active {
  background: var(--color-blue-600);
  color: white;
}

.mod-mockup__lines { display: flex; flex-direction: column; gap: 6px; }
.mod-mockup__line {
  height: 8px;
  border-radius: 4px;
  background: #f3f4f6;
}
.mod-mockup__line--full { width: 100%; }
.mod-mockup__line--80   { width: 80%; }
.mod-mockup__line--60   { width: 60%; }

.mod-mockup__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mod-mockup__chip {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.mod-mockup__chip--blue   { background: var(--color-primary-light); color: var(--color-secondary); }
.mod-mockup__chip--green  { background: #f0fdf4; color: #15803d; }
.mod-mockup__chip--violet { background: var(--color-primary-light); color: #6d28d9; }

.mod-mockup__ai-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-secondary);
  font-weight: 600;
  background: var(--color-primary-light);
  border-radius: 8px;
  padding: 6px 10px;
}

/* Float badges */
.mod-mockup__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 100px;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: #111827;
  animation: floatBob 3s ease-in-out infinite;
}
.mod-mockup__float--1 {
  bottom: -10px; left: -20px;
  animation-delay: 0s;
}
.mod-mockup__float--2 {
  top: 10px; right: -20px;
  animation-delay: 1.5s;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Schedule mockup */
.mod-mockup__schedule { display: flex; flex-direction: column; gap: 4px; }
.mod-mockup__slot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
}
.mod-mockup__slot-time { font-weight: 700; width: 36px; color: #374151; flex-shrink: 0; }
.mod-mockup__slot-name { font-weight: 600; flex: 1; color: #111827; }
.mod-mockup__slot-type { font-size: 10px; color: #6b7280; }
.mod-mockup__slot--taken { background: #f0fdf4; }
.mod-mockup__slot--open  { background: #fefce8; border: 1.5px dashed #fcd34d; }
.mod-mockup__slot--new   { background: var(--color-primary-light); }

.mod-mockup__stat-row {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}
.mod-mockup__stat {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
}
.mod-mockup__stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

/* KPI grid */
.mod-mockup__kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mod-mockup__kpi {
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  background: #f9fafb;
}
.mod-mockup__kpi-val {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}
.mod-mockup__kpi-label {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
}
.mod-mockup__kpi--purple { background: #faf5ff; }
.mod-mockup__kpi--red    { background: #fff7f7; }

.mod-mockup__campaign { background: #faf5ff; border-radius: 10px; padding: 10px; }
.mod-mockup__campaign-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: #6d28d9; font-weight: 700; }
.mod-mockup__campaign-name  { font-size: 12px; font-weight: 700; color: #111827; margin: 4px 0 6px; }
.mod-mockup__campaign-meta  { font-size: 10px; color: #6b7280; margin-top: 4px; }
.mod-mockup__progress-bar { height: 5px; border-radius: 3px; background: #e9d5ff; overflow: hidden; }
.mod-mockup__progress-fill { height: 100%; border-radius: 3px; background: var(--color-primary); }
.mod-mockup__progress-fill--purple { background: var(--color-primary); }

/* Phone mockup */
.mod-mockup--phone {
  background: transparent;
  box-shadow: none;
  border: none;
}
.mod-mockup__phone-shell {
  width: 200px;
  margin: 0 auto;
  background: #1f2937;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.mod-mockup__phone-notch {
  width: 60px; height: 16px;
  background: #111827;
  border-radius: 8px;
  margin: 0 auto 8px;
}
.mod-mockup__phone-screen {
  border-radius: 24px;
  background: white;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.mod-mockup__phone-screen--orange { border-top: 3px solid #f97316; }
.mod-mockup__phone-header {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}
.mod-mockup__phone-next {
  background: #fff7ed;
  border-radius: 10px;
  padding: 10px;
}
.mod-mockup__phone-next-label { font-size: 9px; color: #ea580c; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.mod-mockup__phone-next-val   { font-size: 12px; font-weight: 700; color: #111827; margin-top: 2px; }
.mod-mockup__phone-actions {
  display: flex;
  gap: 6px;
}
.mod-mockup__phone-btn {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 4px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
}
.mod-mockup__phone-notif {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #374151;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 7px 10px;
  font-weight: 500;
}

/* Analytics chart */
.mod-mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 8px 0 0;
  border-bottom: 1px solid #f3f4f6;
}
.mod-mockup__chart-bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: #e0f2fe;
  transition: background 0.3s;
}
.mod-mockup__chart-bar--active { background: var(--color-blue-500); }

/* Payments transactions */
.mod-mockup__tx-list { display: flex; flex-direction: column; gap: 6px; }
.mod-mockup__tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f9fafb;
}
.mod-mockup__tx-icon { font-size: 16px; flex-shrink: 0; }
.mod-mockup__tx-info { flex: 1; }
.mod-mockup__tx-info strong { display: block; font-size: 12px; font-weight: 700; color: #111827; }
.mod-mockup__tx-info span   { font-size: 10px; color: #6b7280; }
.mod-mockup__tx-amt { font-size: 13px; font-weight: 800; }
.mod-mockup__tx-amt--pos { color: #15803d; }
.mod-mockup__tx-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f0fdf4;
  font-size: 12px;
  color: #15803d;
}
.mod-mockup__tx-total strong { font-size: 16px; font-weight: 800; }

/* AI session */
.mod-mockup__ai-session {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary-light);
  border-radius: 12px;
  padding: 12px;
}
.mod-mockup__ai-pulse {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.mod-mockup__ai-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.3);
  animation: aiRingPulse 2s ease-out infinite;
}
.mod-mockup__ai-ring--2 { animation-delay: 0.7s; }
@keyframes aiRingPulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.mod-mockup__ai-transcript { flex: 1; }
.mod-mockup__ai-line { font-size: 11px; color: #4c1d95; font-weight: 500; line-height: 1.5; }
.mod-mockup__ai-line--faint { color: var(--color-secondary); opacity: 0.6; }
.mod-mockup__ai-cursor {
  display: inline-block;
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 700;
  animation: blink 1s step-start infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.mod-mockup__ai-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* RCM pipeline */
.mod-mockup__pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 0;
}
.mod-mockup__pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mod-mockup__pipe-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #9ca3af;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.mod-mockup__pipe-label { font-size: 9px; color: #6b7280; font-weight: 600; }
.mod-mockup__pipe-step--done .mod-mockup__pipe-icon { background: #dcfce7; color: #15803d; }
.mod-mockup__pipe-step--active .mod-mockup__pipe-icon {
  background: #0ea5e9;
  color: white;
  box-shadow: 0 0 12px rgba(14,165,233,0.4);
}
.mod-mockup__pipe-arrow { font-size: 12px; color: #d1d5db; margin-bottom: 14px; }

/* Marketplace grid */
.mod-mockup__market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mod-mockup__market-card {
  background: #fffbeb;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.mod-mockup__market-logo  { font-size: 20px; }
.mod-mockup__market-name  { font-size: 11px; font-weight: 700; color: #111827; }
.mod-mockup__market-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: #dcfce7;
  color: #15803d;
}
.mod-mockup__market-badge--add { background: #fef9c3; color: #b45309; }
.mod-mockup__market-footer {
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .mod-panel__inner {
    grid-template-columns: 1fr;
    padding: var(--space-8);
    gap: var(--space-8);
  }
  .mod-mockup__float { display: none; }
}

@media (max-width: 600px) {
  .mod-tabs__nav {
    gap: var(--space-1);
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: var(--space-2);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mod-tabs__nav::-webkit-scrollbar { display: none; }
  .mod-tabs__pill {
    font-size: 12px;
    padding: var(--space-1) var(--space-3);
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .mod-tabs__pill-icon { width: 24px; height: 24px; }
}


/* ===========================================
   HERO 2026 — Announcement / Chips / Float Badges
   =========================================== */

/* Announcement strip */
.hero__announce {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,105,166,0.18);
  border-radius: var(--radius-full);
  padding: 7px 18px 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  box-shadow: 0 2px 12px rgba(0,105,166,0.08);
}

.hero__announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__announce-text { color: var(--color-text-secondary); }
.hero__announce-text strong { color: var(--color-secondary); }

.hero__announce-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-weight: 700;
  transition: gap 0.2s ease;
}
.hero__announce-link:hover { gap: 7px; }

/* Badge upgrade */
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 22px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(0,105,166,0.22);
  box-shadow: 0 2px 12px rgba(0,105,166,0.1);
  letter-spacing: 0.01em;
}

.hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Feature chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15,40,50,0.09);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(15,40,50,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}

.hero__chip:hover {
  border-color: rgba(0,105,166,0.25);
  box-shadow: 0 2px 10px rgba(0,105,166,0.1);
  transform: translateY(-2px);
}

/* ── Hero trust bar ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

.hero__trust-avatars {
  display: flex;
  flex-shrink: 0;
}

.hero__trust-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.hero__trust-avatar + .hero__trust-avatar {
  margin-left: -9px;
}

.hero__trust-avatar--blue   { background: linear-gradient(135deg, #dbeafe, #93c5fd); color: #2563eb; }
.hero__trust-avatar--green  { background: linear-gradient(135deg, #dcfce7, #86efac); color: #16a34a; }
.hero__trust-avatar--amber  { background: linear-gradient(135deg, #fef3c7, #fbbf24); color: #d97706; }
.hero__trust-avatar--purple { background: linear-gradient(135deg, #ede9fe, #c4b5fd); color: #7c3aed; }

.hero__trust-stats {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__trust-stat {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.hero__trust-stat strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.hero__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border, #cbd5e1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES BAR — Standalone section below hero
   ═══════════════════════════════════════════════════════════════ */
.features-bar {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 3vw, 3rem) 0;
  background: linear-gradient(180deg, #f0f5fa 0%, #f7f9fc 100%);
  border-top: 1px solid rgba(0, 105, 166, 0.06);
  border-bottom: 1px solid rgba(0, 105, 166, 0.06);
}

.features-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.features-bar__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.features-bar__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 40, 50, 0.08);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 1px 6px rgba(15, 40, 50, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}

.features-bar__chip:hover {
  border-color: rgba(0, 105, 166, 0.22);
  box-shadow: 0 3px 12px rgba(0, 105, 166, 0.08);
  transform: translateY(-2px);
}

.features-bar__divider {
  width: 100%;
  max-width: 680px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 105, 166, 0.12), transparent);
}

.features-bar__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.features-bar__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.features-bar__stat strong {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.features-bar__stat span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
}

.features-bar__stat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 105, 166, 0.18);
  flex-shrink: 0;
  align-self: center;
}

/* Responsive: features bar mobile */
@media (max-width: 600px) {
  .features-bar__stats {
    gap: 1.25rem;
  }

  .features-bar__stat-dot {
    display: none;
  }

  .features-bar__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Float badges (replace float-element) */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 4;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(15,40,50,0.1), 0 1px 3px rgba(15,40,50,0.06);
}

.float-badge--success {
  background: rgba(240,255,246,0.92);
  border: 1px solid rgba(34,197,94,0.25);
  color: #15803d;
  top: 8%;
  right: -10px;
  animation-delay: 0s;
}

.float-badge--info {
  background: rgba(236,246,251,0.92);
  border: 1px solid rgba(0,105,166,0.2);
  color: #1e40af;
  bottom: 22%;
  left: -12px;
  animation-delay: 1.8s;
}

.float-badge--ai {
  background: rgba(223,235,242,0.92);
  border: 1px solid rgba(139,92,246,0.22);
  color: #6d28d9;
  top: 36%;
  right: -10px;
  animation-delay: 3.5s;
}

.float-badge__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ===========================================
   DASHBOARD V2 — Ultra-Modern App Mock (2026)
   Light · Compact · Smooth · Professional
   =========================================== */
.dashboard-v2 {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(99,118,175,0.10),
    0 2px 12px rgba(0,105,166,0.07),
    0 20px 56px rgba(0,105,166,0.11),
    0 48px 96px rgba(15,40,50,0.05);
  background: var(--card-bg);
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Chrome bar */
.dashboard-v2__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 14px;
  background: #f4f6fa;
  border-bottom: 1px solid rgba(99,118,175,0.09);
}

.dashboard-v2__traffic {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.dashboard-v2__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.85;
}

.dashboard-v2__urlbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(99,118,175,0.13);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 10.5px;
  color: var(--color-text-secondary);
  font-family: monospace;
  max-width: 220px;
  margin: 0 auto;
}

.dashboard-v2__chrome-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.dashboard-v2__chrome-search {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(99,118,175,0.13);
  border-radius: 8px;
  padding: 3px 9px;
  font-size: 10px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dashboard-v2__chrome-search:hover {
  border-color: rgba(0,105,166,0.25);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.06);
}

.dashboard-v2__chrome-search kbd {
  font-size: 9px;
  background: rgba(99,118,175,0.08);
  border-radius: 4px;
  padding: 1px 4px;
  font-family: var(--font-body);
  color: var(--color-text-light);
}

.dashboard-v2__avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0069a6, #0069a6);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,105,166,0.28);
}

/* App body */
.dashboard-v2__body {
  display: flex;
  height: 560px;
  overflow: hidden;
}

/* Sidebar — deep navy */
.dashboard-v2__sidebar {
  width: 158px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0b1d2e 0%, #0e2337 55%, #101f30 100%);
  display: flex;
  flex-direction: column;
  padding: 12px 9px;
  border-right: 1px solid rgba(255,255,255,0.03);
}

.dashboard-v2__sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 6px;
  margin-bottom: 10px;
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.dashboard-v2__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.dashboard-v2__nav-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
  position: relative;
}

.dashboard-v2__nav-item--active {
  background: linear-gradient(135deg, rgba(0,105,166,0.28), rgba(46,150,229,0.13));
  color: #e8f0fb;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(0,105,166,0.18);
}

.dashboard-v2__nav-item--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: linear-gradient(180deg, #4d9cc0, #0069a6);
  border-radius: 0 3px 3px 0;
}

.dashboard-v2__nav-item--ai {
  color: rgba(167,139,250,0.65);
}

.dashboard-v2__nav-item:hover:not(.dashboard-v2__nav-item--active) {
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.72);
  transform: translateX(1px);
}

.dashboard-v2__nav-badge {
  margin-left: auto;
  font-size: 7.5px;
  font-weight: 800;
  background: linear-gradient(135deg, #0069a6, #0069a6);
  color: #fff;
  padding: 2px 5px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.dashboard-v2__sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin-top: 10px;
}

.dashboard-v2__sidebar-user {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.18s;
}

.dashboard-v2__sidebar-user:hover {
  background: rgba(255,255,255,0.055);
}

.dashboard-v2__sidebar-user-avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0069a6, #4d9cc0);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-v2__sidebar-user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.dashboard-v2__sidebar-user-info span:first-child {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-v2__sidebar-user-info span:last-child {
  font-size: 9px;
  color: rgba(255,255,255,0.32);
}

/* Main area */
.dashboard-v2__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: #f7f9fc;
  gap: 12px;
  overflow: hidden;
  min-width: 0;
}

/* Top bar */
.dashboard-v2__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.dashboard-v2__page-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.dashboard-v2__page-sub {
  font-size: 10.5px;
  color: var(--color-text-light);
}

.dashboard-v2__topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dashboard-v2__ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(139,92,246,0.09), rgba(99,102,241,0.06));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  color: #6d28d9;
  white-space: nowrap;
  transition: box-shadow 0.2s;
}

.dashboard-v2__ai-pill:hover {
  box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}

.dashboard-v2__ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(139,92,246,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

.dashboard-v2__notif {
  position: relative;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(99,118,175,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(15,40,50,0.05);
  transition: box-shadow 0.18s, border-color 0.18s;
}

.dashboard-v2__notif:hover {
  border-color: rgba(0,105,166,0.22);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.06);
}

.dashboard-v2__notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: #fff;
  font-size: 7.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #f7f9fc;
}

/* Metric cards row */
.dashboard-v2__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dashboard-v2__metric {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 12px 12px 12px 15px;
  border: 1px solid rgba(99,118,175,0.09);
  box-shadow: 0 1px 3px rgba(15,40,50,0.04), 0 2px 10px rgba(99,118,175,0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dashboard-v2__metric:hover {
  box-shadow: 0 2px 12px rgba(0,105,166,0.1), 0 1px 4px rgba(15,40,50,0.05);
  transform: translateY(-1px);
}

/* Colored left accent bar */
.dashboard-v2__metric::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
}

.dashboard-v2__metric--blue::before   { background: linear-gradient(180deg, #4d9cc0, #0069a6); }
.dashboard-v2__metric--green::before  { background: linear-gradient(180deg, #22c55e, #16a34a); }
.dashboard-v2__metric--purple::before { background: linear-gradient(180deg, #4d9cc0, #163760); }
.dashboard-v2__metric--teal::before   { background: linear-gradient(180deg, #2dd4bf, #0d9488); }

.dashboard-v2__metric-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1px;
  flex-shrink: 0;
}

.dashboard-v2__metric--blue .dashboard-v2__metric-icon   { background: rgba(0,105,166,0.09);  color: var(--color-primary); }
.dashboard-v2__metric--green .dashboard-v2__metric-icon  { background: rgba(22,163,74,0.09);   color: #16a34a; }
.dashboard-v2__metric--purple .dashboard-v2__metric-icon { background: rgba(124,58,237,0.09);  color: var(--color-secondary); }
.dashboard-v2__metric--teal .dashboard-v2__metric-icon   { background: rgba(13,148,136,0.09);  color: #0d9488; }

.dashboard-v2__metric-label {
  font-size: 9.5px;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-v2__metric-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.dashboard-v2__metric-val {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--color-secondary);
}

.dashboard-v2__delta {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 6px;
  white-space: nowrap;
  background: rgba(15,40,50,0.05);
  color: var(--color-text-light);
}

.dashboard-v2__delta--up   { background: rgba(34,197,94,0.1);  color: #15803d; }
.dashboard-v2__delta--warn { background: rgba(245,158,11,0.1); color: #b45309; }

/* Sparkline mini-bars */
.dashboard-v2__metric-spark {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 22px;
  margin-top: 5px;
}

.dashboard-v2__metric-spark span {
  flex: 1;
  border-radius: 2px;
  min-height: 3px;
}

.dashboard-v2__metric--blue .dashboard-v2__metric-spark span   { background: rgba(0,105,166,0.18); }
.dashboard-v2__metric--green .dashboard-v2__metric-spark span  { background: rgba(34,197,94,0.18); }
.dashboard-v2__metric--teal .dashboard-v2__metric-spark span   { background: rgba(20,184,166,0.18); }

.dashboard-v2__metric--blue .dashboard-v2__metric-spark span:last-child   { background: #4d9cc0; }
.dashboard-v2__metric--green .dashboard-v2__metric-spark span:last-child  { background: #22c55e; }
.dashboard-v2__metric--teal .dashboard-v2__metric-spark span:last-child   { background: #14b8a6; }

/* Donut ring (purple metric) */
.dashboard-v2__metric-ring {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

/* Content row */
.dashboard-v2__content-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.dashboard-v2__card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(99,118,175,0.09);
  box-shadow: 0 1px 3px rgba(15,40,50,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}

.dashboard-v2__card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.dashboard-v2__card-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.dashboard-v2__card-pill {
  font-size: 9.5px;
  font-weight: 600;
  background: rgba(99,118,175,0.07);
  color: var(--color-text-light);
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.dashboard-v2__card-pill--blue { background: rgba(0,105,166,0.08); color: var(--color-primary); }
.dashboard-v2__card-pill--up   { background: rgba(34,197,94,0.09);  color: #15803d; }

/* Chart */
.dashboard-v2__chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
}

.dashboard-v2__chart svg {
  flex: 1;
  width: 100%;
  height: 0;
  min-height: 62px;
  max-height: 82px;
  display: block;
}

.dashboard-v2__chart-months {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: var(--color-text-light);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 2px;
}

/* Schedule */
.dashboard-v2__schedule {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dashboard-v2__appt {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.15s ease;
  border: 1px solid transparent;
}

.dashboard-v2__appt--active {
  background: rgba(0,105,166,0.04);
  border-color: rgba(0,105,166,0.1);
}

.dashboard-v2__appt-time {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--color-text-light);
  width: 26px;
  flex-shrink: 0;
}

.dashboard-v2__appt-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 7.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-v2__appt-name {
  flex: 1;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-v2__appt-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

.dashboard-v2__appt-tag--done { background: rgba(99,118,175,0.07); color: var(--color-text-light); }
.dashboard-v2__appt-tag--now  { background: rgba(0,105,166,0.10); color: var(--color-primary); }
.dashboard-v2__appt-tag--next { background: rgba(245,158,11,0.09);  color: #d97706; }
.dashboard-v2__appt-tag--up   { background: rgba(99,118,175,0.06);   color: var(--color-text-light); }

/* Bottom row: AI Insights + Quick Actions */
.dashboard-v2__bottom-row {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 8px;
}

/* AI Insights card */
.dashboard-v2__ai-card {
  background: linear-gradient(135deg, rgba(109,40,217,0.03) 0%, rgba(0,105,166,0.025) 100%);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-v2__ai-card-hd {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
}

.dashboard-v2__ai-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0069a6, #0069a6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 7px rgba(139,92,246,0.28);
}

.dashboard-v2__ai-live {
  margin-left: auto;
  font-size: 8.5px;
  font-weight: 800;
  background: rgba(34,197,94,0.09);
  color: #15803d;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dashboard-v2__ai-insights {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dashboard-v2__ai-insight {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 9.5px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.dashboard-v2__ai-insight-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.dashboard-v2__ai-insight strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* Quick Actions */
.dashboard-v2__quick-actions {
  background: var(--card-bg);
  border: 1px solid rgba(99,118,175,0.09);
  border-radius: 12px;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(15,40,50,0.04);
}

.dashboard-v2__qa-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.dashboard-v2__qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.dashboard-v2__qa-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 4px;
  background: #f7f9fc;
  border: 1px solid rgba(99,118,175,0.09);
  border-radius: 10px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.15s, border-color 0.18s, color 0.15s, transform 0.12s, box-shadow 0.18s;
  font-family: var(--font-body);
}

.dashboard-v2__qa-btn:hover {
  background: rgba(0,105,166,0.05);
  border-color: rgba(0,105,166,0.18);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,105,166,0.09);
}

/* Responsive */
@media (max-width: 768px) {
  .hero__announce { display: none; }
  .hero__chips { gap: var(--space-2); }
  .dashboard-v2__sidebar { width: 42px; }
  .dashboard-v2__sidebar-brand span,
  .dashboard-v2__nav-item span,
  .dashboard-v2__nav-badge,
  .dashboard-v2__sidebar-user-info,
  .dashboard-v2__chrome-search { display: none; }
  .dashboard-v2__nav-item { justify-content: center; padding: 6px; }
  .dashboard-v2__sidebar-brand { justify-content: center; }
  .dashboard-v2__metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard-v2__content-row { grid-template-columns: 1fr; }
  .dashboard-v2__bottom-row { grid-template-columns: 1fr; }
  .dashboard-v2__card:last-child { display: none; }
  .dashboard-v2__quick-actions { display: none; }
}


/* ===========================================
   THE SHIFT — 2026 Redesign
   =========================================== */
.shift-section {
  background: linear-gradient(160deg, #f8fbff 0%, #ecf6fb 40%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}

.shift-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,105,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.shift-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.shift-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.shift-header__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0,105,166,0.1), rgba(139,92,246,0.08));
  border: 1px solid rgba(0,105,166,0.18);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
}

.shift-header__title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  font-family: var(--font-heading);
}

.shift-header__sub {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Shift Cards — Horizontal Row Layout ── */
.shift-cards-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Arrow connectors between cards */
.shift-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15,40,50,0.18);
  padding: 0 clamp(4px, 1vw, 12px);
  align-self: center;
}
.shift-card__arrow svg {
  flex-shrink: 0;
}

/* Individual card */
.shift-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
  box-shadow: 0 1px 4px rgba(15,40,50,0.06), 0 4px 20px rgba(15,40,50,0.05);
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 3px solid transparent;
}

.shift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(15,40,50,0.1), 0 2px 8px rgba(15,40,50,0.05);
}

/* Color variants — top border accent */
.shift-card--blue   { border-top-color: #0069a6; }
.shift-card--orange { border-top-color: #f59e0b; }
.shift-card--green  { border-top-color: #22c55e; }
.shift-card--purple { border-top-color: #7c3aed; }

/* Hover glow per color */
.shift-card--blue:hover   { box-shadow: 0 8px 32px rgba(0,105,166,0.12), 0 2px 8px rgba(15,40,50,0.05); }
.shift-card--orange:hover { box-shadow: 0 8px 32px rgba(245,158,11,0.12), 0 2px 8px rgba(15,40,50,0.05); }
.shift-card--green:hover  { box-shadow: 0 8px 32px rgba(34,197,94,0.12), 0 2px 8px rgba(15,40,50,0.05); }
.shift-card--purple:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.12), 0 2px 8px rgba(15,40,50,0.05); }

/* Step number */
.shift-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  letter-spacing: -0.02em;
  transition: transform 0.35s var(--ease-spring);
}
.shift-card:hover .shift-card__num { transform: scale(1.1); }

.shift-card--blue .shift-card__num   { background: linear-gradient(135deg,#1b7fd4,#0069a6); box-shadow: 0 3px 12px rgba(0,105,166,0.35); }
.shift-card--orange .shift-card__num { background: linear-gradient(135deg,#f7b733,#f59e0b); box-shadow: 0 3px 12px rgba(245,158,11,0.35); }
.shift-card--green .shift-card__num  { background: linear-gradient(135deg,#34d472,#22c55e); box-shadow: 0 3px 12px rgba(34,197,94,0.35); }
.shift-card--purple .shift-card__num { background: linear-gradient(135deg,#a47af5,#7c3aed); box-shadow: 0 3px 12px rgba(124,58,237,0.35); }

/* Card icon */
.shift-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.shift-card:hover .shift-card__icon { transform: scale(1.08); }

.shift-card--blue .shift-card__icon   { background: rgba(0,105,166,0.08);  color: #0069a6; }
.shift-card--orange .shift-card__icon { background: rgba(245,158,11,0.1);  color: #d97706; }
.shift-card--green .shift-card__icon  { background: rgba(34,197,94,0.1);   color: #16a34a; }
.shift-card--purple .shift-card__icon { background: rgba(124,58,237,0.1);  color: #7c3aed; }

/* Card title */
.shift-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.3;
}

/* Card description */
.shift-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Card badge */
.shift-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-heading);
  width: fit-content;
}

.shift-card__badge--blue   { background: rgba(0,105,166,0.09);  color: #0069a6; }
.shift-card__badge--orange { background: rgba(245,158,11,0.1);  color: #b45309; }
.shift-card__badge--green  { background: rgba(34,197,94,0.1);   color: #15803d; }
.shift-card__badge--purple { background: rgba(124,58,237,0.1);  color: #6d28d9; }

/* ── Shift Stats Row ── */
.shift-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  background: var(--card-bg);
  border: 1px solid rgba(15,40,50,0.07);
  border-radius: var(--radius-2xl);
  padding: var(--space-4) var(--space-10);
  box-shadow: var(--shadow-card);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.shift-stats-row__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shift-stats-row__val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), #0069a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.shift-stats-row__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
}

.shift-stats-row__divider {
  width: 1px;
  height: 28px;
  background: rgba(15,40,50,0.1);
}

/* ── Responsive: Shift Cards ── */
@media (max-width: 1024px) {
  .shift-cards-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .shift-card__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .shift-cards-row {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .shift-header__title { font-size: 1.7rem; }
}

/* ── Dark theme — Shift Cards ── */
[data-theme="dark"] .shift-card {
  background: rgba(255,255,255,0.04);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2), 0 4px 20px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .shift-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
[data-theme="dark"] .shift-card--blue   { border-top-color: #3b82f6; }
[data-theme="dark"] .shift-card--orange { border-top-color: #f59e0b; }
[data-theme="dark"] .shift-card--green  { border-top-color: #22c55e; }
[data-theme="dark"] .shift-card--purple { border-top-color: #8b5cf6; }
[data-theme="dark"] .shift-card__title  { color: #fff; }
[data-theme="dark"] .shift-card__text   { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .shift-card__arrow  { color: rgba(255,255,255,0.15); }
[data-theme="dark"] .shift-stats-row {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* ============================================================
   PLATFORM FLOW — ADVANCED HUB-SPOKE SECTION
   ============================================================ */

.pflow-section {
  background: linear-gradient(165deg, #f0f6fb 0%, #e8f1f8 35%, #eaf0f7 65%, #f2f7fc 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}

/* Decorative background */
.pflow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pflow-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,105,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,105,166,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.pflow-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pflow-bg__glow--1 {
  width: 500px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,105,166,0.15) 0%, transparent 70%);
}

.pflow-bg__glow--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -100px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.1) 0%, transparent 70%);
}

.pflow-bg__glow--3 {
  width: 300px; height: 300px;
  bottom: 20%; left: -60px;
  background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 70%);
}

/* Header */
.pflow-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
  position: relative;
  z-index: 2;
}

.pflow-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0,105,166,0.15);
  border: 1px solid rgba(0,105,166,0.25);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0069a6;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
}

.pflow-header__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0069a6;
  animation: pfDotPulse 2s ease-in-out infinite;
}

@keyframes pfDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(91,184,245,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(91,184,245,0); }
}

.pflow-header__title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  color: #0f2832;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  font-family: var(--font-heading);
}

.pflow-header__sub {
  font-size: var(--text-base);
  color: rgba(15,40,50,0.6);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Diagram container */
.pflow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  position: relative;
  z-index: 2;
}

/* Hub wrap: 700×700 canvas */
.pflow-hub-wrap {
  position: relative;
  width: 700px;
  height: 700px;
  flex-shrink: 0;
  overflow: visible;
}

.pflow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

/* Center hub */
.pflow-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f2832 0%, #0069a6 60%, #0080cc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow:
    0 0 0 12px rgba(0,105,166,0.1),
    0 0 0 24px rgba(0,105,166,0.05),
    0 0 60px rgba(0,105,166,0.25),
    0 16px 48px rgba(0,0,0,0.15);
}

.pflow-hub__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(91,184,245,0.2);
  animation: pfHubRingSpin 20s linear infinite;
  background: conic-gradient(from 0deg, rgba(91,184,245,0.3), transparent 30%, transparent 70%, rgba(91,184,245,0.3));
  -webkit-mask: radial-gradient(transparent 60%, black 61%);
  mask: radial-gradient(transparent 60%, black 61%);
}

@keyframes pfHubRingSpin {
  to { transform: rotate(360deg); }
}

.pflow-hub__label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.pflow-hub__sub {
  font-size: 9.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  white-space: nowrap;
}

/* Module nodes */
.pflow-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 4;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.35s ease;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pflow-node:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 20px var(--node-glow, rgba(0,105,166,0.15));
  transform: scale(1.08) !important;
}

.pflow-node__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.pflow-node__label {
  font-size: 12.5px;
  font-weight: 800;
  color: #1a2e3b;
  letter-spacing: 0.01em;
}

.pflow-node__detail {
  font-size: 10px;
  color: rgba(15,40,50,0.5);
  font-weight: 500;
}

/* Node positions (700×700 canvas, hub center at 350,350) */
.pflow-node--top    { top: 50px;  left: 50%; transform: translateX(-50%); }
.pflow-node--tr     { top: 90px;  right: 30px; }
.pflow-node--right  { top: 50%;   right: 20px; transform: translateY(-50%); }
.pflow-node--br     { bottom: 90px; right: 30px; }
.pflow-node--bottom { bottom: 50px; left: 50%; transform: translateX(-50%); }
.pflow-node--bl     { bottom: 90px; left: 30px; }
.pflow-node--left   { top: 50%;   left: 20px; transform: translateY(-50%); }
.pflow-node--tl     { top: 90px;  left: 30px; }

/* Node color variants */
.pflow-node--blue .pflow-node__icon    { background: rgba(37,99,235,0.15);  color: #60a5fa; --node-glow: rgba(37,99,235,0.4); }
.pflow-node--blue   { border-top: 2px solid rgba(37,99,235,0.4); }

.pflow-node--emerald .pflow-node__icon { background: rgba(16,185,129,0.15); color: #34d399; --node-glow: rgba(16,185,129,0.4); }
.pflow-node--emerald { border-top: 2px solid rgba(16,185,129,0.4); }

.pflow-node--violet .pflow-node__icon  { background: rgba(139,92,246,0.15); color: #a78bfa; --node-glow: rgba(139,92,246,0.4); }
.pflow-node--violet  { border-top: 2px solid rgba(139,92,246,0.4); }

.pflow-node--amber .pflow-node__icon   { background: rgba(245,158,11,0.15); color: #fbbf24; --node-glow: rgba(245,158,11,0.4); }
.pflow-node--amber   { border-top: 2px solid rgba(245,158,11,0.4); }

.pflow-node--pink .pflow-node__icon    { background: rgba(236,72,153,0.15); color: #f472b6; --node-glow: rgba(236,72,153,0.4); }
.pflow-node--pink    { border-top: 2px solid rgba(236,72,153,0.4); }

.pflow-node--green .pflow-node__icon   { background: rgba(34,197,94,0.15);  color: #4ade80; --node-glow: rgba(34,197,94,0.4); }
.pflow-node--green   { border-top: 2px solid rgba(34,197,94,0.4); }

.pflow-node--indigo .pflow-node__icon  { background: rgba(99,102,241,0.15); color: #818cf8; --node-glow: rgba(99,102,241,0.4); }
.pflow-node--indigo  { border-top: 2px solid rgba(99,102,241,0.4); }

.pflow-node--rose .pflow-node__icon    { background: rgba(244,63,94,0.15);  color: #fb7185; --node-glow: rgba(244,63,94,0.4); }
.pflow-node--rose    { border-top: 2px solid rgba(244,63,94,0.4); }

/* Process Flow Cards Row */
.pflow-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  width: 100%;
  max-width: 1000px;
}

.pflow-process-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  position: relative;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pflow-process-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pflow-process-card__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  flex-shrink: 0;
}

.pflow-process-card__num--blue    { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 4px 14px rgba(37,99,235,0.35); }
.pflow-process-card__num--emerald { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 14px rgba(16,185,129,0.35); }
.pflow-process-card__num--violet  { background: linear-gradient(135deg, #7c3aed, #6d28d9); box-shadow: 0 4px 14px rgba(139,92,246,0.35); }
.pflow-process-card__num--amber   { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 14px rgba(245,158,11,0.35); }

.pflow-process-card__content {
  flex: 1;
  min-width: 0;
}

.pflow-process-card__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #1a2e3b;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.pflow-process-card__text {
  font-size: 12px;
  color: rgba(15,40,50,0.55);
  line-height: 1.6;
  margin: 0;
}

.pflow-process-card__arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,105,166,0.1);
  border: 1px solid rgba(0,105,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0069a6;
  z-index: 5;
}

.pflow-process-card:last-child .pflow-process-card__arrow { display: none; }

/* Stats Bar */
.pflow-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-2xl);
  padding: var(--space-5) var(--space-10);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pflow-stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pflow-stats__val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #5bb8f5, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pflow-stats__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(15,40,50,0.5);
  letter-spacing: 0.01em;
}

.pflow-stats__div {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .pflow-hub-wrap { width: 520px; height: 520px; }
  .pflow-hub { width: 110px; height: 110px; }
  .pflow-process-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .pflow-process-card__arrow { display: none !important; }
}

@media (max-width: 768px) {
  .pflow-hub-wrap { width: 360px; height: 360px; }
  .pflow-hub { width: 90px; height: 90px; }
  .pflow-hub__label { font-size: 11px; }
  .pflow-node { padding: 10px 12px 8px; min-width: 70px; }
  .pflow-node__icon { width: 32px; height: 32px; border-radius: 8px; }
  .pflow-node__icon svg { width: 14px; height: 14px; }
  .pflow-node__label { font-size: 10.5px; }
  .pflow-node__detail { font-size: 8.5px; }
  .pflow-node--tr  { top: 60px; right: 5px; }
  .pflow-node--br  { bottom: 60px; right: 5px; }
  .pflow-node--bl  { bottom: 60px; left: 5px; }
  .pflow-node--tl  { top: 60px; left: 5px; }
  .pflow-process-row { grid-template-columns: 1fr; }
  .pflow-header__title { font-size: 1.6rem; }
  .pflow-stats { flex-wrap: wrap; gap: var(--space-4); padding: var(--space-4) var(--space-6); }
}

@media (max-width: 480px) {
  .pflow-hub-wrap { width: 300px; height: 300px; }
  .pflow-hub { width: 76px; height: 76px; }
  .pflow-node { padding: 8px 10px 6px; min-width: 58px; border-radius: 10px; }
  .pflow-node__icon { width: 26px; height: 26px; border-radius: 6px; }
  .pflow-node__icon svg { width: 12px; height: 12px; }
  .pflow-node__label { font-size: 9px; }
  .pflow-node__detail { display: none; }
  .pflow-node--top    { top: 20px; }
  .pflow-node--bottom { bottom: 20px; }
  .pflow-node--right  { right: 0; }
  .pflow-node--left   { left: 0; }
  .pflow-node--tr  { top: 35px; right: 0; }
  .pflow-node--br  { bottom: 35px; right: 0; }
  .pflow-node--bl  { bottom: 35px; left: 0; }
  .pflow-node--tl  { top: 35px; left: 0; }
}

/* ============================================================
   2026 MODERN ENHANCEMENTS
   Scroll-driven animations, view transitions, advanced effects
   ============================================================ */

/* --- Scroll-driven animation timeline (2026 CSS) --- */
@supports (animation-timeline: scroll()) {
  .hero__image {
    animation: heroParallax linear;
    animation-timeline: scroll();
    animation-range: 0% 40%;
  }
  @keyframes heroParallax {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-30px) scale(0.98); opacity: 0.85; }
  }

  .section-header {
    animation: sectionReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
  @keyframes sectionReveal {
    from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
}

/* --- Enhanced smooth scrolling with scroll-behavior --- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
}

/* --- Modern color-mix for hover states --- */
@supports (color: color-mix(in srgb, red, blue)) {
  .btn--primary:hover {
    background: color-mix(in srgb, var(--color-primary) 85%, #000);
  }
  .card:hover {
    border-color: color-mix(in srgb, var(--color-primary) 20%, transparent);
  }
  .feature-card:hover .feature-card__icon {
    background: color-mix(in srgb, var(--color-primary) 12%, white);
  }
}

/* --- View Transition API support (page transitions) --- */
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: fadeSlideOut 0.25s ease-in forwards;
}
::view-transition-new(root) {
  animation: fadeSlideIn 0.3s ease-out forwards;
}
@keyframes fadeSlideOut {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
}

/* --- Enhanced glassmorphism with backdrop-filter layering --- */
.glass-card,
.header.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* --- Modern text-wrap balance for headings --- */
h1, h2, h3,
.hero__title,
.section-header__title,
.cta-section__title {
  text-wrap: balance;
}

/* --- Container queries for component-level responsiveness --- */
@supports (container-type: inline-size) {
  .card,
  .feature-card,
  .integration-card {
    container-type: inline-size;
  }
}

/* --- Enhanced focus-visible for keyboard accessibility --- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Smooth underline animation for navigation links --- */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
  left: 0;
}

/* --- Glow effect for CTA sections --- */
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 105, 166, 0.08), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(22, 55, 96, 0.06), transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* --- Enhanced card hover with inner glow --- */
.card:hover,
.feature-card:hover,
.role-card:hover {
  box-shadow: var(--shadow-card-hover),
              inset 0 1px 0 rgba(255,255,255,0.8);
}

/* --- Smooth gradient border for highlighted elements --- */
.feature-card--highlighted {
  position: relative;
  border: none;
  background: #fff;
}
.feature-card--highlighted::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-primary), #0069a6, var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --- Typing cursor blink animation --- */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--color-primary);
  margin-left: 2px;
  animation: cursorBlink 0.8s ease-in-out infinite;
  vertical-align: text-bottom;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Enhanced badge pulse animation --- */
.hero__badge-pulse {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* --- Smooth stat counter animation helper --- */
.stat__number {
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

/* --- Workflow steps connector line enhancement --- */
.workflow-steps {
  position: relative;
}
.workflow-step {
  position: relative;
}
.workflow-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  width: calc(100% + var(--space-8, 2rem));
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.15;
  z-index: 0;
}
.workflow-step:last-child::before {
  display: none;
}

/* --- Smooth accordion transition enhancement --- */
.accordion__content {
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion__icon svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Enhanced billing pipeline step animations --- */
.billing-pipeline__step {
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.billing-pipeline__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.billing-pipeline__connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  animation: pipelineFlow 2s ease-in-out infinite;
}
@keyframes pipelineFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* --- Mega menu entrance enhancement --- */
.mega-menu {
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
}

/* --- Print styles --- */
@media print {
  .header, .footer, .chat-widget, .mega-menu, .mobile-menu,
  .hero-canvas, .global-bg-canvas, .aurora, .light-particles {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .section { padding: 1rem 0; }
  a { color: #000; text-decoration: underline; }
}


/* ================================================================
   PLATINUM 2026 — COMPREHENSIVE MODERNIZATION LAYER
   Deep visual refinement: every section, every pixel.
   Think: Stripe + Linear + Vercel × healthcare precision.
   ================================================================ */

/* ────────────────────────────────────────────────────────────────
   BASE ENHANCEMENTS
   ──────────────────────────────────────────────────────────────── */

html {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  letter-spacing: -0.003em;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 105, 166, 0.35); }

/* ────────────────────────────────────────────────────────────────
   TYPOGRAPHY ENHANCEMENTS
   ──────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  color: var(--color-secondary);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h3 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.72;
}

/* ────────────────────────────────────────────────────────────────
   GRADIENT TEXT — ELECTRIC PALETTE
   ──────────────────────────────────────────────────────────────── */

.text-gradient,
.text-gradient-primary {
  background: linear-gradient(135deg, #0069a6 0%, #4d9cc0 50%, #4d9cc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-shimmer {
  background: linear-gradient(
    120deg,
    #163760 0%,
    #0069a6 20%,
    #4d9cc0 40%,
    #4d9cc0 60%,
    #0069a6 80%,
    #163760 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGradient 5s linear infinite;
}

@keyframes shimmerGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.text-gradient-warm {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ────────────────────────────────────────────────────────────────
   HEADER — GLASS REFINEMENT
   ──────────────────────────────────────────────────────────────── */

.header {
  height: var(--header-height);
  background: rgba(250, 251, 253, 0.85);
  backdrop-filter: saturate(1.6) blur(24px);
  -webkit-backdrop-filter: saturate(1.6) blur(24px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  transition: box-shadow 0.35s var(--ease-out),
              background-color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}

.header.scrolled {
  background: rgba(250, 251, 253, 0.96);
  box-shadow: 0 1px 0 rgba(226, 232, 240, 0.6),
              0 4px 20px rgba(15, 23, 42, 0.04),
              0 2px 6px rgba(15, 23, 42, 0.02);
  border-bottom-color: rgba(226, 232, 240, 0.7);
}

.header__wordmark {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-secondary);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  padding: 7px 14px;
  transition: color var(--transition-fast),
              background-color var(--transition-fast);
  letter-spacing: -0.005em;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(0, 105, 166, 0.06);
}

.nav-link--has-menu {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s var(--ease-out);
  opacity: 0.5;
}

.nav-item--mega.mega-open .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Header CTA Button */
.header__actions .btn--primary,
.header .btn--primary {
  background: linear-gradient(135deg, #0069a6, #163760);
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.28),
              0 1px 2px rgba(0, 105, 166, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  transition: transform 0.18s var(--ease-spring),
              box-shadow 0.18s ease,
              filter 0.18s ease;
}

.header__actions .btn--primary:hover,
.header .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 105, 166, 0.36),
              0 2px 6px rgba(0, 105, 166, 0.2);
  filter: brightness(1.06);
}

/* ────────────────────────────────────────────────────────────────
   MEGA MENU — GLASS ELEVATION
   ──────────────────────────────────────────────────────────────── */

.mega-menu {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08),
              0 4px 12px rgba(15, 23, 42, 0.04);
}

.mega-link {
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease,
              transform 0.2s var(--ease-spring);
}

.mega-link:hover {
  background-color: rgba(0, 105, 166, 0.05);
  transform: translateX(3px);
}

.mega-link__icon {
  border-radius: 10px;
  width: 36px;
  height: 36px;
  transition: transform 0.2s var(--ease-spring);
}

.mega-link:hover .mega-link__icon {
  transform: scale(1.08);
}

.mega-highlight blockquote {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--color-secondary);
  font-weight: 500;
  font-style: italic;
}

/* ────────────────────────────────────────────────────────────────
   HERO SECTION — 2026 MODERN SOFT REDESIGN
   ──────────────────────────────────────────────────────────────── */

.hero {
  min-height: calc(100svh - var(--header-height));
  padding-top: calc(var(--header-height) + clamp(2rem, 3vw, 3.5rem));
  padding-bottom: clamp(3rem, 4vw, 5rem);
  background:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(0, 105, 166, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 65% 45% at 82% 18%, rgba(22, 55, 96, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 18% 80%, rgba(0, 105, 166, 0.03) 0%, transparent 60%),
    var(--color-bg);
}

.hero__title {
  font-size: clamp(2.4rem, 1.8rem + 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 680px;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.hero--centered .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Announcement strip — pill with gradient border */
.hero__announce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 105, 166, 0.14);
  border-radius: var(--radius-full);
  padding: 9px 22px 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: 0 2px 16px rgba(0, 105, 166, 0.06),
              0 1px 4px rgba(15, 23, 42, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-spring);
}

.hero__announce:hover {
  border-color: rgba(0, 105, 166, 0.28);
  box-shadow: 0 4px 24px rgba(0, 105, 166, 0.10);
  transform: translateY(-1px);
}

.hero__announce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25),
              0 0 0 6px rgba(34, 197, 94, 0.08);
  animation: announceDot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes announceDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25), 0 0 0 6px rgba(34,197,94,0.08); }
  50%  { box-shadow: 0 0 0 5px rgba(34,197,94,0.18), 0 0 0 10px rgba(34,197,94,0.04); }
}

.hero__announce-text { color: var(--color-text-secondary); font-size: 13.5px; }
.hero__announce-text strong { color: var(--color-secondary); font-weight: 700; }

.hero__announce-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s var(--ease-spring);
}
.hero__announce-link:hover { gap: 8px; }

/* Badge pill */
.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 9px 24px 9px 14px;
  background: linear-gradient(135deg, rgba(236,246,251,0.92), rgba(223,235,242,0.92));
  backdrop-filter: blur(16px);
  color: var(--color-primary);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  border: 1.5px solid rgba(0, 105, 166, 0.12);
  box-shadow: 0 2px 14px rgba(0, 105, 166, 0.07);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.2);
  animation: badgePulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero feature chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.005em;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04),
              0 0 0 0 rgba(0, 105, 166, 0);
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s var(--ease-spring),
              background-color 0.3s ease;
  white-space: nowrap;
}

.hero__chip:hover {
  border-color: rgba(0, 105, 166, 0.22);
  background: rgba(239, 246, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.08),
              0 1px 4px rgba(15, 23, 42, 0.03);
  transform: translateY(-2px);
}

/* Social proof row */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.hero--centered .hero__social-proof { justify-content: center; }

.hero__proof-item strong {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__proof-item span {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-weight: 500;
  letter-spacing: 0.015em;
  margin-top: 4px;
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,0.1), transparent);
  flex-shrink: 0;
}

/* Hero dashboard image wrapper */
.hero__image {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-hero);
}

/* ────────────────────────────────────────────────────────────────
   AURORA ORBS — MORE VIBRANT
   ──────────────────────────────────────────────────────────────── */

.aurora__orb--1 {
  background: radial-gradient(circle at center,
    rgba(0, 105, 166, 0.18) 0%,
    rgba(22, 55, 96, 0.10) 40%,
    transparent 70%);
  width: 700px;
  height: 700px;
  top: -200px;
  left: -100px;
  animation: auroraFloat 22s ease-in-out infinite;
}

.aurora__orb--2 {
  background: radial-gradient(circle at center,
    rgba(22, 55, 96, 0.12) 0%,
    rgba(22, 55, 96, 0.07) 40%,
    transparent 70%);
  width: 600px;
  height: 600px;
  top: 10%;
  right: -80px;
  animation: auroraFloat 28s ease-in-out infinite reverse;
}

.aurora__orb--3 {
  background: radial-gradient(circle at center,
    rgba(77, 156, 192, 0.10) 0%,
    rgba(0, 105, 166, 0.06) 40%,
    transparent 70%);
  width: 500px;
  height: 500px;
  bottom: 5%;
  left: 35%;
  animation: auroraFloat 18s ease-in-out infinite 4s;
}

/* ────────────────────────────────────────────────────────────────
   FLOAT BADGES — PREMIUM GLASS
   ──────────────────────────────────────────────────────────────── */

.float-badge {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.10),
              0 1px 4px rgba(15, 23, 42, 0.06),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  animation: floatBadge 7s ease-in-out infinite;
}

.float-badge--success {
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  color: #15803d;
  background: rgba(240, 253, 244, 0.97);
}

.float-badge--info {
  border: 1.5px solid rgba(0, 105, 166, 0.2);
  color: #1e40af;
  background: rgba(239, 246, 255, 0.97);
}

.float-badge--ai {
  border: 1.5px solid rgba(22, 55, 96, 0.22);
  color: var(--color-secondary);
  background: rgba(238, 242, 255, 0.97);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  33%  { transform: translateY(-8px) rotate(0.5deg); }
  66%  { transform: translateY(-4px) rotate(-0.3deg); }
}

/* ────────────────────────────────────────────────────────────────
   BUTTONS — 2026 POLISHED SYSTEM
   ──────────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-spring),
              box-shadow 0.2s ease,
              filter 0.2s ease,
              background-color 0.2s ease;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.btn:hover::after { opacity: 1; }

.btn:active {
  transform: translateY(1px) scale(0.985) !important;
  filter: brightness(0.96);
}

/* Primary Button */
.btn--primary {
  background: linear-gradient(135deg, #0069a6 0%, #163760 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(0, 105, 166, 0.25),
              0 1px 4px rgba(0, 105, 166, 0.12);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0074b8 0%, #1a4070 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 105, 166, 0.30),
              0 2px 8px rgba(0, 105, 166, 0.15);
}

/* Gradient CTA Button — ps_accent coral orange */
.btn--gradient {
  background: linear-gradient(135deg, #ff8956 0%, #f07040 50%, #e06030 100%);
  background-size: 200% 200%;
  animation: gradientPulse 6s ease infinite;
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(255, 137, 86, 0.30),
              0 1px 6px rgba(255, 137, 86, 0.15);
}

.btn--gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 137, 86, 0.38),
              0 4px 14px rgba(255, 137, 86, 0.22);
  animation-play-state: paused;
  background-position: 100% 50%;
}

@keyframes gradientPulse {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Secondary Button */
.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border: 1.5px solid rgba(0, 105, 166, 0.18);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04),
              0 1px 3px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  background: rgba(239, 246, 255, 0.95);
  border-color: rgba(0, 105, 166, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 105, 166, 0.10),
              0 2px 8px rgba(15, 23, 42, 0.04);
}

/* Large button */
.btn--lg {
  padding: 18px 42px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-xl);
}

/* Small button */
.btn--sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ────────────────────────────────────────────────────────────────
   CARDS — SOFT PREMIUM DEPTH SYSTEM
   ──────────────────────────────────────────────────────────────── */

.card {
  background: var(--card-bg);
  border-radius: var(--radius-3xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03),
              0 6px 24px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.45s var(--ease-smooth),
              transform 0.45s var(--ease-spring),
              border-color 0.35s ease;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0, 105, 166, 0.07),
              0 20px 64px rgba(15, 23, 42, 0.06);
  transform: translateY(-5px) scale(1.003);
  border-color: rgba(0, 105, 166, 0.10);
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03),
              0 6px 24px rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0, 105, 166, 0.07),
              0 24px 72px rgba(15, 23, 42, 0.06);
  transform: translateY(-6px) scale(1.003);
  border-color: rgba(0, 105, 166, 0.10);
}

/* ────────────────────────────────────────────────────────────────
   SECTION BACKGROUNDS — DIMENSIONAL LAYERS
   ──────────────────────────────────────────────────────────────── */

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section--sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--lg { padding: clamp(6rem, 11vw, 10rem) 0; }
.section--cta { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }

.section--bg-mesh {
  background:
    radial-gradient(ellipse 70% 40% at 15% 10%, rgba(0, 105, 166, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(22, 55, 96, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(77, 156, 192, 0.02) 0%, transparent 70%),
    var(--color-bg);
}

.section--bg-white { background-color: var(--color-bg-white); }

.section--bg-light {
  background: linear-gradient(180deg, #f7f8fa 0%, #eaf2f8 100%);
}

.section--bg-tinted {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 105, 166, 0.04) 0%, transparent 70%),
    #f0f7fc;
}

.section--bg-dark {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 105, 166, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(22, 55, 96, 0.08) 0%, transparent 60%),
    #080e1c;
}

/* ────────────────────────────────────────────────────────────────
   SECTION HEADERS — DRAMATIC HIERARCHY
   ──────────────────────────────────────────────────────────────── */

.section-header {
  max-width: 760px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-5);
  background: rgba(0, 105, 166, 0.05);
  border: 1px solid rgba(0, 105, 166, 0.10);
  border-radius: var(--radius-full);
  padding: 6px 16px;
}

.section__title,
.section-header__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--color-secondary);
  margin-bottom: var(--space-6);
}

.section-header__text,
.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.78;
  max-width: 660px;
}

/* ────────────────────────────────────────────────────────────────
   TRUST BAR — ELEVATED SOCIAL PROOF
   ──────────────────────────────────────────────────────────────── */

.trust-bar {
  padding: var(--space-12) 0;
  background: var(--card-bg);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0, 105, 166, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.trust-bar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.trust-bar__rating {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: -0.04em;
}

.trust-bar__stars svg {
  filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.trust-bar__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: -0.005em;
  margin: 0;
}

.trust-bar__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(21,128,61,0.06));
  border: 1.5px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: #15803d;
  letter-spacing: 0.01em;
}

.trust-bar__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: announceDot 2.2s ease-in-out infinite;
}

.trust-bar__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: border-color 0.2s ease, transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

.trust-bar__chip:hover {
  border-color: rgba(0, 105, 166, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 105, 166, 0.08);
}

.trust-bar__chip-dot--blue   { background: var(--color-primary); box-shadow: 0 0 0 2px rgba(0,105,166,0.15); }
.trust-bar__chip-dot--green  { background: #22c55e; box-shadow: 0 0 0 2px rgba(34,197,94,0.15); }
.trust-bar__chip-dot--purple { background: var(--color-secondary); box-shadow: 0 0 0 2px rgba(124,58,237,0.15); }
.trust-bar__chip-dot--teal   { background: #0d9488; box-shadow: 0 0 0 2px rgba(13,148,136,0.15); }

/* ────────────────────────────────────────────────────────────────
   HARD TRUTH SECTION — DRAMATIC CONTRAST
   ──────────────────────────────────────────────────────────────── */

.hard-truth-card {
  background: var(--card-bg);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  border: 1.5px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04),
              0 1px 2px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.4s var(--ease-smooth),
              transform 0.4s var(--ease-spring),
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hard-truth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0069a6, #005080, #163760);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.hard-truth-card:hover::before {
  transform: scaleX(1);
}

.hard-truth-card:hover {
  box-shadow: 0 12px 36px rgba(0, 105, 166, 0.10),
              0 4px 12px rgba(15, 23, 42, 0.06);
  transform: translateY(-6px) scale(1.005);
  border-color: rgba(0, 105, 166, 0.12);
}

.hard-truth-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(238, 242, 255, 0.9));
  color: var(--color-primary);
  border: 1px solid rgba(0, 105, 166, 0.1);
  box-shadow: 0 4px 14px rgba(0, 105, 166, 0.12);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.hard-truth-card:hover .hard-truth-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(0, 105, 166, 0.18);
}

.hard-truth-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hard-truth-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.72;
}

/* ────────────────────────────────────────────────────────────────
   DASHBOARD V2 — ULTRA-PREMIUM MOCK (2026)
   ──────────────────────────────────────────────────────────────── */

.dashboard-v2 {
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(22, 55, 96, 0.05),
    0 2px 10px rgba(0, 105, 166, 0.04),
    0 12px 48px rgba(0, 105, 166, 0.07),
    0 40px 100px rgba(15, 23, 42, 0.05),
    0 80px 180px rgba(15, 23, 42, 0.03);
  background: var(--card-bg);
  transition: transform 0.5s var(--ease-smooth),
              box-shadow 0.5s ease;
}

.dashboard-v2:hover {
  transform: translateY(-4px) scale(1.002);
  box-shadow:
    0 0 0 1px rgba(22, 55, 96, 0.12),
    0 4px 16px rgba(0, 105, 166, 0.10),
    0 20px 60px rgba(0, 105, 166, 0.14),
    0 60px 120px rgba(15, 23, 42, 0.10),
    0 100px 200px rgba(15, 23, 42, 0.05);
}

/* Chrome bar refinement */
.dashboard-v2__chrome {
  background: linear-gradient(180deg, #f5f5f5, #dfebf2);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 10px 16px;
}

.dashboard-v2__urlbar {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* Sidebar refinement */
.dashboard-v2__sidebar {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard-v2__sidebar-brand span {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dashboard-v2__nav-item {
  border-radius: 9px;
  transition: background-color 0.15s ease,
              transform 0.15s var(--ease-spring);
}

.dashboard-v2__nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

.dashboard-v2__nav-item--active {
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.25), rgba(0, 105, 166, 0.15)) !important;
  border: 1px solid rgba(0, 105, 166, 0.2);
}

.dashboard-v2__nav-item--ai {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(22, 55, 96, 0.10)) !important;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Metric cards */
.dashboard-v2__metric {
  border-radius: 14px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}

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

.dashboard-v2__metric--blue {
  background: linear-gradient(135deg, rgba(236,246,251,0.9) 0%, rgba(219,234,254,0.7) 100%);
  border: 1px solid rgba(0, 105, 166, 0.12);
}

.dashboard-v2__metric--green {
  background: linear-gradient(135deg, rgba(240,253,244,0.9) 0%, rgba(220,252,231,0.7) 100%);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.dashboard-v2__metric--purple {
  background: linear-gradient(135deg, rgba(223,235,242,0.9) 0%, rgba(237,233,254,0.7) 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.dashboard-v2__metric--teal {
  background: linear-gradient(135deg, rgba(240,253,250,0.9) 0%, rgba(204,251,241,0.7) 100%);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

/* AI pill */
.dashboard-v2__ai-pill {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(22, 55, 96, 0.08));
  border: 1.5px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #5b21b6;
  letter-spacing: 0.01em;
}

/* ────────────────────────────────────────────────────────────────
   MODULE TABS — REFINED PILLS
   ──────────────────────────────────────────────────────────────── */

.mod-tabs__pill {
  border-radius: 100px;
  border: 1.5px solid var(--color-border-light);
  background: white;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 9px 18px;
  transition: color 0.2s var(--ease-out),
              background-color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              transform 0.2s var(--ease-spring),
              box-shadow 0.2s ease;
  letter-spacing: -0.01em;
}

.mod-tabs__pill--active {
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.3),
              0 1px 4px rgba(0, 105, 166, 0.15);
  transform: translateY(-1px);
}

/* Module panel inner */
.mod-panel__inner {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06),
              0 1px 4px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-smooth);
}

/* ────────────────────────────────────────────────────────────────
   SHIFT / WORKFLOW SECTION
   ──────────────────────────────────────────────────────────────── */

.shift-step-card {
  transition: box-shadow 0.35s var(--ease-smooth),
              transform 0.35s var(--ease-spring),
              border-color 0.3s ease;
}

.shift-step-card:hover {
  box-shadow: 0 8px 28px rgba(0, 105, 166, 0.10),
              0 2px 6px rgba(15, 23, 42, 0.06);
}

.shift-step-card.shift-step-card--active {
  border-color: rgba(0, 105, 166, 0.2);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.06),
              0 8px 28px rgba(0, 105, 166, 0.12);
}

/* ────────────────────────────────────────────────────────────────
   RESULTS SECTION — DARK PREMIUM
   ──────────────────────────────────────────────────────────────── */

.results-section {
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(0, 105, 166, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(22, 55, 96, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
    #060d1a;
}

.results-section__bg-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.results-metric__number {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-spring),
              border-color 0.35s ease,
              background 0.35s ease,
              box-shadow 0.35s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 105, 166, 0.1),
              0 20px 60px rgba(0, 105, 166, 0.12);
}

/* ────────────────────────────────────────────────────────────────
   STAT CARDS — PREMIUM NUMBERS
   ──────────────────────────────────────────────────────────────── */

.stat-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  background: var(--card-bg);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04),
              0 1px 2px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.4s var(--ease-smooth),
              transform 0.4s var(--ease-spring);
}

.stat-card:hover {
  box-shadow: 0 12px 36px rgba(0, 105, 166, 0.10),
              0 4px 12px rgba(15, 23, 42, 0.06);
  transform: translateY(-6px);
}

.stat__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ────────────────────────────────────────────────────────────────
   FORMS & INPUTS — 2026 POLISH
   ──────────────────────────────────────────────────────────────── */

.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="name"],
select,
textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  padding: 12px 14px 12px 44px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease,
              background-color 0.2s ease;
  outline: none;
  width: 100%;
}

.form-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 105, 166, 0.5);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(0, 105, 166, 0.08),
              0 2px 8px rgba(0, 105, 166, 0.06);
}

/* ────────────────────────────────────────────────────────────────
   PRICING CARDS — ELEVATED
   ──────────────────────────────────────────────────────────────── */

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-3xl);
  border: 1.5px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s var(--ease-spring),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.pricing-card:hover,
.pricing-card--featured {
  border-color: rgba(0, 105, 166, 0.25);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.06),
              0 12px 40px rgba(0, 105, 166, 0.12),
              0 4px 12px rgba(15, 23, 42, 0.06);
}

.pricing-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, rgba(239, 246, 255, 0.6) 100%);
}

/* ────────────────────────────────────────────────────────────────
   TESTIMONIAL CARDS — QUOTE FOCUS
   ──────────────────────────────────────────────────────────────── */

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.4s var(--ease-spring),
              box-shadow 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 105, 166, 0.10),
              0 4px 12px rgba(15, 23, 42, 0.06);
}

.testimonial-card blockquote {
  font-size: 1.025rem;
  line-height: 1.7;
  color: var(--color-secondary);
  font-style: italic;
  font-weight: 500;
}

/* (FOOTER REFINED DARK removed: dead code) */


/* ────────────────────────────────────────────────────────────────
   MOBILE MENU — REFINED
   ──────────────────────────────────────────────────────────────── */

.mobile-menu {
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.mobile-menu__link {
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  transition: background-color 0.15s ease,
              color 0.15s ease,
              transform 0.15s var(--ease-spring);
}

.mobile-menu__link:hover {
  background: rgba(0, 105, 166, 0.06);
  color: var(--color-primary);
  transform: translateX(4px);
}

/* ────────────────────────────────────────────────────────────────
   GLOBAL BACKGROUND CANVAS
   ──────────────────────────────────────────────────────────────── */

.global-bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

/* ────────────────────────────────────────────────────────────────
   REFINED SCROLL ANIMATIONS
   ──────────────────────────────────────────────────────────────── */

.anim-blur,
.anim-spring,
.anim-scale,
.anim-left,
.anim-right,
.anim-fade-up,
.anim-rise,
.anim-card {
  will-change: transform, opacity;
}

/* Refined stagger — tighter, snappier */
.stagger-children > *:nth-child(1)  { transition-delay: 0s; }
.stagger-children > *:nth-child(2)  { transition-delay: 0.04s; }
.stagger-children > *:nth-child(3)  { transition-delay: 0.08s; }
.stagger-children > *:nth-child(4)  { transition-delay: 0.12s; }
.stagger-children > *:nth-child(5)  { transition-delay: 0.16s; }
.stagger-children > *:nth-child(6)  { transition-delay: 0.20s; }

/* ────────────────────────────────────────────────────────────────
   NEW UTILITY CLASSES — 2026
   ──────────────────────────────────────────────────────────────── */

/* Gradient border effect */
.border-gradient {
  position: relative;
  border-radius: var(--radius-2xl);
}
.border-gradient::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,105,166,0.3), rgba(99,102,241,0.2), rgba(124,58,237,0.3));
  z-index: -1;
}

/* Glass effect utility */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass--dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Elevated surface */
.surface {
  background: var(--card-bg);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-2xl);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05),
              0 1px 3px rgba(15, 23, 42, 0.04);
}

/* Text utilities */
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }

/* Gradient spotlight — for dark sections */
.spotlight {
  position: relative;
  isolation: isolate;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%,
    rgba(0, 105, 166, 0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: inherit;
}

/* ────────────────────────────────────────────────────────────────
   RESPONSIVE REFINEMENTS
   ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  h1 { letter-spacing: -0.03em; }
  h2 { letter-spacing: -0.025em; }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__social-proof {
    gap: var(--space-5);
  }

  .float-badge {
    display: none;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .trust-bar__header {
    gap: var(--space-3);
  }

  .section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero__chips {
    gap: 6px;
  }

  .hero__chip {
    font-size: 12px;
    padding: 6px 13px;
  }

  .hero__announce {
    font-size: 12px;
  }

  .trust-bar__chip {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* ────────────────────────────────────────────────────────────────
   HIGH DENSITY / RETINA REFINEMENTS
   ──────────────────────────────────────────────────────────────── */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .dashboard-v2 {
    box-shadow:
      0 0 0 0.5px rgba(22, 55, 96, 0.1),
      0 2px 8px rgba(0, 105, 166, 0.06),
      0 12px 40px rgba(0, 105, 166, 0.10),
      0 40px 80px rgba(15, 23, 42, 0.08);
  }
}

/* ────────────────────────────────────────────────────────────────
   MOTION PREFERENCES
   ──────────────────────────────────────────────────────────────── */

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

/* ────────────────────────────────────────────────────────────────
   FOCUS STATES — ACCESSIBILITY
   ──────────────────────────────────────────────────────────────── */

:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(0, 105, 166, 0.15);
}

/* ────────────────────────────────────────────────────────────────
   HOMEPAGE SPECIFIC — TRUST BAR MARQUEE
   ──────────────────────────────────────────────────────────────── */

.trust-bar__track {
  gap: var(--space-3);
}

.trust-bar__fade--left {
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, transparent 100%);
}
.trust-bar__fade--right {
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, transparent 100%);
}

/* ────────────────────────────────────────────────────────────────
   HARD TRUTH GRID
   ──────────────────────────────────────────────────────────────── */

.hard-truth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .hard-truth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hard-truth-grid {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────────
   NAV ACTIVE / CURRENT PAGE INDICATOR
   ──────────────────────────────────────────────────────────────── */

.nav-link--active,
.nav-link.active {
  color: var(--color-primary);
  background-color: rgba(0, 105, 166, 0.07);
  font-weight: 600;
}


/* ────────────────────────────────────────────────────────────────
   ACCORDION / FAQ
   ──────────────────────────────────────────────────────────────── */

.accordion__item {
  border-radius: var(--radius-xl) !important;
  border: 1.5px solid rgba(226, 232, 240, 0.7) !important;
  background: var(--card-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion__item:hover,
.accordion__item--open {
  border-color: rgba(0, 105, 166, 0.2) !important;
  box-shadow: 0 4px 16px rgba(0, 105, 166, 0.06);
}

/* ────────────────────────────────────────────────────────────────
   FEATURE LIST ITEMS
   ──────────────────────────────────────────────────────────────── */

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  transition: color 0.2s ease, padding-left 0.2s var(--ease-spring);
}

.feature-list__item:last-child {
  border-bottom: none;
}

.feature-list__item:hover {
  color: var(--color-text);
  padding-left: 4px;
}

.feature-list__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(21,128,61,0.08));
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────────
   INTEGRATION LOGOS / PARTNER GRID
   ──────────────────────────────────────────────────────────────── */

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-6);
  background: var(--card-bg);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s var(--ease-spring),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  opacity: 0.65;
  filter: grayscale(0.3);
}

.integration-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 105, 166, 0.15);
  opacity: 1;
  filter: grayscale(0);
}

/* ────────────────────────────────────────────────────────────────
   END OF PLATINUM 2026 MODERNIZATION
   ──────────────────────────────────────────────────────────────── */

/* ================================================================
   MODERN ADVANCED LAYOUT OVERRIDES — 2026 Premium Design
   ================================================================ */

/* ─── 1. HERO: SPACIOUS CENTERED LAYOUT ───────────────────────── */

.hero {
  padding-top: calc(var(--header-height) + clamp(2rem, 3vw, 3.5rem));
  padding-bottom: clamp(3rem, 4vw, 5rem);
}

/* ─── HERO GRID: 2-col split on desktop, stacked on mobile ─── */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.5rem);
}

/* ─── HERO STACKED: centered top/bottom layout ─── */
.hero__stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__top {
  text-align: center;
  width: 100%;
}

.hero__bottom {
  position: relative;
  width: 100%;
}

.hero__bottom .hero__image {
  max-width: 100%;
}

.hero__left {
  text-align: left;
  width: 100%;
}

.hero__left .hero__title {
  font-size: clamp(2.2rem, 1rem + 3vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__left .hero__subtitle {
  max-width: 540px;
}

.hero__left .hero__actions {
  justify-content: flex-start;
}

.hero__left .hero__chips {
  justify-content: flex-start;
}

.hero__left .hero__social-proof {
  justify-content: flex-start;
}

.hero__right {
  position: relative;
  width: 100%;
}

.hero__right .hero__image {
  max-width: 100%;
}

/* Desktop-only br */
.hero__br-desktop { display: inline; }
.hero__br-mobile  { display: none; }

/* ─── 2. ENHANCED HERO MESH BACKGROUND — SOFT & AIRY ─────────── */

.section--bg-mesh {
  background:
    radial-gradient(ellipse 120% 80% at -8% 0%,   rgba(0, 105, 166, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 90%  70% at 108% 100%, rgba(22, 55, 96, 0.05)  0%, transparent 52%),
    radial-gradient(ellipse 70%  55% at 55%  45%,  rgba(77, 156, 192, 0.04) 0%, transparent 58%),
    linear-gradient(168deg, #f0f6fc 0%, #f6f8fb 42%, #f2f6fa 100%);
}

/* ─── 3. SOFTER AURORA ORBS ──────────────────────────────────── */

.aurora__orb--1 {
  background: radial-gradient(circle at center,
    rgba(0, 105, 166, 0.16) 0%,
    rgba(22, 55, 96, 0.08) 35%,
    transparent 70%);
  width: 1100px;
  height: 1100px;
}

.aurora__orb--2 {
  background: radial-gradient(circle at center,
    rgba(22, 55, 96, 0.14) 0%,
    rgba(77, 156, 192, 0.07) 40%,
    transparent 70%);
  width: 850px;
  height: 850px;
}

.aurora__orb--3 {
  background: radial-gradient(circle at center,
    rgba(77, 156, 192, 0.12) 0%,
    rgba(0, 105, 166, 0.06) 40%,
    transparent 70%);
  width: 720px;
  height: 720px;
}

/* ─── 4. SECTION BREATHING ROOM (desktop only) ──────────────── */

@media (min-width: 1100px) {
  .section {
    padding: 3rem 0;
  }

  .section--sm {
    padding: clamp(4.5rem, 6vw, 6.5rem) 0;
  }
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

/* ─── 5. STATS: MAXIMUM TYPOGRAPHIC IMPACT ──────────────────── */

.stat__number {
  font-size: clamp(3.2rem, 5vw, 5rem) !important;
  letter-spacing: -0.05em;
  line-height: 1;
  font-weight: 900;
}

/* ─── 6. SECTION LABELS: REFINED PRESENCE ──────────────────── */

.section__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

/* ─── 7. CTA SECTION: DEEP SOFT DARK ─────────────────────────── */

.cta-section {
  background: linear-gradient(135deg,
    #0a1628 0%,
    #112244 22%,
    #163760 50%,
    #0069a6 78%,
    #1a85c2 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: var(--radius-3xl) !important;
  box-shadow:
    0 40px 120px rgba(8, 18, 34, 0.30),
    0 0 0 1px rgba(0, 105, 166, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) !important;
}

/* ─── 8. DARK SECTIONS: DEEPER GRADIENT ─────────────────────── */

.section--bg-dark {
  background: linear-gradient(148deg, #080f20 0%, #0e2040 35%, #163760 65%, #0f2842 100%);
}

/* ─── 9. HARD TRUTH GRID: REFINED ───────────────────────────── */

.hard-truth-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.hard-truth-card {
  position: relative;
  overflow: hidden;
}

.hard-truth-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 55%, rgba(0, 105, 166, 0.05) 100%);
  pointer-events: none;
}

/* ─── 10. SECTION HEADER TITLE: MORE PRESENCE ───────────────── */

.section__title {
  font-size: clamp(2.1rem, 1.3rem + 2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

/* ─── 11. TRUST BAR: SUBTLE BORDER ──────────────────────────── */

.trust-bar {
  border-top: 1px solid rgba(223, 235, 242, 0.6);
  border-bottom: 1px solid rgba(223, 235, 242, 0.6);
  padding: clamp(2rem, 3vw, 3rem) 0;
}

/* ─── 12. FLOAT BADGES: SOFT GLOW ────────────────────────────── */

.float-badge {
  box-shadow:
    0 8px 32px rgba(15, 40, 50, 0.08),
    0 2px 8px rgba(15, 40, 50, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  border-radius: var(--radius-xl);
}

/* ─── 13. HERO ANNOUNCE STRIP: POLISH ───────────────────────── */

.hero__announce {
  border-color: rgba(0, 105, 166, 0.14);
  box-shadow:
    0 2px 20px rgba(0, 105, 166, 0.06),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

/* ─── 14. COMPARISON TABLE: ELEVATED ────────────────────────── */

.comparison-table {
  box-shadow: 0 2px 40px rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* ─── 15. OUTCOMES GRID: BALANCED ───────────────────────────── */

.outcomes-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── RESPONSIVE: TABLET (1100px) ──────────────────────────── */

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__left {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__left .hero__title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__left .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }

  .hero__left .hero__actions {
    justify-content: center;
  }

  .hero__left .hero__chips {
    justify-content: center;
  }

  .hero__left .hero__social-proof {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__right {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__br-desktop { display: none; }
  .hero__br-mobile  { display: inline; }
}

/* ─── RESPONSIVE: Float badges on small screens ──────────── */
@media (max-width: 900px) {
  .float-badge {
    font-size: 11px;
    padding: 7px 12px;
    gap: 5px;
  }
  .float-badge--success { right: 4px; }
  .float-badge--info    { left: 4px; }
  .float-badge--ai      { right: 4px; }
}

@media (max-width: 600px) {
  .float-badge { display: none; }
}

/* ─── RESPONSIVE: MOBILE (768px) ───────────────────────────── */

@media (max-width: 768px) {
  .hard-truth-grid {
    grid-template-columns: 1fr;
  }

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

}

/* ─── 16. WHY PLATINUM: SPLIT LAYOUT + METRIC CARDS ────────── */

.why-platinum-layout--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

.why-platinum-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.why-metric-card:hover {
  border-color: rgba(0, 105, 166, 0.4);
  background: rgba(0, 105, 166, 0.08);
}

.why-metric-card--accent {
  background: rgba(0, 105, 166, 0.12);
  border-color: rgba(0, 105, 166, 0.28);
}

.why-metric-card--accent:hover {
  border-color: rgba(0, 105, 166, 0.55);
  background: rgba(0, 105, 166, 0.18);
}

.why-metric-card__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, #fff 0%, rgba(96, 165, 250, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-metric-card__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) {
  .why-platinum-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── RESPONSIVE: SMALL MOBILE (480px) ─────────────────────── */

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr !important;
  }

  .why-platinum-metrics {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   ROUND 2 ADVANCED ENHANCEMENTS
   ================================================================ */

/* ─── AI CARDS: BENTO GRID LAYOUTS ──────────────────────────── */

/* First AI section — tall featured card on the left */
.ai-cards--bento-left {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.ai-cards--bento-left .ai-card:first-child {
  grid-row: span 2;
}

.ai-cards--bento-left .ai-card:first-child .ai-card__visual {
  height: 300px;
}

/* Second AI section — featured card full-width on top */
.ai-cards--bento-top {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ai-cards--bento-top .ai-card:first-child {
  grid-column: span 2;
}

.ai-cards--bento-top .ai-card:first-child .ai-card__visual {
  height: 240px;
}

/* Taller default visual area for all AI cards */
.ai-card__visual {
  height: 220px;
}

/* Richer AI card hover — premium depth */
.ai-card {
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05), 0 4px 16px rgba(15, 23, 42, 0.04);
  border-color: rgba(226, 232, 240, 0.7);
  transition: transform 0.36s var(--ease-out),
              box-shadow 0.36s ease,
              border-color 0.36s ease;
}

.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 105, 166, 0.12),
              0 4px 16px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(0, 105, 166, 0.14) !important;
}

/* ─── STATS SECTION: CARD TREATMENT ─────────────────────────── */

.stats-layout--enhanced {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.stats-row--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats-row--cards .stat {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06),
              0 1px 3px rgba(15, 23, 42, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.stats-row--cards .stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 105, 166, 0.10),
              0 2px 8px rgba(15, 23, 42, 0.06);
}

/* Stats section: richer tinted background */
.stats-section {
  background: linear-gradient(155deg,
    #e2f0f9 0%,
    #dce8f4 35%,
    #e8f3f9 65%,
    #dde9f3 100%) !important;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 105, 166, 0.07) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* ─── TESTIMONIALS: MORE DRAMATIC ───────────────────────────── */

.testimonials-modern {
  gap: 1.5rem;
}

.testimonial--video {
  min-height: 440px;
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* Enhanced overlay gradient */
.testimonial--video::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.04) 100%);
}

.testimonial--video .testimonial__text {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic;
  line-height: 1.65;
}

/* ─── HARD TRUTH SECTION: GRADIENT BACKDROP ─────────────────── */

.hard-truth-grid {
  gap: 1.5rem;
}

/* ─── AI FEATURES SECTION: ALTERNATING BG RHYTHM ────────────── */

.ai-features {
  border-top: 1px solid var(--color-border-light);
}

/* ─── ROLE CARDS: HOVER GLOW ────────────────────────────────── */

.role-card {
  border: 1px solid var(--color-border-light);
  transition: transform 0.32s var(--ease-out),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}

.role-card:hover {
  border-color: rgba(0, 105, 166, 0.18);
  box-shadow: 0 12px 36px rgba(0, 105, 166, 0.10),
              0 4px 12px rgba(15, 23, 42, 0.06) !important;
}

/* ─── AWARDS SECTION: SUBTLE POLISH ─────────────────────────── */

.awards-section {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* ─── RESPONSIVE: AI BENTO ON TABLET ───────────────────────── */

@media (max-width: 860px) {
  .ai-cards--bento-left,
  .ai-cards--bento-top {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ai-cards--bento-left .ai-card:first-child {
    grid-row: auto;
  }

  .ai-cards--bento-left .ai-card:first-child .ai-card__visual,
  .ai-cards--bento-top .ai-card:first-child .ai-card__visual {
    height: 200px;
  }

  .ai-cards--bento-top .ai-card:first-child {
    grid-column: auto;
  }

  .stats-layout--enhanced {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-row--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-row--cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DESIGN UPDATES — Mobile Frame, AI 3-3, Stats, Why Platinum,
   Footer Modernization
   ============================================================ */

/* === 1. MODULE PANEL VISUAL: MOBILE PHONE FRAME === */

.module-panel__visual {
  background: linear-gradient(160deg, #0c1829 0%, #0f2040 55%, #0d1e3a 100%) !important;
  border-left: none !important;
  padding: 40px 24px 36px !important;
  border-radius: 0 20px 20px 0;
}

.module-panel__visual::before {
  background: radial-gradient(ellipse at 50% 20%, rgba(0,105,166,0.20) 0%, transparent 65%) !important;
}

/* Phone notch bar at top */
.module-panel__visual::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  z-index: 3;
}

/* Phone frame border on the inner mockup */
.module-panel__visual .module-mockup {
  width: 90%;
  max-width: 310px;
  border-radius: 20px !important;
  border: 1.5px solid rgba(255,255,255,0.10) !important;
  box-shadow:
    0 0 0 7px rgba(255,255,255,0.03),
    0 12px 48px rgba(0,0,0,0.45),
    0 0 70px rgba(0,105,166,0.14) !important;
}

.module-panel__visual .module-mockup--phone {
  max-width: 230px;
  border: 1.5px solid rgba(255,255,255,0.13) !important;
}

/* Mockup bar on dark background */
.module-panel__visual .module-mockup__bar {
  background: rgba(255,255,255,0.06) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}

.module-panel__visual .module-mockup__bar span:nth-child(1) { background: rgba(239,68,68,0.6) !important; }
.module-panel__visual .module-mockup__bar span:nth-child(2) { background: rgba(234,179,8,0.6) !important; }
.module-panel__visual .module-mockup__bar span:nth-child(3) { background: rgba(34,197,94,0.6) !important; }

/* On mobile, reset rounded corners */
@media (max-width: 768px) {
  .module-panel__visual {
    border-radius: 0 0 20px 20px !important;
    padding: 32px 20px 28px !important;
  }
  .module-panel__visual::after {
    display: none;
  }
}

/* === 2. AI CARDS: EQUAL 3-3 GRID === */

.ai-cards--bento-left {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: auto !important;
  gap: 1.5rem !important;
}

.ai-cards--bento-left .ai-card:first-child {
  grid-row: auto !important;
  grid-column: auto !important;
}

.ai-cards--bento-left .ai-card:first-child .ai-card__visual {
  height: 200px !important;
}

.ai-cards--bento-top {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.ai-cards--bento-top .ai-card:first-child {
  grid-column: auto !important;
}

.ai-cards--bento-top .ai-card:first-child .ai-card__visual {
  height: 200px !important;
}

@media (max-width: 880px) {
  .ai-cards--bento-left,
  .ai-cards--bento-top {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 540px) {
  .ai-cards--bento-left,
  .ai-cards--bento-top {
    grid-template-columns: 1fr !important;
  }
}

/* === 3. STATS (ANALYTICS) FONT SIZE FIX === */

.stats-row--cards .stat__number {
  font-size: clamp(1.9rem, 3vw, 2.8rem) !important;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats-row--cards .stat {
  padding: var(--space-5) var(--space-4) !important;
}

.stats-row--cards .stat__label {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

/* === 4. WHY PLATINUM RIGHT SIDE EXPANDED === */

.why-platinum-layout--split {
  grid-template-columns: 1fr 1.2fr !important;
  gap: clamp(2.5rem, 4vw, 5rem) !important;
}

.why-platinum-metrics {
  gap: 1.2rem !important;
  align-content: start;
}

.why-metric-card {
  padding: var(--space-8) var(--space-8) !important;
  border-radius: var(--radius-2xl) !important;
}

.why-metric-card__num {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem) !important;
  margin-bottom: var(--space-3) !important;
}

.why-metric-card__label {
  font-size: 0.9rem !important;
  line-height: 1.6;
  color: rgba(255,255,255,0.68) !important;
}

/* (Section 5: FOOTER MODERNIZATION removed — dead code, .footer is display:none) */



/* ============================================================
   DESIGN UPDATES v2 — Header Sticky, Footer Logo, Module Section,
   Shift Left, Why Platinum Layout, Subscribe Button
   ============================================================ */

/* === HEADER: ALWAYS-VISIBLE STICKY === */

.header {
  position: fixed !important;
  top: 0 !important;
  transform: none !important;
  will-change: box-shadow, background;
}

.header--peek-hidden {
  transform: none !important;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow:
    0 1px 0 rgba(226, 232, 240, 0.9),
    0 4px 24px rgba(15, 23, 42, 0.09),
    0 2px 8px rgba(0, 105, 166, 0.06) !important;
  border-bottom-color: rgba(226, 232, 240, 0.95) !important;
  backdrop-filter: saturate(2) blur(24px) !important;
  -webkit-backdrop-filter: saturate(2) blur(24px) !important;
}

/* === MODULE SECTION: SPACIOUS + MODERN === */

#platform-modules {
  padding-top: clamp(4rem, 7vw, 7rem) !important;
  padding-bottom: clamp(4rem, 7vw, 7rem) !important;
  background: linear-gradient(175deg, #ffffff 0%, #f6faff 40%, #eef5fc 70%, #f5f8ff 100%) !important;
  position: relative;
  overflow: hidden;
}

#platform-modules::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,105,166,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#platform-modules .container {
  position: relative;
  z-index: 1;
}

.module-section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.module-section-header__title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem) !important;
  line-height: 1.1 !important;
}

.module-section-header__badge {
  padding: 9px 22px !important;
  font-size: 11.5px !important;
  box-shadow: 0 2px 12px rgba(0,105,166,0.10);
}

.module-section-header__line {
  width: 100px !important;
  height: 5px !important;
  margin-top: var(--space-8) !important;
}

.module-tabs__nav--circular {
  gap: var(--space-8) !important;
  margin-bottom: clamp(2rem, 4vw, 3.5rem) !important;
  padding-bottom: var(--space-4) !important;
}

.module-tabs__icon-circle {
  width: 70px !important;
  height: 70px !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  border-width: 2px !important;
}

.module-tabs__icon-circle svg {
  width: 28px !important;
  height: 28px !important;
}

.module-tabs__nav--circular .module-tabs__btn--active .module-tabs__icon-circle {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,105,166,0.22), 0 2px 8px rgba(15,23,42,0.08) !important;
}

.module-tabs__nav--circular .module-tabs__btn:hover .module-tabs__icon-circle {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,105,166,0.15) !important;
}

.module-tabs__btn-label {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 6px;
  color: var(--color-text-secondary);
}

.module-tabs__nav--circular .module-tabs__btn--active .module-tabs__btn-label {
  color: var(--color-primary);
  font-weight: 700;
}

.module-panel--active {
  border-radius: 28px !important;
  border: 1px solid rgba(0,105,166,0.08) !important;
  box-shadow:
    0 2px 8px rgba(15,23,42,0.04),
    0 16px 56px rgba(15,23,42,0.09),
    0 1px 0 rgba(255,255,255,0.95) inset !important;
}

.module-panel__info {
  padding: 56px 48px 48px !important;
}

/* === SHIFT SECTION: LEFT SIDE MODERNIZE === */

.shift-section {
  background: linear-gradient(160deg, #f5f9ff 0%, #eaf3fb 35%, #f0f7ff 65%, #f8fbff 100%) !important;
}

.shift-step__card {
  background: var(--card-bg) !important;
  border-radius: 20px !important;
  padding: 22px 24px 20px !important;
  box-shadow:
    0 1px 3px rgba(15,40,50,0.04),
    0 6px 24px rgba(15,40,50,0.07) !important;
  margin-bottom: 18px !important;
  border-left-width: 4px !important;
}

.shift-step:nth-child(1) .shift-step__card { border-left-color: rgba(0,105,166,0.55) !important; }
.shift-step:nth-child(2) .shift-step__card { border-left-color: rgba(245,158,11,0.55) !important; }
.shift-step:nth-child(3) .shift-step__card { border-left-color: rgba(34,197,94,0.55) !important;  }
.shift-step:nth-child(4) .shift-step__card { border-left-color: rgba(139,92,246,0.55) !important; }

.shift-step__num {
  width: 48px !important;
  height: 48px !important;
  font-size: 14px !important;
}

.shift-step__icon-wrap {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
}

.shift-step__title {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.shift-step__text {
  font-size: 0.87rem !important;
  line-height: 1.7 !important;
}

.shift-step__badge {
  font-size: 11.5px !important;
  padding: 4px 12px !important;
  font-weight: 700 !important;
}

.shift-step__connector {
  width: 3px !important;
  min-height: 24px !important;
}

.shift-header__sub {
  font-size: 1.05rem !important;
  max-width: 600px !important;
}

/* === WHY PLATINUM: LEFT LARGER, RIGHT COMPACT === */

.why-platinum-layout--split {
  grid-template-columns: 1.45fr 1fr !important;
  gap: clamp(2rem, 4vw, 4.5rem) !important;
  align-items: center !important;
}

.why-platinum-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem) !important;
  line-height: 1.12 !important;
  margin-bottom: var(--space-5) !important;
}

.why-platinum-content p {
  font-size: 1rem !important;
  line-height: 1.85 !important;
}

.why-feature {
  font-size: 0.95rem !important;
}

.why-platinum-metrics {
  gap: 0.9rem !important;
}

.why-metric-card {
  padding: var(--space-5) var(--space-6) !important;
  border-radius: 18px !important;
}

.why-metric-card__num {
  font-size: clamp(1.9rem, 3vw, 2.8rem) !important;
  margin-bottom: var(--space-2) !important;
}

.why-metric-card__label {
  font-size: 0.82rem !important;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .module-tabs__icon-circle {
    width: 54px !important;
    height: 54px !important;
  }
  .module-tabs__icon-circle svg {
    width: 22px !important;
    height: 22px !important;
  }
  .module-tabs__nav--circular {
    gap: var(--space-4) !important;
  }
}

@media (max-width: 480px) {
  .module-tabs__icon-circle {
    width: 46px !important;
    height: 46px !important;
  }
}

@media (max-width: 900px) {
  .why-platinum-layout--split {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   WHY PLATINUM — Top-Bottom Stacked Layout + Header Fix
   ============================================================ */

/* === HEADER: FORCE ALWAYS ON TOP === */

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  transform: none !important;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
}

.header--peek-hidden {
  transform: none !important;
  top: 0 !important;
}

/* Scrolled state — solid, visible header */
.header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: saturate(180%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.06),
    0 4px 20px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(0, 105, 166, 0.05) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

/* === WHY PLATINUM — STACKED LAYOUT === */

/* Neutralize old left-right overrides */
.why-platinum-layout--split,
.why-platinum-layout--stacked {
  display: block !important;
  grid-template-columns: unset !important;
}

.why-platinum-layout--stacked {
  max-width: 960px;
  margin: 0 auto;
}

/* TOP: text block — centered */
.why-platinum-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Label */
.why-platinum-label {
  color: var(--color-accent) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  display: inline-block;
}

/* Heading */
.why-platinum-heading {
  color: #fff !important;
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  font-weight: 900 !important;
  font-family: var(--font-heading);
  line-height: 1.1 !important;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6) !important;
}

/* Description */
.why-platinum-desc {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: clamp(1rem, 1.5vw, 1.1rem) !important;
  line-height: 1.85 !important;
  max-width: 680px;
  margin-bottom: var(--space-8) !important;
}

/* Features — 2 or 3 columns */
.why-platinum-features-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-3) var(--space-8);
  margin-bottom: var(--space-8);
  text-align: left;
  justify-content: center;
}

.why-platinum-features-grid .why-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.94rem !important;
  font-weight: 500;
  white-space: nowrap;
}

/* CTA button */
.why-platinum-cta {
  margin-top: 0 !important;
}

/* BOTTOM: 4 metric cards — one row */
.why-platinum-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Metric cards — full-width style */
.why-platinum-metrics-row .why-metric-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 20px !important;
  padding: 2rem 1.75rem !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.why-platinum-metrics-row .why-metric-card:hover {
  background: rgba(0, 105, 166, 0.12) !important;
  border-color: rgba(0, 105, 166, 0.40) !important;
  transform: translateY(-4px);
}

.why-platinum-metrics-row .why-metric-card--accent {
  background: rgba(0, 105, 166, 0.14) !important;
  border-color: rgba(0, 105, 166, 0.30) !important;
}

.why-platinum-metrics-row .why-metric-card--accent:hover {
  background: rgba(0, 105, 166, 0.22) !important;
  border-color: rgba(0, 105, 166, 0.55) !important;
}

.why-platinum-metrics-row .why-metric-card__num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-3) !important;
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.why-platinum-metrics-row .why-metric-card__label {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.60) !important;
  line-height: 1.55;
  font-weight: 400;
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
  .why-platinum-features-grid {
    grid-template-columns: repeat(2, auto);
  }
  .why-platinum-metrics-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .why-platinum-features-grid {
    grid-template-columns: 1fr;
  }
  .why-platinum-features-grid .why-feature {
    white-space: normal;
  }
  .why-platinum-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .why-platinum-metrics-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HARD TRUTH SECTION — REDESIGNED (colorful icons + animations)
   ============================================================ */

/* Section background */
.ht-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* ── Card entrance animation ─────────────────────────────── */
@keyframes htCardIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ht-card-animate {
  opacity: 0;
  animation: htCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--ht-delay, 0s) + 0.25s);
}

/* ── Grid ────────────────────────────────────────────────── */
.hard-truth-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}

/* ── Modern card base — soft 3D + glass ─────────────────── */
.hard-truth-card {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(12px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.4) !important;
  border-radius: 22px !important;
  padding: 2rem 1.75rem 1.85rem !important;
  border: 1px solid rgba(226,232,240,0.7) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow:
    0 2px 8px rgba(15,23,42,0.04),
    0 8px 24px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease !important;
  transform-style: preserve-3d !important;
  perspective: 800px !important;
  will-change: transform, box-shadow !important;
}

/* Colorful top accent bar — always visible */
.hard-truth-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  border-radius: 22px 22px 0 0 !important;
  opacity: 1 !important;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 2 !important;
}

.hard-truth-card:hover::before {
  height: 5px !important;
}

.hard-truth-card--blue::before   { background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%) !important; }
.hard-truth-card--orange::before { background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%) !important; }
.hard-truth-card--green::before  { background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%) !important; }
.hard-truth-card--coral::before  { background: linear-gradient(90deg, #ef4444 0%, #ec4899 100%) !important; }

/* Hover: soft 3D tilt + lift + colored glow */
.hard-truth-card--blue:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-1.5deg) translateY(-8px) scale(1.015) !important;
  box-shadow: 0 20px 50px rgba(59,130,246,0.15), 0 8px 20px rgba(59,130,246,0.10), 0 2px 6px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  border-color: rgba(59,130,246,0.25) !important;
}
.hard-truth-card--orange:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-1.5deg) translateY(-8px) scale(1.015) !important;
  box-shadow: 0 20px 50px rgba(245,158,11,0.15), 0 8px 20px rgba(245,158,11,0.10), 0 2px 6px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  border-color: rgba(245,158,11,0.25) !important;
}
.hard-truth-card--green:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-1.5deg) translateY(-8px) scale(1.015) !important;
  box-shadow: 0 20px 50px rgba(16,185,129,0.15), 0 8px 20px rgba(16,185,129,0.10), 0 2px 6px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  border-color: rgba(16,185,129,0.25) !important;
}
.hard-truth-card--coral:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-1.5deg) translateY(-8px) scale(1.015) !important;
  box-shadow: 0 20px 50px rgba(239,68,68,0.15), 0 8px 20px rgba(239,68,68,0.10), 0 2px 6px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  border-color: rgba(239,68,68,0.25) !important;
}

/* Professional focus ring for accessibility */
.hard-truth-card--blue:focus-visible   { outline: none !important; box-shadow: 0 0 0 3px rgba(59,130,246,0.4), 0 8px 24px rgba(15,23,42,0.08) !important; }
.hard-truth-card--orange:focus-visible { outline: none !important; box-shadow: 0 0 0 3px rgba(245,158,11,0.4), 0 8px 24px rgba(15,23,42,0.08) !important; }
.hard-truth-card--green:focus-visible  { outline: none !important; box-shadow: 0 0 0 3px rgba(16,185,129,0.4), 0 8px 24px rgba(15,23,42,0.08) !important; }
.hard-truth-card--coral:focus-visible  { outline: none !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.4), 0 8px 24px rgba(15,23,42,0.08) !important; }

/* ── Icon container ──────────────────────────────────────── */
.hard-truth-card__icon {
  width: 68px !important;
  height: 68px !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.35rem !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Colorful icon backgrounds per card */
.hard-truth-card--blue .hard-truth-card__icon {
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%) !important;
  box-shadow: 0 4px 18px rgba(99,102,241,0.18) !important;
}
.hard-truth-card--orange .hard-truth-card__icon {
  background: linear-gradient(135deg, #fffbeb 0%, #fff3e0 100%) !important;
  box-shadow: 0 4px 18px rgba(245,158,11,0.18) !important;
}
.hard-truth-card--green .hard-truth-card__icon {
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%) !important;
  box-shadow: 0 4px 18px rgba(16,185,129,0.18) !important;
}
.hard-truth-card--coral .hard-truth-card__icon {
  background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 100%) !important;
  box-shadow: 0 4px 18px rgba(239,68,68,0.18) !important;
}

/* Icon glow intensify on card hover */
.hard-truth-card--blue:hover .hard-truth-card__icon   { box-shadow: 0 6px 24px rgba(99,102,241,0.30) !important; }
.hard-truth-card--orange:hover .hard-truth-card__icon { box-shadow: 0 6px 24px rgba(245,158,11,0.30) !important; }
.hard-truth-card--green:hover .hard-truth-card__icon  { box-shadow: 0 6px 24px rgba(16,185,129,0.30) !important; }
.hard-truth-card--coral:hover .hard-truth-card__icon  { box-shadow: 0 6px 24px rgba(239,68,68,0.30) !important; }

/* ── Icon animations ─────────────────────────────────────── */

/* Float: gentle up/down drift */
@keyframes htFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Pulse: soft scale breathe */
@keyframes htPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

/* Bounce: gentle spring */
@keyframes htBounce {
  0%, 100% { transform: translateY(0);    animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
  50%       { transform: translateY(-8px); animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
}

/* Wobble: subtle tilt */
@keyframes htWobble {
  0%, 100% { transform: rotate(0deg)  scale(1); }
  25%       { transform: rotate(-5deg) scale(1.04); }
  75%       { transform: rotate(4deg)  scale(1.02); }
}

.ht-icon--float  { animation: htFloat  4s ease-in-out infinite !important; }
.ht-icon--pulse  { animation: htPulse  3.5s ease-in-out infinite !important; }
.ht-icon--bounce { animation: htBounce 3s ease-in-out infinite !important; }
.ht-icon--wobble { animation: htWobble 4.5s ease-in-out infinite !important; }

/* Pause on card hover, smooth scale pop */
.hard-truth-card:hover .ht-icon--float,
.hard-truth-card:hover .ht-icon--pulse,
.hard-truth-card:hover .ht-icon--bounce,
.hard-truth-card:hover .ht-icon--wobble {
  animation-play-state: paused !important;
  transform: scale(1.10) translateY(-2px) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ── Text ────────────────────────────────────────────────── */
.hard-truth-card__title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin-bottom: 0.65rem !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.hard-truth-card__text {
  font-size: 0.92rem !important;
  color: #64748b !important;
  line-height: 1.68 !important;
  margin: 0 !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Subtle text darken on hover for focus */
.hard-truth-card:hover .hard-truth-card__title { color: #020617 !important; }
.hard-truth-card:hover .hard-truth-card__text  { color: #475569 !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hard-truth-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 540px) {
  .hard-truth-grid { grid-template-columns: 1fr !important; }
}

/* Disable 3D tilt on touch/mobile for performance */
@media (hover: none), (max-width: 768px) {
  .hard-truth-card--blue:hover,
  .hard-truth-card--orange:hover,
  .hard-truth-card--green:hover,
  .hard-truth-card--coral:hover {
    transform: translateY(-5px) !important;
  }
}

/* ============================================================
   PRICING PAGE — FINAL CTA SECTION
   ============================================================ */

.pricing-final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2347 45%, #0d1e3f 100%);
  padding: 6rem 0;
}

/* Ambient glow orbs */
.pricing-final-cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.pricing-final-cta__glow--left {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  top: -80px;
  left: -120px;
}

.pricing-final-cta__glow--right {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  bottom: -60px;
  right: -80px;
}

/* Inner content */
.pricing-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

/* Badge */
.pricing-final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59,130,246,0.18);
  border: 1px solid rgba(59,130,246,0.38);
  color: #93c5fd;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 0.38rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

/* Title */
.pricing-final-cta__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.18 !important;
  margin-bottom: 1.25rem !important;
  letter-spacing: -0.02em;
}

/* Subtitle */
.pricing-final-cta__text {
  font-size: 1.08rem !important;
  color: #94a3b8 !important;
  line-height: 1.72 !important;
  margin-bottom: 2.5rem !important;
}

/* Button row */
.pricing-final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

/* Primary button — white fill */
.pricing-final-cta__btn--primary {
  background: var(--color-bg-white) !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease !important;
}

.pricing-final-cta__btn--primary:hover {
  background: #f1f5f9 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35) !important;
}

/* Ghost button — outline */
.pricing-final-cta__btn--ghost {
  background: transparent !important;
  color: #e2e8f0 !important;
  border: 1.5px solid rgba(255,255,255,0.28) !important;
  font-weight: 600 !important;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.22s ease !important;
}

.pricing-final-cta__btn--ghost:hover {
  border-color: rgba(255,255,255,0.65) !important;
  background: rgba(255,255,255,0.08) !important;
  transform: translateY(-3px) !important;
}

/* Trust line */
.pricing-final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.83rem !important;
  color: #475569 !important;
  margin: 0 !important;
}

.pricing-final-cta__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #475569;
  flex-shrink: 0;
}

/* ============================================================
   MODERN COMPARISON TABLE V2 — pricing.html
   Premium side-by-side comparison layout
   ============================================================ */

.comp-section {
  background: linear-gradient(180deg, #f0f4f8 0%, #f8fafc 50%, #f0f4f8 100%) !important;
  padding-bottom: 5rem;
}

/* ── Outer wrapper ───────────────────────────────────────── */
.comp-v2 {
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Column headers ──────────────────────────────────────── */
.comp-v2__columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
}

.comp-v2__label-col {
  /* empty spacer for capability column */
}

.comp-v2__header {
  text-align: center;
  border-radius: 16px 16px 0 0;
  padding: 1.8rem 1.5rem 1.4rem;
}

.comp-v2__header--ehr {
  background: #1e293b;
}

.comp-v2__header--plat {
  background: linear-gradient(145deg, #0069a6 0%, #0080cc 50%, #0069a6 100%);
  box-shadow: 0 -8px 32px rgba(0,105,166,0.25);
  position: relative;
}

.comp-v2__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.comp-v2__rec-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.25rem;
}

.comp-v2__header-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.comp-v2__header-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.comp-v2__header--ehr .comp-v2__header-sub {
  color: rgba(255,255,255,0.35);
}

/* ── Body ─────────────────────────────────────────────────── */
.comp-v2__body {
  background: var(--card-bg);
  border-radius: 0 0 20px 20px;
  box-shadow:
    0 4px 24px rgba(15,23,42,0.06),
    0 12px 48px rgba(15,23,42,0.04),
    0 1px 0 rgba(15,23,42,0.05);
  border: 1px solid rgba(226,232,240,0.7);
  border-top: none;
  overflow: hidden;
}

/* ── Rows ─────────────────────────────────────────────────── */
.comp-v2__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.comp-v2__row:hover {
  background: #fafbfd;
}

.comp-v2__row--last {
  border-bottom: none;
}

/* ── Capability cell ──────────────────────────────────────── */
.comp-v2__capability {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.8rem;
}

.comp-v2__cap-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-v2__cap-icon--blue   { background: #eff6ff; color: #3b82f6; }
.comp-v2__cap-icon--orange { background: #fff7ed; color: #f59e0b; }
.comp-v2__cap-icon--purple { background: #f5f3ff; color: #8b5cf6; }
.comp-v2__cap-icon--green  { background: #f0fdf4; color: #22c55e; }
.comp-v2__cap-icon--teal   { background: #f0fdfa; color: #14b8a6; }
.comp-v2__cap-icon--indigo { background: #eef2ff; color: #6366f1; }
.comp-v2__cap-icon--cyan   { background: #ecfeff; color: #06b6d4; }
.comp-v2__cap-icon--rose   { background: #fff1f2; color: #f43f5e; }
.comp-v2__cap-icon--amber  { background: #fffbeb; color: #d97706; }

.comp-v2__cap-text {
  font-size: 0.92rem;
  font-weight: 650;
  color: #1e293b;
  letter-spacing: -0.01em;
}

/* ── Value cells ──────────────────────────────────────────── */
.comp-v2__val {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.15rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
  border-left: 1px solid #f1f5f9;
}

.comp-v2__val--no {
  color: #94a3b8;
}

.comp-v2__val--yes {
  color: #1e293b;
  background: rgba(0,105,166,0.025);
  border-left-color: rgba(0,105,166,0.08);
}

/* Icons */
.comp-v2__icon-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fef2f2;
  flex-shrink: 0;
}

.comp-v2__icon-x svg {
  color: #ef4444;
  width: 12px;
  height: 12px;
}

.comp-v2__icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0fdf4;
  flex-shrink: 0;
}

.comp-v2__icon-check svg {
  color: #16a34a;
  width: 12px;
  height: 12px;
}

/* ── Footer CTA ───────────────────────────────────────────── */
.comp-v2__footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .comp-v2__columns {
    grid-template-columns: 1fr 1fr;
  }
  .comp-v2__label-col {
    display: none;
  }
  .comp-v2__header {
    border-radius: 14px 14px 0 0;
    padding: 1.4rem 1rem 1.1rem;
  }
  .comp-v2__row {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .comp-v2__capability {
    padding: 1rem 1.2rem 0.4rem;
    border-bottom: none;
  }
  .comp-v2__cap-text {
    font-size: 0.85rem;
    font-weight: 700;
  }
  .comp-v2__val {
    padding: 0.5rem 1.2rem 0.5rem 3.4rem;
    border-left: none;
    font-size: 0.8rem;
  }
  .comp-v2__val--yes {
    background: transparent;
  }
  .comp-v2__val--no + .comp-v2__val--yes {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .comp-v2__body {
    border-radius: 0 0 16px 16px;
  }
}

@media (max-width: 480px) {
  .comp-v2__header-name { font-size: 0.95rem; }
  .comp-v2__header-sub { font-size: 0.68rem; }
  .comp-v2__capability { padding: 0.85rem 1rem 0.35rem; }
  .comp-v2__val { padding: 0.4rem 1rem 0.4rem 3rem; font-size: 0.76rem; }
}

/* ============================================================
   52. ABOUT PAGE — TIMELINE & STATS
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-blue-300), var(--color-primary));
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  padding: var(--space-6) 0;
  display: flex;
  align-items: flex-start;
}
.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 2rem);
  text-align: right;
}
.timeline-item:nth-child(even) {
  padding-left: calc(50% + 2rem);
}
.timeline-item__dot {
  position: absolute;
  left: 50%;
  top: var(--space-6);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.2);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-item__year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.timeline-item__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.timeline-item__text {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item__dot {
    left: 20px;
  }
}

/* Stats highlight row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.stat-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.stat-card__number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}
.stat-card__label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  .stat-card__number {
    font-size: 2rem;
  }
}

/* ============================================================
   53. CONTACT PAGE — CONTACT CARDS & FORM
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.contact-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.contact-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.contact-card__icon--blue {
  background: rgba(0, 105, 166, 0.08);
  color: var(--color-primary);
}
.contact-card__icon--green {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}
.contact-card__icon--purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}
.contact-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.contact-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.contact-card__detail {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.contact-card__detail a {
  color: inherit;
  text-decoration: none;
}
.contact-card__detail a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Contact form layout */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-form-card {
  background: var(--color-bg-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8) var(--space-8);
}
.contact-form-card .form-group {
  margin-bottom: var(--space-5);
}
.contact-form-card .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.contact-form-card .form-input,
.contact-form-card .form-select,
.contact-form-card .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.2s var(--ease-out);
  box-sizing: border-box;
}
.contact-form-card .form-input:focus,
.contact-form-card .form-select:focus,
.contact-form-card .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.1);
  background: var(--color-bg-white);
}
.contact-form-card .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.contact-info-panel {
  padding: var(--space-4) 0;
}
.contact-info-panel h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 105, 166, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.contact-info-item__content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 2px;
}
.contact-info-item__content span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
  .contact-form-card .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   54. SUPPORT PAGE — CHANNEL CARDS & HOURS TABLE
   ============================================================ */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.support-channel {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.support-channel:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.support-channel__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}
.support-channel__icon--blue {
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.1), rgba(37, 99, 235, 0.1));
  color: var(--color-primary);
}
.support-channel__icon--green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  color: #10b981;
}
.support-channel__icon--purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
  color: #8b5cf6;
}
.support-channel__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.support-channel__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}
.support-channel__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.support-channel__action:hover {
  gap: 10px;
}

@media (max-width: 768px) {
  .support-channels {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Hours table */
.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.hours-table th,
.hours-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
}
.hours-table thead th {
  background: var(--color-bg-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hours-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}
.hours-table tbody tr:last-child {
  border-bottom: none;
}
.hours-table td {
  color: var(--color-text-body);
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

/* Value pillars — for About page */
.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.value-pillar {
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.value-pillar:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.value-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.08), rgba(22, 55, 96, 0.06));
  color: var(--color-primary);
}
.value-pillar__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.value-pillar__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .value-pillars {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ============================================================
   COMPANY LEGACY SECTION — Homepage
   ============================================================ */
.legacy-section {
  overflow: hidden;
}
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.legacy-card {
  position: relative;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.legacy-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.legacy-card__year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-3xl);
  background: linear-gradient(135deg, var(--color-primary), #4d9cc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}
.legacy-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.legacy-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}
.legacy-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  margin-top: var(--space-16);
  padding: var(--space-10) var(--space-8);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.04), rgba(22, 55, 96, 0.03));
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
}
.legacy-stat {
  text-align: center;
}
.legacy-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-4xl);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.legacy-stat__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}
@media (max-width: 1024px) {
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .legacy-grid {
    grid-template-columns: 1fr;
  }
  .legacy-stats {
    flex-wrap: wrap;
    gap: var(--space-8);
    padding: var(--space-8) var(--space-4);
  }
  .legacy-stat {
    flex: 1 0 40%;
  }
}

/* ============================================================
   TIMELINE — About Page
   ============================================================ */
.timeline {
  position: relative;
  max-width: 880px;
  margin: var(--space-12) auto 0;
  padding-left: var(--space-8);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-border));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  padding-left: var(--space-10);
  padding-bottom: var(--space-10);
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.15);
  z-index: 1;
}
.timeline__year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.timeline__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.timeline__text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 560px;
}
@media (max-width: 768px) {
  .timeline {
    padding-left: var(--space-4);
  }
  .timeline__item {
    padding-left: var(--space-8);
  }
  .timeline__dot {
    left: -20px;
  }
}

/* ============================================================
   TEAM CARDS — About Page
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.team-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-light-shade));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--color-primary);
}
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.team-card__role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.contact-method {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.contact-method:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.contact-method__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.08), rgba(22, 55, 96, 0.06));
  color: var(--color-primary);
}
.contact-method__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.contact-method__phone {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.contact-method__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.contact-form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.08);
}
.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-card {
  padding: var(--space-8);
  background: var(--color-bg-tinted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}
.contact-info-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.contact-info-card__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}
.contact-info-card__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 105, 166, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-info-card__item-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.contact-info-card__item-value {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-page__quick-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.support-page__quick-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.support-page__quick-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.support-page__quick-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.08), rgba(22, 55, 96, 0.06));
  color: var(--color-primary);
}
.support-page__quick-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.support-page__quick-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.support-page__quick-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.support-page__resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.support-page__resource {
  padding: var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.36s var(--ease-out);
}
.support-page__resource:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.support-page__resource-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.08), rgba(22, 55, 96, 0.06));
  color: var(--color-primary);
}
.support-page__resource-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.support-page__resource-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Support process steps */
.support-page__process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.support-page__step {
  text-align: center;
  padding: var(--space-6);
  position: relative;
}
.support-page__step-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
}
.support-page__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.support-page__step-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .support-page__resources {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-page__process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .support-page__quick-contacts {
    grid-template-columns: 1fr;
  }
  .support-page__resources {
    grid-template-columns: 1fr;
  }
  .support-page__process {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT PAGE HERO (Simpler)
   ============================================================ */
.hero--simple {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  background: linear-gradient(180deg, #f0f7fc 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero--simple .hero__content {
  max-width: 720px;
  margin: 0 auto;
}
.hero--simple .hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.hero--simple .hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

/* ============================================================
   PHILOSOPHY / MISSION CARDS — About Page
   ============================================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.philosophy-card {
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.philosophy-card--mission {
  background: linear-gradient(135deg, #0e2344, var(--color-primary-dark));
  color: #fff;
}
.philosophy-card--vision {
  background: linear-gradient(135deg, rgba(0, 105, 166, 0.06), rgba(22, 55, 96, 0.04));
  border: 1px solid var(--color-border);
}
.philosophy-card__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}
.philosophy-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.philosophy-card--mission .philosophy-card__title {
  color: #fff;
}
.philosophy-card--vision .philosophy-card__title {
  color: var(--color-text);
}
.philosophy-card__text {
  font-size: var(--text-base);
  line-height: 1.65;
  opacity: 0.9;
}
.philosophy-card--vision .philosophy-card__text {
  color: var(--color-text-secondary);
}
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================================
   50. AUTH PAGES — Login, Signup, Password Reset
   Modern 2026 Split-Screen Authentication
   =========================================== */

/* ── Layout ─────────────────────────────────── */
.auth {
  display: flex;
  min-height: 100vh;
  background: #f0f4f8;
}

.auth__brand-panel {
  flex: 0 0 48%;
  max-width: 48%;
  background: linear-gradient(165deg, #091e36 0%, #0a2a4a 35%, #0d3d6b 65%, var(--color-primary) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-16) var(--space-12);
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.auth__brand-panel::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 105, 166, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: authOrbFloat1 15s ease-in-out infinite;
}

@keyframes authOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

.auth__brand-panel::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 156, 192, 0.12) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: authOrbFloat2 18s ease-in-out infinite;
}

@keyframes authOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

.auth__brand-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 400px;
}

.auth__brand-logo {
  height: 38px;
  margin-bottom: var(--space-10);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.auth__brand-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

.auth__brand-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

/* Animated floating grid dots */
.auth__brand-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: authGridDrift 25s linear infinite;
}

@keyframes authGridDrift {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

/* Testimonial Carousel on brand panel */
.auth__carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  margin-top: var(--space-6);
}

.auth__carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* ── Slide base: all hidden by default ── */
.auth__testimonial {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: var(--space-6) var(--space-6) var(--space-5);
  text-align: left;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ── Active slide: visible, in-flow ── */
.auth__testimonial--active {
  display: flex;
  opacity: 1;
}

/* ── Fade-out (old slide during transition) ── */
.auth__testimonial--exiting {
  display: flex;
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.auth__testimonial-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--space-4);
  flex: 1;
}

/* Star rating */
.auth__testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
  color: #fbbf24;
}

.auth__testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.auth__testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4d9cc0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.auth__testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
}

.auth__testimonial-role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Carousel controls */
.auth__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.auth__carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.auth__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.auth__carousel-btn:active {
  transform: scale(0.92);
}

/* Dots / indicators */
.auth__carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.auth__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth__carousel-dot--active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Progress bar (auto-play timer) */
.auth__carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.45));
  border-radius: 0 3px 3px 0;
  width: 0%;
  z-index: 2;
  pointer-events: none;
}

/* ── Form Panel ─────────────────────────────── */
.auth__form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-10);
  position: relative;
  background: #f0f4f8;
}

.auth__form-container {
  width: 100%;
  max-width: 440px;
  animation: authFormIn 0.6s var(--ease-out) both;
}

@keyframes authFormIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth__form-header {
  margin-bottom: var(--space-7);
}

.auth__form-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e0ecf7 0%, #cde0f2 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.auth__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}

.auth__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.auth__subtitle a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth__subtitle a:hover {
  color: var(--color-primary-dark);
}

/* ── Form Fields ────────────────────────────── */
.auth__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.auth__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.auth__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.auth__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.auth__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth__input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth__input-icon svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
  display: block;
}

.auth__input {
  width: 100%;
  padding: 12px 14px 12px 44px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid #dce3ec;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.auth__input::placeholder {
  color: var(--color-text-muted);
}

.auth__input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.08);
  background: #fff;
}

.auth__input:focus ~ .auth__input-icon {
  color: var(--color-primary);
}

.auth__input--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3.5px rgba(239, 68, 68, 0.08);
  animation: authShake 0.45s ease;
}

@keyframes authShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

.auth__error-msg {
  font-size: var(--text-xs);
  color: #ef4444;
  display: none;
  align-items: center;
  gap: 4px;
}

.auth__error-msg--visible {
  display: flex;
}

/* Password toggle */
.auth__pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 4px;
  display: flex;
  transition: color 0.2s ease;
}

.auth__pw-toggle:hover {
  color: var(--color-text-secondary);
}

/* Password strength meter */
.auth__pw-strength {
  display: flex;
  gap: 4px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.auth__pw-bar {
  flex: 1;
  height: 100%;
  background: var(--color-border);
  border-radius: 2px;
  transition: background 0.35s ease;
}

.auth__pw-bar--weak { background: #ef4444; }
.auth__pw-bar--fair { background: #f59e0b; }
.auth__pw-bar--good { background: #3b82f6; }
.auth__pw-bar--strong { background: #10b981; }

.auth__pw-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: 2px;
}

/* ── Checkbox / Remember ────────────────────── */
.auth__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.auth__check-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
  user-select: none;
}

.auth__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.auth__forgot {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.auth__forgot:hover {
  color: var(--color-primary-dark);
}

/* ── Submit Button ──────────────────────────── */
.auth__submit {
  width: 100%;
  padding: 13px 24px;
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0a6baa 0%, #1a85c2 50%, #2196d4 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-spring);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0, 105, 166, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.auth__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.auth__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 105, 166, 0.3), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.auth__submit:active {
  transform: translateY(0) scale(0.985);
}

.auth__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading state */
.auth__submit--loading .auth__submit-text { visibility: hidden; }
.auth__submit--loading .auth__submit-spinner { display: block; }

.auth__submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cwSpin 0.65s linear infinite;
  position: absolute;
}

/* ── Divider ────────────────────────────────── */
.auth__divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: #b0bac6;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.auth__divider::before,
.auth__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dce3ec;
}

/* ── Google Sign-In Button ──────────────────── */
.auth__google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 12px 20px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid #dce3ec;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth__google-btn:hover {
  border-color: #c5cfd9;
  box-shadow: 0 2px 12px rgba(66, 133, 244, 0.12);
  background: #f8faff;
}

.auth__google-btn:active {
  transform: scale(0.985);
}

.auth__google-btn svg {
  flex-shrink: 0;
}

/* ── reCAPTCHA v3 notice ───────────────────── */
.auth__recaptcha-notice {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
  line-height: 1.5;
}

.auth__recaptcha-notice a {
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.auth__recaptcha-notice a:hover {
  color: var(--color-primary);
}

/* Hide default reCAPTCHA badge (we show inline notice instead) */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ── Footer Links ───────────────────────────── */
.auth__footer {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.auth__footer a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.auth__footer a:hover {
  color: var(--color-primary-dark);
}

.auth__footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: #9ca8b8;
}

.auth__footer-links a {
  color: #9ca8b8;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth__footer-links a:hover {
  color: var(--color-primary);
}

/* ── Success / Info Cards ───────────────────── */
.auth__info-card {
  background: var(--color-blue-50);
  border: 1px solid var(--color-blue-200);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.auth__info-card svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.auth__success-screen {
  text-align: center;
  animation: authFormIn 0.5s var(--ease-out) both;
}

.auth__success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: #059669;
  animation: successPop 0.5s var(--ease-spring) both 0.1s;
}

.auth__success-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.auth__success-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* ── Password Requirements List ─────────────── */
.auth__pw-reqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px var(--space-4);
  margin-top: var(--space-2);
}

.auth__pw-req {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-light);
  transition: color 0.25s ease;
}

.auth__pw-req-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.25s ease, transform 0.25s var(--ease-spring);
  flex-shrink: 0;
}

.auth__pw-req--met {
  color: #059669;
}

.auth__pw-req--met .auth__pw-req-dot {
  background: #10b981;
  transform: scale(1.2);
}

/* ── Mobile Responsive ──────────────────────── */
@media (max-width: 900px) {
  .auth {
    flex-direction: column;
  }
  .auth__brand-panel {
    flex: none;
    max-width: 100%;
    padding: var(--space-10) var(--space-6) var(--space-8);
  }
  .auth__brand-content {
    text-align: center;
  }
  .auth__brand-heading {
    font-size: var(--text-2xl);
  }
  .auth__carousel {
    display: none;
  }
  .auth__form-panel {
    padding: var(--space-8) var(--space-6);
  }
}

@media (max-width: 480px) {
  .auth__brand-panel {
    padding: var(--space-8) var(--space-5) var(--space-6);
  }
  .auth__field-row {
    grid-template-columns: 1fr;
  }
  .auth__google-btn {
    font-size: var(--text-xs);
  }
  .auth__form-panel {
    padding: var(--space-6) var(--space-4);
  }
  .auth__pw-reqs {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   MODERN UI COMPONENTS — 2026 Enhancements
   =========================================== */

/* ── Hero Enhanced ── */
.hero--enhanced {
  position: relative;
  overflow: hidden;
  padding: var(--space-16) 0 var(--space-12);
  background: linear-gradient(135deg, var(--color-bg-tinted) 0%, var(--color-bg) 50%, var(--color-primary-light) 100%);
}
.hero--enhanced::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,105,166,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero--enhanced::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,137,86,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
  justify-content: center;
}
.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--color-primary-dark);
}
.breadcrumb__sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

/* ── Filter Chips / Pill Navigation ── */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-white);
  color: var(--color-text-secondary);
}
.filter-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 2px 8px rgba(0,105,166,0.08);
}
.filter-chip.is-active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(0,105,166,0.2);
}
.filter-chip__count {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.2);
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 700;
}
.filter-chip.is-active .filter-chip__count {
  background: rgba(255,255,255,0.25);
}

/* ── Search Bar Modern ── */
.search-bar {
  max-width: 560px;
  margin: 0 auto var(--space-8);
  position: relative;
}
.search-bar__inner {
  display: flex;
  align-items: center;
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  gap: var(--space-3);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.search-bar__inner:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.08), var(--shadow-md);
}
.search-bar__input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: inherit;
}
.search-bar__input::placeholder {
  color: var(--color-text-muted);
}
.search-bar__kbd {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-bg-light);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  font-family: inherit;
  white-space: nowrap;
}

/* ── Video Card Thumbnail ── */
.video-thumb {
  position: relative;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  overflow: hidden;
  cursor: pointer;
}
.video-thumb--blue    { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%); }
.video-thumb--green   { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%); }
.video-thumb--orange  { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 50%, #fdba74 100%); }
.video-thumb--purple  { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #d8b4fe 100%); }
.video-thumb--teal    { background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 50%, #5eead4 100%); }
.video-thumb__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}
.video-thumb:hover .video-thumb__play {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.video-thumb__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ── Article Image Placeholder ── */
.article-thumb {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  height: 180px;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.article-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,105,166,0.04) 100%);
}

/* ── Featured Card Enhanced ── */
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
}
.featured-card__image {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-light) 50%, var(--color-primary-light-shade) 100%);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,105,166,0.06), transparent);
  border-radius: inherit;
}
.featured-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.featured-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.featured-card__excerpt {
  color: var(--color-text-light);
  line-height: 1.7;
}
.featured-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: var(--color-text-light);
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card__image {
    height: 200px;
  }
}

/* ── Stats Card ── */
.stat-card {
  text-align: center;
  padding: var(--space-8);
}
.stat-card__number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-card__label {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
}

/* ── Popular Number Card ── */
.popular-card {
  padding: var(--space-5);
  position: relative;
}
.popular-card__rank {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
}
.popular-card__title {
  font-size: 1rem;
  margin-top: var(--space-2);
  font-weight: 600;
  color: var(--color-text);
}
.popular-card__reads {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

/* ── Pagination Modern ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  color: var(--color-text-light);
}
.pagination__item:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}
.pagination__item.is-active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(0,105,166,0.2);
}

/* ── Blog Layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Sidebar ── */
.sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.sidebar__card {
  padding: var(--space-6);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.sidebar__heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.sidebar__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.sidebar__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-body);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}
.sidebar__link:hover,
.sidebar__link.is-active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.sidebar__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.sidebar__input {
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}
.sidebar__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,105,166,0.08);
}

/* ── Section Divider ── */
.section--divided {
  border-top: 1px solid var(--color-border);
}

/* ── Guide Card (horizontal layout) ── */
.guide-card {
  display: flex;
  flex-direction: row;
  gap: var(--space-6);
  align-items: flex-start;
}
.guide-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card__icon--primary   { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); }
.guide-card__icon--accent    { background: linear-gradient(135deg, var(--color-accent), #e06830); }
.guide-card__icon--green     { background: linear-gradient(135deg, #10b981, #059669); }
.guide-card__icon--purple    { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.guide-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

/* ── Pillar Checklist ── */
.pillar-list {
  margin-top: var(--space-4);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  list-style: none;
  padding: 0;
}
.pillar-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230069a6' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── Load More ── */
.load-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  transition: all var(--transition-fast);
  background: var(--color-bg-white);
}
.load-more:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 2px 8px rgba(0,105,166,0.08);
}

/* ── Continue Reading Grid ── */
.continue-card {
  text-align: center;
  text-decoration: none;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg-white);
}
.continue-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,105,166,0.08);
  transform: translateY(-2px);
}
.continue-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.continue-card__text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

/* ── Section Background Mesh ── */
.section--bg-mesh {
  background: linear-gradient(135deg, var(--color-bg-tinted) 0%, var(--color-bg) 40%, var(--color-primary-light) 100%);
  position: relative;
}

/* ── CTA Section Enhanced ── */
.cta-card {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: linear-gradient(135deg, var(--color-bg-tinted) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,105,166,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Article Card Meta ── */
.article-meta {
  margin-top: auto;
  padding-top: var(--space-4);
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ── Badge Spacing ── */
.badge--spaced {
  margin-bottom: var(--space-2);
  align-self: flex-start;
}

/* ── Topic Card Center ── */
.topic-card {
  text-align: center;
}

/* ===========================================
   MODERN UI COMPONENTS — Phase 2 (Product Pages)
   =========================================== */

/* ── Step Card (numbered process cards) ── */
.step-card {
  padding: var(--space-8) var(--space-6);
  text-align: center;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto var(--space-4);
}
.step-number--primary {
  background: var(--color-primary);
  color: #fff;
}
.step-number--blue {
  background: var(--color-blue-50, #eff6ff);
  color: var(--color-primary);
}
.step-number--orange {
  background: #fff7ed;
  color: #f97316;
}
.step-number--green {
  background: #f0fdf4;
  color: #22c55e;
}
.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.step-card__text {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Pricing Display Card ── */
.pricing-display {
  text-align: center;
}
.pricing-display__amount {
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

/* ── Checklist Grid ── */
.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--color-text-body);
}
.checklist__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Form Components ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-field__label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: 0.9rem;
  color: var(--color-text);
}
.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-white);
  color: var(--color-text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 105, 166, 0.08);
}
.form-field__textarea {
  resize: vertical;
}
.form-field__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}
.form-consent {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.form-consent__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.form-consent__text a {
  color: var(--color-primary);
}

/* ── FAQ Card ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-card {
  padding: var(--space-6) var(--space-8);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-fast);
}
.faq-card:hover {
  box-shadow: var(--shadow-md);
}
.faq-card__question {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.faq-card__answer {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Security Badge Row ── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Overview Card (icon + heading + text centered) ── */
.overview-card {
  padding: var(--space-8);
  text-align: center;
}
.overview-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}
.overview-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.overview-card__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ── Section Label (uppercase small text) ── */
.section-label {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: var(--space-4);
}

/* ── Hero Subtitle ── */
.hero-subtitle {
  max-width: 640px;
  margin: var(--space-4) auto 0;
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ── Hero Actions Row ── */
.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Comparison Card ── */
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comparison-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.comparison-list__icon {
  flex-shrink: 0;
}

/* ── Reach Stats Card ── */
.reach-stat {
  padding: var(--space-6);
  text-align: center;
}
.reach-stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.reach-stat__label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
}

/* ── Centered Block ── */
.centered-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.container--sm {
  max-width: 800px;
}
.container--xs {
  max-width: 720px;
}

/* ═══════════════════════════════════════════════════════════════
   SVG OPTIMIZATION SYSTEM — Responsive Icons, Illustrations & A11y
   Modern UI/UX: fluid sizing, standardized icon scale, accessible SVGs
   ═══════════════════════════════════════════════════════════════ */

/* ── Standardized Icon Sizing Scale ── */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}

.svg-icon svg {
  display: block;
}

.svg-icon--xs svg  { width: 12px; height: 12px; }
.svg-icon--sm svg  { width: 14px; height: 14px; }
.svg-icon--md svg  { width: 18px; height: 18px; }
.svg-icon--base svg { width: 20px; height: 20px; }
.svg-icon--lg svg  { width: 24px; height: 24px; }
.svg-icon--xl svg  { width: 32px; height: 32px; }
.svg-icon--2xl svg { width: 40px; height: 40px; }
.svg-icon--3xl svg { width: 48px; height: 48px; }

/* ── Responsive SVG Illustration Images ── */
.svg-img-responsive {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* ── Hero Wave SVG — Full-width fluid ── */
.svg-wave {
  display: block;
  width: 100%;
  height: auto;
  min-height: 60px;
}

/* ── Decorative Background SVG — Responsive overlay ── */
.svg-bg-decor {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

/* ── Social Icon — Consistent touch target ── */
.svg-social svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.svg-social:hover svg {
  transform: scale(1.1);
  opacity: 0.85;
}

/* ── Inline Icon Colors — Theme-aware via currentColor ── */
.svg-icon--success { color: var(--color-success, #16a34a); }
.svg-icon--primary { color: var(--color-primary, #0069a6); }
.svg-icon--accent  { color: var(--color-accent, #ff8956); }
.svg-icon--muted   { color: var(--color-text-muted, #bcccdc); }

/* ── Check/Success SVG — Theme-aware green ── */
.svg-check-success { color: #16a34a; }

/* ── Feature Card Icon — Consistent circle wrapper ── */
.svg-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.svg-feature-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Responsive Illustration Size Variants ── */
.svg-illust--hero {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.svg-illust--section {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.svg-illust--card {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.svg-illust--compact {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.svg-illust--auth {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ── Responsive Breakpoints for SVG Illustrations ── */
@media (max-width: 1024px) {
  .svg-illust--hero   { max-width: 380px; }
  .svg-illust--section { max-width: 340px; }
}

@media (max-width: 768px) {
  .svg-illust--hero   { max-width: 300px; }
  .svg-illust--section { max-width: 280px; }
  .svg-illust--card   { max-width: 240px; }
  .svg-illust--compact { max-width: 220px; }
  .svg-illust--auth   { max-width: 200px; }

  .svg-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .svg-feature-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .svg-illust--hero   { max-width: 220px; }
  .svg-illust--section { max-width: 200px; }
  .svg-illust--card   { max-width: 180px; }
  .svg-illust--compact { max-width: 160px; }
  .svg-illust--auth   { max-width: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   SVG ILLUSTRATIONS — Section Illustrations & Visual Enhancements
   ═══════════════════════════════════════════════════════════════ */

/* ── Base illustration container ── */
.section-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-4) 0;
}

.section-illustration img,
.section-illustration svg,
.section-illustration object {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

/* ── Hero illustration — placed in hero__right or alongside hero content ── */
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: var(--space-6) auto 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  animation: illustrationFadeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards;
  position: relative;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 4px 16px rgba(0, 105, 166, 0.04));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease;
}

.hero-illustration img:hover {
  opacity: 1;
  transform: scale(1.01) translateY(-2px);
}

/* ── Hero Split Grid — Modern 2-column hero layout (2026 SaaS) ── */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-split-grid__content {
  text-align: left;
}

.hero-split-grid__content .badge,
.hero-split-grid__content .hero__badge {
  margin-bottom: var(--space-3);
}

.hero-split-grid__content .hero__title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: var(--space-4);
  margin-left: 0;
  margin-right: auto;
  letter-spacing: -0.02em;
  text-align: left;
}

.hero-split-grid__content .hero__subtitle {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-5);
  margin-left: 0;
  margin-right: auto;
  color: var(--color-text-body, #4A6580);
  text-align: left;
}

.hero-split-grid__content .hero__actions {
  justify-content: flex-start;
  margin-bottom: var(--space-4);
  width: 100%;
}

.hero-split-grid__content .hero__chips {
  justify-content: flex-start;
  margin-top: var(--space-6);
}

.hero-split-grid__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 340px;
  margin-left: auto;
}

.hero-split-grid__visual::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 105, 166, 0.035) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-split-grid__visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(0, 105, 166, 0.05));
  opacity: 0;
  transform: translateX(20px) scale(0.98);
  animation: heroVisualSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

@keyframes heroVisualSlideIn {
  to {
    opacity: 0.92;
    transform: translateX(0) scale(1);
  }
}

.hero-split-grid__visual img:hover {
  opacity: 1;
  transform: scale(1.015) translateY(-2px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Legacy support */
.hero--with-illustration .hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.hero--with-illustration .hero-illustration {
  margin-top: 0;
  max-width: 100%;
}

/* ── Centered hero illustration (below content) ── */
.hero--centered .hero-illustration {
  margin: var(--space-8) auto 0;
  max-width: 400px;
}

/* ── Responsive — Hero Split Grid ── */
@media (max-width: 768px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-5);
  }

  .hero-split-grid__content {
    text-align: center;
  }

  .hero-split-grid__content .hero__title {
    font-size: clamp(1.6rem, 1rem + 2.5vw, 2.4rem);
  }

  .hero-split-grid__content .hero__actions {
    justify-content: center;
  }

  .hero-split-grid__content .hero__chips {
    justify-content: center;
  }

  .hero-split-grid__content .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-split-grid__visual {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-split-grid__visual img {
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .hero-split-grid__content .hero__title {
    font-size: clamp(1.4rem, 1rem + 2vw, 1.9rem);
  }

  .hero-split-grid__visual {
    max-width: 200px;
  }

  .hero-split-grid__visual img {
    max-width: 200px;
  }
}

/* ── Feature section illustration — split layout (2026 SaaS Standard) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.feature-split--reversed {
  direction: rtl;
}

.feature-split--reversed > * {
  direction: ltr;
}

.feature-split__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-split__content .section__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary, #0069A6);
  margin-bottom: var(--space-1);
}

.feature-split__content .section__title {
  font-size: clamp(1.4rem, 0.9rem + 1.6vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-text, #163760);
}

.feature-split__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

/* Soft background glow behind illustration */
.feature-split__illustration::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 105, 166, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.feature-split__illustration img {
  width: 100%;
  max-width: 340px;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 4px 16px rgba(0, 105, 166, 0.04));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              filter 0.3s ease;
}

.feature-split__illustration img:hover {
  opacity: 1;
  transform: scale(1.015) translateY(-3px);
  filter: drop-shadow(0 8px 24px rgba(0, 105, 166, 0.07));
}

/* ── CTA illustration — smaller, accent usage ── */
.cta-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  margin: 0 auto var(--space-5);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.cta-illustration:hover {
  opacity: 0.9;
}

.cta-illustration img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 105, 166, 0.05));
}

/* ── Inline illustration — within content sections ── */
.inline-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  margin: var(--space-6) auto;
}

.inline-illustration img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 105, 166, 0.05));
}

/* ── Empty state illustration ── */
.empty-state-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-4);
  text-align: center;
}

.empty-state-illustration img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: var(--space-6);
  opacity: 0.7;
}

.empty-state-illustration__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.empty-state-illustration__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  max-width: 400px;
}

/* ── Animation ── */
@keyframes illustrationFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll-triggered illustration animation */
.section-illustration.animate-on-scroll,
.feature-split__illustration.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-illustration.animate-on-scroll.is-visible,
.section-illustration.animate-on-scroll.visible,
.feature-split__illustration.animate-on-scroll.is-visible,
.feature-split__illustration.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature-split scroll reveal — staggered content + illustration */
.feature-split.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-split.animate-on-scroll.is-visible,
.feature-split.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-split.animate-on-scroll .feature-split__content {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-split.animate-on-scroll .feature-split__illustration {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-split--reversed.animate-on-scroll .feature-split__content {
  transform: translateX(20px);
}

.feature-split--reversed.animate-on-scroll .feature-split__illustration {
  transform: translateX(-20px);
}

.feature-split.animate-on-scroll.is-visible .feature-split__content,
.feature-split.animate-on-scroll.is-visible .feature-split__illustration,
.feature-split.animate-on-scroll.visible .feature-split__content,
.feature-split.animate-on-scroll.visible .feature-split__illustration {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive — Illustrations ── */
@media (max-width: 768px) {
  .hero--with-illustration .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero--with-illustration .hero__left {
    text-align: center;
  }

  .hero--with-illustration .hero__left .hero__actions,
  .hero--with-illustration .hero__left .hero__chips,
  .hero--with-illustration .hero__left .hero__social-proof {
    justify-content: center;
  }

  .hero-illustration {
    max-width: 240px;
    margin: var(--space-4) auto 0;
  }

  .hero--centered .hero-illustration {
    max-width: 220px;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .feature-split--reversed {
    direction: ltr;
  }

  .feature-split__illustration {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }

  .feature-split__illustration img {
    max-width: 240px;
  }

  .feature-split__content .section__title {
    font-size: clamp(1.25rem, 0.9rem + 1.2vw, 1.6rem);
  }

  .section-illustration {
    max-width: 360px;
  }

  .cta-illustration {
    max-width: 240px;
  }

  .inline-illustration {
    max-width: 280px;
  }

  .empty-state-illustration img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-illustration {
    max-width: 200px;
  }

  .hero-illustration img {
    max-height: 200px;
  }

  .section-illustration {
    max-width: 280px;
  }

  .feature-split__illustration {
    max-width: 200px;
  }

  .feature-split__illustration img {
    max-width: 200px;
  }
}
