/* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --bg-void:     #080c10;
      --bg-deep:     #0d1117;
      --bg-surface:  #111820;
      --bg-raised:   #161e28;
      --bg-card:     #1a2330;
      --bg-card-hover: #1f2a38;

      --border-subtle: rgba(255,255,255,0.06);
      --border-muted:  rgba(255,255,255,0.10);
      --border-strong: rgba(255,255,255,0.16);

      --emerald-50:  #edfdf5;
      --emerald-100: #d1fae5;
      --emerald-300: #6ee7b7;
      --emerald-400: #34d399;
      --emerald-500: #10b981;
      --emerald-600: #059669;
      --emerald-700: #047857;

      --text-primary:   #f0f6fc;
      --text-secondary: #8b949e;
      --text-muted:     #4a5568;
      --text-accent:    #34d399;

      --glow-emerald: 0 0 40px rgba(16,185,129,0.20);
      --glow-strong:  0 0 60px rgba(16,185,129,0.30);

      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-2xl: 32px;

      --transition-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
      --transition-base: 0.25s cubic-bezier(0.4,0,0.2,1);
      --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);

      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-display: 'Space Grotesk', sans-serif;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-sans);
      background-color: var(--bg-deep);
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a  { color: inherit; text-decoration: none; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section { padding: 100px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16,185,129,0.10);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--emerald-400);
      margin-bottom: 24px;
    }

    .section-label::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--emerald-400);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.7); }
    }

    .section-headline {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }

    .section-sub {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 600px;
    }

    .text-accent { color: var(--emerald-400); }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-muted), transparent);
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-sans);
      font-weight: 600;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: all var(--transition-base);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: #fff;
      box-shadow: 0 4px 20px rgba(16,185,129,0.35), 0 1px 0 rgba(255,255,255,0.1) inset;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      border-radius: inherit;
      opacity: 0;
      transition: opacity var(--transition-fast);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(16,185,129,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
    }

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

    .btn-primary:active { transform: translateY(0); }

    .btn-ghost {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-muted);
    }

    .btn-ghost:hover {
      background: var(--bg-card);
      border-color: var(--border-strong);
      transform: translateY(-1px);
    }

    .btn-lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-lg); }

    .btn-xl {
      padding: 20px 48px;
      font-size: 17px;
      border-radius: var(--radius-lg);
      letter-spacing: -0.01em;
    }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      transition: background var(--transition-base), backdrop-filter var(--transition-base);
    }

    .nav.scrolled {
      background: rgba(13,17,23,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      transition: color var(--transition-fast);
    }

    .nav-links a:hover { color: var(--text-primary); }

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

    .nav-actions .btn { padding: 10px 20px; font-size: 14px; }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse at center,
        rgba(16,185,129,0.12) 0%,
        rgba(16,185,129,0.05) 40%,
        transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(16,185,129,0.08);
      border: 1px solid rgba(16,185,129,0.20);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--emerald-300);
      margin-bottom: 28px;
    }

    .hero-badge span {
      background: var(--emerald-500);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 100px;
    }

    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .hero-headline .line-accent {
      background: linear-gradient(135deg, var(--emerald-400), var(--emerald-300));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 500px;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-trust-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--border-subtle);
    }

    .hero-trust-stat {
      display: flex;
      flex-direction: column;
    }

    .hero-trust-stat strong {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .hero-trust-stat small {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .hero-trust-divider {
      width: 1px;
      height: 36px;
      background: var(--border-subtle);
    }

    /* Dashboard Mockup */
    .hero-visual { position: relative; }

    .dashboard-mockup {
      background: var(--bg-card);
      border: 1px solid var(--border-muted);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05),
        var(--glow-emerald);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50%       { transform: translateY(-14px) rotate(-1deg); }
    }

    .mockup-topbar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      background: var(--bg-raised);
      border-bottom: 1px solid var(--border-subtle);
    }

    .mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-red    { background: #ff5f57; }
    .dot-yellow { background: #ffbd2e; }
    .dot-green  { background: #28c840; }

    .mockup-title {
      flex: 1;
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .mockup-body { padding: 24px; }

    .mockup-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 20px;
    }

    .stat-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
    }

    .stat-card-label {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stat-card-value {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .stat-card-value.accent { color: var(--emerald-400); }

    .stat-card-delta {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      color: var(--emerald-400);
      font-weight: 600;
      margin-top: 4px;
    }

    .chart-area {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
      margin-bottom: 16px;
    }

    .chart-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 70px;
    }

    .chart-bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      transition: opacity var(--transition-fast);
    }

    .chart-bar:hover { opacity: 0.8; }

    .activity-list { display: flex; flex-direction: column; gap: 10px; }

    .activity-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
    }

    .activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .activity-text { font-size: 12px; color: var(--text-secondary); flex: 1; }

    .activity-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 100px;
    }

    .badge-success { background: rgba(16,185,129,0.15); color: var(--emerald-400); }
    .badge-info    { background: rgba(59,130,246,0.15); color: #60a5fa; }
    .badge-warn    { background: rgba(245,158,11,0.15); color: #f59e0b; }

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .trust-bar {
      padding: 56px 0;
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .trust-bar-headline {
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .logo-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 56px;
      flex-wrap: wrap;
    }

    .logo-item {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0.40;
      filter: grayscale(100%);
      transition: opacity var(--transition-base), filter var(--transition-base);
    }

    .logo-item:hover { opacity: 0.75; filter: grayscale(0%); }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: var(--border-muted);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .logo-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--text-secondary);
      letter-spacing: -0.02em;
    }

    /* ============================================================
       VALUE HOOK – 3 STEPS
    ============================================================ */
    .steps-section { background: var(--bg-deep); }
    .steps-header { text-align: center; margin-bottom: 72px; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border-subtle);
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .step-card {
      background: var(--bg-card);
      padding: 48px 36px;
      position: relative;
      transition: background var(--transition-base);
    }

    .step-card:hover { background: var(--bg-card-hover); }

    .step-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .step-number {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: var(--emerald-400);
      line-height: 1;
      letter-spacing: -0.04em;
      flex-shrink: 0;
    }

    .step-icon {
      width: 44px;
      height: 44px;
      background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .step-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .step-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

    /* ============================================================
       FEATURES GRID
    ============================================================ */
    .features-section { background: var(--bg-surface); }
    .features-header { text-align: center; margin-bottom: 72px; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border-subtle);
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .feature-card {
      background: var(--bg-card);
      padding: 40px 36px;
      transition: background var(--transition-base);
      position: relative;
      overflow: hidden;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity var(--transition-base);
    }

    .feature-card:hover { background: var(--bg-card-hover); }
    .feature-card:hover::after { opacity: 1; }

    .feature-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 0;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .feature-icon.emerald  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); }
    .feature-icon.blue     { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
    .feature-icon.purple   { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }
    .feature-icon.amber    { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); }
    .feature-icon.rose     { background: rgba(244,63,94,0.12);  border: 1px solid rgba(244,63,94,0.25); }
    .feature-icon.cyan     { background: rgba(6,182,212,0.12);  border: 1px solid rgba(6,182,212,0.25); }

    .feature-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .feature-detail {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
      position: relative;
      z-index: 1;
      margin: 0;
    }

    .feature-title {
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
      line-height: 1.2;
    }

    /* ============================================================
       USE CASES
    ============================================================ */
    .usecases-section { background: var(--bg-surface); }
    .usecases-header { text-align: center; margin-bottom: 56px; }

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

    .usecase-card {
      background: var(--bg-card);
      border: 1px solid var(--border-muted);
      border-radius: var(--radius-xl);
      padding: 32px 28px;
      transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    }

    .usecase-card:hover {
      transform: translateY(-4px);
      border-color: rgba(16,185,129,0.35);
      box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    }

    .usecase-card-icon {
      width: 48px;
      height: 48px;
      background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .usecase-card-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .usecase-card-title::after {
      content: ':';
    }

    .usecase-card-desc {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.65;
      margin: 0;
    }

    @media (min-width: 1200px) {
      .usecases-grid { grid-template-columns: repeat(5, 1fr); }
    }

    .tab-nav {
      display: flex;
      justify-content: center;
      gap: 4px;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 6px;
      margin: 0 auto 48px;
      width: fit-content;
    }

    .tab-btn {
      padding: 10px 24px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      border: none;
      background: transparent;
      cursor: pointer;
      transition: all var(--transition-base);
      font-family: var(--font-sans);
    }

    .tab-btn:hover { color: var(--text-secondary); }

    .tab-btn.active {
      background: var(--bg-surface);
      color: var(--text-primary);
      border: 1px solid var(--border-muted);
    }

    .tab-content { display: none; animation: fadeIn 0.3s ease; }
    .tab-content.active { display: grid; }

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

    .usecase-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: var(--bg-card);
      border: 1px solid var(--border-muted);
      border-radius: var(--radius-xl);
      padding: 60px;
    }

    .usecase-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--emerald-400);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .usecase-title {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .usecase-desc {
      font-size: 16px;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .usecase-bullets { display: flex; flex-direction: column; gap: 12px; list-style: none; }

    .usecase-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
    }

    .usecase-bullets li::before {
      content: '\2192';
      color: var(--emerald-400);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .usecase-visual {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 280px;
    }

    .message-bubble {
      max-width: 80%;
      padding: 12px 16px;
      border-radius: 16px;
      font-size: 13px;
      line-height: 1.5;
    }

    .bubble-out {
      align-self: flex-end;
      background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
      color: #fff;
      border-bottom-right-radius: 4px;
    }

    .bubble-in {
      align-self: flex-start;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      border-bottom-left-radius: 4px;
    }

    .bubble-meta { font-size: 10px; opacity: 0.6; margin-top: 4px; display: flex; align-items: center; gap: 4px; }

    .bot-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: var(--emerald-400);
      font-weight: 600;
      padding: 4px 0;
    }

    /* ============================================================
       PRICING
    ============================================================ */
    .pricing-section { background: var(--bg-surface); }
    .pricing-header { text-align: center; margin-bottom: 72px; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    .plan-card {
      background: var(--bg-card);
      border: 1px solid var(--border-muted);
      border-radius: var(--radius-xl);
      padding: 40px 36px;
      position: relative;
      transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .plan-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }

    .plan-card.popular {
      border-color: rgba(16,185,129,0.40);
      background: linear-gradient(180deg, rgba(16,185,129,0.06) 0%, var(--bg-card) 40%);
      box-shadow:
        0 0 0 1px rgba(16,185,129,0.20),
        var(--glow-emerald);
      transform: translateY(-8px) scale(1.02);
    }

    .plan-card.popular:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow:
        0 0 0 1px rgba(16,185,129,0.30),
        var(--glow-strong),
        0 30px 80px rgba(0,0,0,0.5);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(16,185,129,0.4);
    }

    .plan-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-primary);
      margin-bottom: 0;
      line-height: 1.1;
    }

    .plan-name.accent { color: var(--emerald-400); }

    .plan-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0; flex-shrink: 0; }

    .plan-price-currency {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--text-secondary);
    }

    .plan-price-amount {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--text-primary);
      white-space: nowrap;
      line-height: 1;
    }

    .plan-price-period { font-size: 17px; color: var(--text-muted); font-weight: 500; }

    .plan-position {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 32px;
      min-height: 48px;
    }

    .plan-divider { height: 1px; background: var(--border-subtle); margin-bottom: 28px; }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-primary);
      font-weight: 500;
    }

    .plan-features li .check {
      width: 18px;
      height: 18px;
      background: rgba(16,185,129,0.15);
      border: 1px solid rgba(16,185,129,0.30);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .plan-features li .check svg {
      width: 10px;
      height: 10px;
      stroke: var(--emerald-400);
      stroke-width: 2.5;
      fill: none;
    }

    .plan-features li.is-unavailable {
      color: var(--text-muted);
      opacity: 0.72;
    }

    .plan-features li .cross {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--text-muted);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .plan-cta { width: 100%; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section { background: var(--bg-deep); }
    .faq-header { text-align: center; margin-bottom: 72px; }

    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: var(--border-subtle);
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
    }

    .faq-item { background: var(--bg-card); overflow: hidden; }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 36px;
      cursor: pointer;
      transition: background var(--transition-fast);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      list-style: none;
    }

    .faq-question:hover { background: var(--bg-card-hover); }

    .faq-icon {
      width: 28px;
      height: 28px;
      background: var(--bg-surface);
      border: 1px solid var(--border-muted);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      color: var(--emerald-400);
      transition: transform var(--transition-base), background var(--transition-base);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(16,185,129,0.15);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
      padding: 0 36px;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    .faq-item.open .faq-answer { max-height: 300px; padding: 0 36px 28px; }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    .cta-section {
      background: var(--bg-deep);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      bottom: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center,
        rgba(16,185,129,0.15) 0%,
        rgba(16,185,129,0.05) 40%,
        transparent 70%);
      pointer-events: none;
    }

    .cta-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 30%, transparent 80%);
      pointer-events: none;
    }

    .cta-inner { position: relative; z-index: 2; text-align: center; }

    .cta-headline {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .cta-sub {
      font-size: 18px;
      color: var(--text-secondary);
      margin-bottom: 48px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .cta-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }

    .cta-note { margin-top: 24px; font-size: 13px; color: var(--text-muted); }
    .cta-note span { color: var(--emerald-400); font-weight: 600; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: var(--bg-void);
      border-top: 1px solid var(--border-subtle);
      padding: 64px 0 40px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 56px;
    }

    .footer-brand-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }

    .footer-links a {
      font-size: 14px;
      color: var(--text-muted);
      transition: color var(--transition-fast);
    }

    .footer-links a:hover { color: var(--text-primary); }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid var(--border-subtle);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy { font-size: 13px; color: var(--text-muted); }

    .footer-legal { display: flex; gap: 24px; }

    .footer-legal a {
      font-size: 13px;
      color: var(--text-muted);
      transition: color var(--transition-fast);
    }

    .footer-legal a:hover { color: var(--text-primary); }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }

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

    .reveal-delay-1 { transition-delay: 0.10s; }
    .reveal-delay-2 { transition-delay: 0.20s; }
    .reveal-delay-3 { transition-delay: 0.30s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; gap: 60px; }
      .hero-visual { display: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .usecases-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .section { padding: 72px 0; }
      .steps-grid { grid-template-columns: 1fr; }
      .usecases-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .plan-card.popular { transform: none; }
      .usecase-panel { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
      .tab-nav { flex-wrap: wrap; width: 100%; }
      .nav-links { display: none; }
      .footer-inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .logo-row { gap: 32px; }
      .hero-trust-row { flex-wrap: wrap; gap: 16px; }
    }

    ::selection { background: rgba(16,185,129,0.3); color: var(--text-primary); }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb { background: var(--border-muted); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--border-strong); }

/* Mobile nav */
.nav-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-muted);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,17,23,0.98);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px 24px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav a { color: var(--text-secondary); font-weight: 500; }
.mobile-nav a:hover { color: var(--text-primary); }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}
.lang-switcher:hover { border-color: var(--border-strong); }
.lang-switcher-icon {
  font-size: 15px;
  line-height: 1;
  opacity: 0.9;
}
.nav-lang-select {
  padding: 2px 4px 2px 0;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-primary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  min-width: 88px;
  outline: none;
}
.nav-lang-select:hover { border-color: transparent; }
.footer .lang-switcher { width: 100%; }
.footer .nav-lang-select { flex: 1; width: 100%; }
.mobile-nav-actions .lang-switcher { width: 100%; }
.mobile-nav-actions .nav-lang-select { flex: 1; width: 100%; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
@media (max-width: 768px) {
  .nav-menu-toggle { display: inline-flex; }
  .nav-links { display: none !important; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions > .lang-switcher { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* Inner pages & auth */
.page-hero {
  padding: 120px 0 48px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(16,185,129,0.06) 0%, transparent 100%);
}
.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--text-secondary); }
.page-breadcrumb a:hover { color: var(--text-primary); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.page-hero-sub {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 640px;
}
.auth-section { padding-top: 56px; padding-bottom: 96px; }
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.auth-visual-card,
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
}
.auth-visual-card {
  background: linear-gradient(145deg, rgba(16,185,129,0.12) 0%, var(--bg-card) 55%);
  box-shadow: var(--glow-emerald);
}
.auth-visual-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.auth-visual-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.auth-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.auth-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 10px rgba(16,185,129,0.5);
}
.auth-plan-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-300);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
}
.auth-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.auth-card-intro {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-raised);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.form-input.is-invalid { border-color: #f87171; }
.form-error {
  font-size: 13px;
  color: #f87171;
}
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.form-check input { accent-color: var(--emerald-500); }
.form-link {
  font-size: 14px;
  color: var(--text-accent);
  font-weight: 500;
}
.form-link:hover { color: var(--emerald-300); }
.auth-footer-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.auth-footer-links a { color: var(--text-accent); font-weight: 600; }
.alert-success {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald-300);
  font-size: 14px;
  margin-bottom: 8px;
}
.btn-block { width: 100%; justify-content: center; }
@media (max-width: 992px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual-card { order: 2; }
  .auth-card { order: 1; }
}
@media (max-width: 768px) {
  .page-hero { padding-top: 104px; }
  .auth-visual-card, .auth-card { padding: 28px 24px; }
}

/* Inner pages */
.inner-section { padding: 56px 0 96px; }
.content-narrow { max-width: 900px; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.content-main { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.content-card,
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.content-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-muted);
}
.content-banner img { width: 100%; display: block; }
.content-body { display: flex; flex-direction: column; gap: 20px; }
.content-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.content-prose {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
}
.content-prose p { margin-bottom: 16px; }
.content-prose h1, .content-prose h2, .content-prose h3, .content-prose h4 {
  color: var(--text-primary);
  font-family: var(--font-display);
  margin: 24px 0 12px;
}
.content-prose ul, .content-prose ol { margin: 0 0 16px 20px; }
.content-prose a { color: var(--text-accent); }

.blog-conclusion-heading {
  color: var(--emerald-400) !important;
  font-size: 22px !important;
  margin-top: 32px !important;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
}

.blog-conclusion-cta {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.35);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.blog-conclusion-lead {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 600;
  color: #ecfdf5;
  text-wrap: pretty;
}

.blog-conclusion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .blog-conclusion-cta { padding: 22px 20px; }
  .blog-conclusion-lead { font-size: 18px; }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px dashed var(--border-muted);
  border-radius: var(--radius-xl);
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-400);
  font-weight: 700;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.about-media { display: grid; gap: 16px; }
.about-image-main,
.about-image-secondary {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-muted);
}
.about-experience {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
}
.about-experience strong {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
}
.about-experience span { color: var(--text-secondary); }
.stats-section { padding-top: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stats-grid-4 { grid-template-columns: repeat(4, 1fr); }
.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.stat-block span { color: var(--text-secondary); font-size: 14px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
}
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(16,185,129,0.25);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-raised);
  font-family: var(--font-display);
  font-size: 28px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}
.team-role { color: var(--text-secondary); font-size: 14px; margin-bottom: 12px; }
.team-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.team-socials a {
  font-size: 12px;
  color: var(--text-accent);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(16,185,129,0.08);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
}
.contact-card-icon { font-size: 28px; margin-bottom: 12px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-card a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.contact-card a:hover { color: var(--text-accent); }
.contact-form-card { margin-top: 8px; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group-full { grid-column: 1 / -1; }
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.alert-danger-box {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.25);
  color: #fca5a5;
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-danger-box ul { margin-left: 18px; }
.sidebar-stack { display: flex; flex-direction: column; gap: 20px; }
.sidebar-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
}
.sidebar-search { display: flex; flex-direction: column; gap: 12px; }
.sidebar-posts { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post {
  display: flex;
  gap: 12px;
  align-items: center;
  color: inherit;
}
.sidebar-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.sidebar-post-date {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.sidebar-post strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
}
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-links a {
  color: var(--text-secondary);
  font-size: 14px;
}
.sidebar-links a:hover { color: var(--text-accent); }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tag-cloud a,
.tag-label {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  background: var(--bg-raised);
}
.tag-cloud a:hover {
  color: var(--text-accent);
  border-color: rgba(16,185,129,0.35);
}
.tag-label {
  border: none;
  background: transparent;
  padding-left: 0;
  color: var(--text-muted);
}
.blog-list-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.blog-list-thumb img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.blog-list-body { padding: 28px 28px 28px 0; }
.blog-list-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 8px 0 12px;
}
.blog-list-body p { color: var(--text-secondary); line-height: 1.7; }
.cta-inline-section { padding-top: 0; padding-bottom: 96px; }
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(16,185,129,0.12), var(--bg-card));
  border: 1px solid var(--border-muted);
}
.cta-inline h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.cta-inline p { color: var(--text-secondary); }
.pagination-wrap { margin-top: 8px; }
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-muted);
  background: var(--bg-card);
  color: var(--text-secondary);
}
.page-item.active .page-link,
.page-link:hover {
  color: var(--text-primary);
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.12);
}
.page-item.disabled .page-link { opacity: 0.45; pointer-events: none; }
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .content-layout,
  .about-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-body { padding: 0 24px 24px; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .stats-grid,
  .contact-form-grid,
  .team-grid { grid-template-columns: 1fr; }
  .content-card, .sidebar-card { padding: 24px 20px; }
}

/* ============================================================
   AI LANDING SECTIONS
============================================================ */
.trust-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-capability {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.08);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
}
.ai-band {
  padding: 28px 0;
  background: linear-gradient(90deg, rgba(16,185,129,0.12) 0%, rgba(59,130,246,0.08) 50%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid rgba(16,185,129,0.2);
  border-bottom: 1px solid rgba(16,185,129,0.2);
}
.ai-band-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ai-band-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  flex-shrink: 0;
}
.ai-band-copy {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ai-band-copy strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
}
.ai-band-copy span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ai-assistant-section {
  background: var(--bg-deep);
}
.ai-assistant-header {
  text-align: center;
  margin-bottom: 56px;
}
.ai-assistant-header .section-sub {
  max-width: 880px;
  margin-inline: auto;
}
.ai-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.ai-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.ai-pillar-wide {
  grid-column: span 3;
}
.ai-pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ai-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.ai-pillar-icon.emerald { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); }
.ai-pillar-icon.blue { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.ai-pillar-icon.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }
.ai-pillar-icon.amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); }
.ai-pillar-icon.rose { background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.25); }
.ai-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 0;
  color: var(--text-primary);
  line-height: 1.2;
}
.ai-pillar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.ai-grounded-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 24px;
}
.ai-grounded-copy h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.ai-grounded-copy p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ai-grounded-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ai-grounded-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}
.ai-grounded-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-weight: 700;
}
.ai-chat-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-chat-line {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.ai-chat-line.inbound {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-muted);
  color: var(--text-primary);
}
.ai-chat-line.outbound {
  align-self: flex-end;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--text-primary);
}
.ai-chat-line.outbound.muted {
  opacity: 0.85;
  font-size: 13px;
}
.ai-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .ai-pillars-grid { grid-template-columns: 1fr 1fr; }
  .ai-pillar-wide { grid-column: span 2; }
  .ai-grounded-panel { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ai-band-inner { flex-direction: column; align-items: flex-start; }
  .ai-pillars-grid { grid-template-columns: 1fr; }
  .ai-pillar-wide { grid-column: span 1; }
  .ai-grounded-panel { padding: 28px 20px; }
}

.footer-contact-list a,
.footer-website a {
  word-break: break-word;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  border: 1px solid var(--border-muted);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.floating-whatsapp-icon {
  font-size: 18px;
  line-height: 1;
}

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(10, 14, 20, 0.96);
  border: 1px solid var(--border-muted);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.cookie-consent-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cookie-consent-text a {
  color: var(--emerald-400);
}

.demo-video-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border-muted);
}

.demo-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.demo-video-thumb {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(16,185,129,0.25), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-muted);
  overflow: hidden;
}

.demo-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.demo-video-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .demo-video-panel { grid-template-columns: 1fr; padding: 24px; }
  .cookie-consent-inner { flex-direction: column; align-items: stretch; }
  .floating-whatsapp-label { display: none; }
  .floating-whatsapp { padding: 14px; border-radius: 50%; }
}
