    :root {
      /* Dark mode (default) */
      --bg:        #080808;
      --bg2:       #0f0f0f;
      --bg3:       #161616;
      --border:    rgba(255,255,255,0.07);
      --accent:    #2563eb;
      --accent2:   #3b82f6;
      --emerald:   #10b981;
      --orange:    #f97316;
      --text:      #f0f0f0;
      --muted:     #6b6b6b;
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* Light mode */
    [data-theme="light"] {
      --bg:        #f8f9fa;
      --bg2:       #f0f1f4;
      --bg3:       #e8eaef;
      --border:    rgba(0,0,0,0.06);
      --accent:    #2563eb;
      --accent2:   #3b82f6;
      --emerald:   #10b981;
      --orange:    #f97316;
      --text:      #1a1a1a;
      --muted:     #6b7280;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: var(--font-head);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    /* ── NAVBAR ─────────────────────────────────── */
    .navbar {
      background: rgba(8,8,8,0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background 0.3s ease, border-color 0.3s ease;
    }
    [data-theme="light"] .navbar {
      background: rgba(248,249,250,0.95);
    }
    .navbar-brand {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text) !important;
      letter-spacing: -0.03em;
    }
    .navbar-brand span { color: var(--accent2); }
    .nav-link {
      color: var(--muted) !important;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: color 0.2s;
      padding: 0.5rem 1rem !important;
    }
    .nav-link:hover { color: var(--text) !important; }
    .navbar-toggler {
      border: 1px solid var(--border);
      color: var(--text);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240,240,240,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .btn-nav {
      background: var(--accent);
      color: #fff !important;
      border-radius: 8px;
      padding: 0.45rem 1.25rem !important;
      font-size: 0.78rem !important;
      letter-spacing: 0.08em;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-nav:hover { background: var(--accent2); transform: translateY(-1px); }

    /* ── THEME TOGGLE ───────────────────────────── */
    .theme-toggle {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
      width: 38px;
      height: 38px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      padding: 0;
      flex-shrink: 0;
    }
    .theme-toggle:hover {
      border-color: var(--accent2);
      color: var(--accent2);
      background: rgba(37,99,235,0.05);
      transform: scale(1.05);
    }
    .theme-toggle i {
      transition: transform 0.4s ease;
    }
    .theme-toggle.loading i {
      animation: spin 0.6s ease-in-out;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* ── HERO ───────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 2rem 0 6rem;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(37,99,235,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16,185,129,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }
    .badge-top {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(37,99,235,0.12);
      border: 1px solid rgba(37,99,235,0.3);
      color: var(--accent2);
      border-radius: 100px;
      padding: 0.35rem 1rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.75rem;
    }
    .badge-top i { font-size: 0.65rem; }
    .hero h1 {
      font-size: clamp(1.9rem, 7vw, 3.5rem);
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero h1 .accent { color: var(--accent2); }
    .hero h1 .line2 {
      display: block;
      background: linear-gradient(90deg, #fff 0%, #6b7280 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-lead {
      color: #9ca3af;
      font-size: 1.1rem;
      max-width: 520px;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    .btn-primary-main {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 0.9rem 2rem;
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 0 30px rgba(37,99,235,0.25);
    }
    .btn-primary-main:hover {
      background: var(--accent2);
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(59,130,246,0.4);
      color: #fff;
    }
    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.9rem 2rem;
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      transition: all 0.2s;
    }
    .btn-ghost:hover {
      color: var(--text);
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.04);
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.25rem;
    }

    /* Hero mockup */
    .hero-mockup {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(37,99,235,0.08);
    }
    .hero-mockup-bar {
      background: #1a1a1a;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-bottom: 1px solid var(--border);
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #febc2e; }
    .dot-g { background: #28c840; }
    .mockup-url {
      flex: 1;
      background: #111;
      border-radius: 6px;
      height: 26px;
      margin: 0 0.5rem;
      display: flex;
      align-items: center;
      padding: 0 0.75rem;
      font-size: 0.7rem;
      color: #444;
      font-family: monospace;
    }
    .mockup-screen {
      background: #0d0d0d;
      min-height: 340px;
      position: relative;
      overflow: hidden;
    }

    /* Fake calendar inside mockup */
    .fake-cal {
      padding: 1rem;
    }
    .fake-cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .fake-cal-title {
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
    }
    .fake-row {
      display: flex;
      gap: 4px;
      margin-bottom: 4px;
    }
    .fake-cell {
      flex: 1;
      height: 36px;
      border-radius: 6px;
      background: #161616;
      border: 1px solid #1f1f1f;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #444;
      font-family: var(--font-head);
    }
    .fake-cell.label { background: transparent; border: none; color: #333; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .fake-booking {
      position: absolute;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      padding: 0 0.6rem;
      font-size: 0.55rem;
      font-family: var(--font-head);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
      overflow: hidden;
    }
    .fb-blue { background: #1d4ed8; color: #fff; }
    .fb-orange { background: #ea580c; color: #fff; }
    .fb-green { background: #065f46; color: #10b981; }

    /* ── SECTION COMMON ─────────────────────────── */
    section { padding: 6rem 0; }
    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .section-label::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--accent2);
      border-radius: 2px;
    }
    .section-title {
      font-size: clamp(1.6rem, 4vw, 3.2rem);
      color: #fff;
      margin-bottom: 1rem;
    }
    .section-sub {
      color: #6b7280;
      font-size: 1rem;
      font-weight: 300;
      max-width: 560px;
    }

    /* ── FEATURES ───────────────────────────────── */
    #funkcije { background: var(--bg); }
    .feature-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      border-color: rgba(37,99,235,0.3);
      transform: translateY(-4px);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 1.25rem;
    }
    .fi-blue { background: rgba(37,99,235,0.12); color: var(--accent2); }
    .fi-green { background: rgba(16,185,129,0.12); color: var(--emerald); }
    .fi-orange { background: rgba(249,115,22,0.12); color: var(--orange); }
    .fi-purple { background: rgba(139,92,246,0.12); color: #a78bfa; }
    .fi-red { background: rgba(239,68,68,0.12); color: #f87171; }
    .fi-teal { background: rgba(20,184,166,0.12); color: #2dd4bf; }
    .feature-card h4 {
      font-size: 1rem;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .feature-card p {
      font-size: 1rem;
      color: #6b7280;
      font-weight: 300;
      line-height: 1.6;
      margin: 0;
    }

    /* ── SCREENSHOTS ────────────────────────────── */
    #screenshots { background: var(--bg2); }
    .screenshot-placeholder {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      aspect-ratio: 16/10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: #333;
      transition: border-color 0.2s;
      overflow: hidden;
      position: relative;
    }
    .screenshot-placeholder:hover { border-color: rgba(37,99,235,0.3); }
    .screenshot-placeholder i { font-size: 2rem; }
    .screenshot-placeholder span {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }
    .screenshot-label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-top: 0.75rem;
      font-weight: 600;
    }

    /* Fake mini UI inside screenshots */
    .ss-inner {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      padding: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .ss-bar { height: 8px; border-radius: 4px; background: #1f1f1f; }
    .ss-row { display: flex; gap: 0.4rem; flex: 1; }
    .ss-col { border-radius: 8px; background: #1a1a1a; border: 1px solid #222; flex: 1; }
    .ss-col.accent-col { border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.05); }
    .ss-pill {
      display: inline-block;
      height: 6px;
      border-radius: 3px;
      margin: 0.5rem 0.5rem 0;
    }

    /* ── STATS ──────────────────────────────────── */
    #prednosti { background: var(--bg); }
    .stat-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-head);
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-num span { color: var(--accent2); }
    .stat-desc {
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ── PRICING ────────────────────────────────── */
    #cenovnik { background: var(--bg2); }
    .price-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.5rem;
      height: 100%;
      position: relative;
      transition: border-color 0.2s, transform 0.2s;
    }
    .price-card:hover { transform: translateY(-4px); }
    .price-card.featured {
      border-color: rgba(37,99,235,0.5);
      background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, var(--bg3) 60%);
    }
    .featured-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.3rem 1rem;
      border-radius: 100px;
      white-space: nowrap;
    }
    .price-name {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .price-amount {
      font-family: var(--font-head);
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .price-amount sup { font-size: 1.5rem; vertical-align: super; }
    .price-period {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }
    .price-features { list-style: none; padding: 0; margin: 0 0 2rem; }
    .price-features li {
      font-size: 1rem;
      color: #9ca3af;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .price-features li:last-child { border-bottom: none; }
    .price-features li i { color: var(--emerald); font-size: 0.8rem; }
    .price-features li i.bi-x-circle { color: #374151; }
    .btn-price {
      display: block;
      text-align: center;
      padding: 0.85rem;
      border-radius: 12px;
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      letter-spacing: 0.05em;
    }
    .btn-price-outline {
      border: 1px solid var(--border);
      color: var(--muted);
    }
    .btn-price-outline:hover {
      border-color: rgba(255,255,255,0.2);
      color: var(--text);
      background: rgba(255,255,255,0.04);
    }
    .btn-price-solid {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 30px rgba(37,99,235,0.25);
    }
    .btn-price-solid:hover {
      background: var(--accent2);
      color: #fff;
      box-shadow: 0 0 40px rgba(59,130,246,0.4);
    }

    /* ── HOW IT WORKS ───────────────────────────── */
    #kako-radi { background: var(--bg); }
    .step-num {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: rgba(37,99,235,0.1);
      border: 1px solid rgba(37,99,235,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--accent2);
      margin-bottom: 1.25rem;
      flex-shrink: 0;
    }
    .step-line {
      width: 1px;
      flex: 1;
      background: linear-gradient(to bottom, rgba(37,99,235,0.3), transparent);
      margin: 0 auto;
    }
    .step-title {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .step-desc {
      font-size: 1rem;
      color: #6b7280;
      font-weight: 300;
    }

    /* ── CONTACT ────────────────────────────────── */
    #kontakt { background: var(--bg2); }
    .contact-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 3rem;
    }
    .form-control-dark {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.85rem 1.1rem;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-control-dark:focus {
      outline: none;
      border-color: var(--accent2);
      background: #0d0d0d;
      box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    }
    .form-control-dark::placeholder { color: #3f3f3f; }
    .form-label-dark {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 0.5rem;
      display: block;
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-info-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(37,99,235,0.1);
      border: 1px solid rgba(37,99,235,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent2);
      flex-shrink: 0;
      font-size: 1rem;
    }
    .contact-info-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }
    .contact-info-val {
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 500;
    }

    /* ── FOOTER ─────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 3rem 0;
    }
    .footer-brand {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
    }
    .footer-brand span { color: var(--accent2); }
    .footer-desc {
      font-size: 0.9rem;
      color: #4b5563;
      margin-top: 0.5rem;
      font-weight: 300;
    }
    .footer-link {
      font-size: 0.8rem;
      color: #4b5563;
      text-decoration: none;
      transition: color 0.2s;
      display: block;
      margin-bottom: 0.5rem;
    }
    .footer-link:hover { color: var(--text); }
    .footer-head {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #374151;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: #374151;
      margin: 0;
    }

    /* ── DIVIDER ────────────────────────────────── */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    /* ── DEMO RIBBON ────────────────────────────── */
    .demo-ribbon {
      background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(16,185,129,0.08) 100%);
      border: 1px solid rgba(37,99,235,0.2);
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
    }
    .demo-ribbon h3 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .demo-ribbon p {
      color: #6b7280;
      font-size: 1rem;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    /* ── MOBILE NAV ─────────────────────────────── */
    .navbar-collapse { background: rgba(8,8,8,0.98); }
    [data-theme="light"] .navbar-collapse { background: rgba(248,249,250,0.98); }
    @media (max-width: 991px) {
      .navbar-collapse {
        padding: 1rem;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
        border-radius: 12px;
      }
      .hero { padding: 3rem 0 4rem; }
      .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
      section { padding: 4rem 0; }
      .contact-card { padding: 2rem; }
      .stat-num { font-size: 2rem; }
      .main-scr-text { font-size: 1rem!important; } 
    }

    /* ── INLINE STYLES CONVERTED TO CLASSES ────── */
    
    /* Hero stat colored text */
    .stat-accent2 { color: var(--accent2); }
    .stat-emerald { color: var(--emerald); }
    .stat-orange { color: var(--orange); }
    
    /* Fake calendar elements */
    .fake-cal-button {
      width: 60px;
      height: 22px;
      background: #1a1a1a;
      border-radius: 6px;
      border: 1px solid #222;
    }
    
    .fake-cal-button-active {
      width: 80px;
      height: 22px;
      background: #2563eb;
      border-radius: 6px;
    }
    
    /* Fake calendar layout */
    .fake-cal-vehicles {
      position: relative;
    }
    
    .fake-cal-rows {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 4px;
    }
    
    .fake-cal-row {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    
    .fake-cal-label {
      width: 80px;
      font-size: 0.55rem;
      color: #444;
      font-family: var(--font-head);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 8px 0;
    }
    
    .fake-cal-timeline {
      flex: 1;
      height: 36px;
      background: #111;
      border-radius: 6px;
      border: 1px solid #1a1a1a;
      position: relative;
      overflow: hidden;
    }
    
    /* Fake calendar stats row */
    .fake-cal-stats {
      display: flex;
      gap: 6px;
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid #1a1a1a;
    }
    
    .fake-cal-stat-box {
      flex: 1;
      background: #111;
      border-radius: 8px;
      padding: 0.5rem 0.6rem;
      border: 1px solid #1f1f1f;
    }
    
    .fake-cal-stat-label {
      font-size: 0.5rem;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 2px;
    }
    
    .fake-cal-stat-value {
      font-size: 0.75rem;
      font-family: var(--font-head);
      font-weight: 800;
    }
    
    .fake-cal-stat-revenue {
      color: #10b981;
    }
    
    .fake-cal-stat-active {
      color: #fff;
    }
    
    .fake-cal-stat-debt {
      color: #f97316;
    }
    
    .fake-cal-stat-debt-box {
      border: 1px solid #f97316;
      background: rgba(249, 115, 22, 0.05);
    }
    
    /* Screenshot images */
    .screenshot-img {
      width: 100%;
      height: 100%;
      border-radius: inherit;
    }
    
    .screenshot-img-contain {
      object-fit: contain;
    }
    
    .screenshot-img-cover {
      object-fit: cover;
    }
    
    /* Main screenshot text */
    .main-scr-text {
      margin-top: 1.5rem;
      font-size: 2rem;
      font-weight: 600;
      color: #f0f0f0;
      font-family: 'Syne', sans-serif;
      line-height: 1.4;
    }
    
    /* Price card custom text */
    .price-amount-custom {
      font-size: 2rem;
    }
    
    /* Footer text styles */
    .footer-pricing-note {
      font-size: 0.9rem;
      color: var(--muted);
    }
    
    .footer-demo-text {
      font-size: 0.82rem;
      color: #4b5563;
      margin-bottom: 1rem;
      font-weight: 300;
    }
    
    .button-demo-footer {
      font-size: 0.82rem;
      padding: 0.7rem 1.5rem;
    }
    
    /* Contact form info box */
    .contact-info-box {
      margin-top: 2rem;
      padding: 1.5rem;
      background: rgba(37, 99, 235, 0.06);
      border: 1px solid rgba(37, 99, 235, 0.15);
      border-radius: 16px;
    }
    
    .contact-info-box p {
      font-size: 0.82rem;
      color: #6b7280;
      margin: 0;
      font-weight: 300;
      line-height: 1.6;
    }
    
    .contact-info-box i {
      color: var(--emerald);
      margin-right: 0.4rem;
    }
    
    .link-footer {
      font-size: 0.72rem;
    }
    
    /* Aspect ratio variations */
    .aspect-16-9 { aspect-ratio: 16/9; }
    .aspect-9-16 { aspect-ratio: 9/16; }
    .max-height-740 { max-height: 740px; }
    
    /* Fake booking positions */
    .fb-left-5 { left: 5%; width: 35%; }
    .fb-left-15 { left: 15%; width: 55%; }
    .fb-left-2 { left: 2%; width: 25%; }
    .fb-left-40 { left: 40%; width: 45%; }
    .fb-left-55 { left: 55%; width: 38%; }
    .fb-left-30 { left: 30%; width: 60%; }
    
    /* Fake cal stat label debt color */
    .fake-cal-stat-label-debt {
      color: #f97316;
    }

    /* Divider custom margin */
    .divider-footer {
      margin-bottom: 1.5rem;
    }
    
    /* Section backgrounds */
    .section-bg-dark {
      background: var(--bg2);
    }
    
    .section-bg-default {
      background: var(--bg);
    }

    /* ── LIGHT MODE SPECIFIC STYLES ─────────────── */
    [data-theme="light"] .hero-mockup-bar {
      background: #f0f1f4;
      border-bottom-color: rgba(0,0,0,0.06);
    }

    [data-theme="light"] .mockup-url {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.08);
      color: #666;
    }

    [data-theme="light"] .mockup-screen {
      background: #f0f1f4;
    }

    [data-theme="light"] .fake-cal-title {
      color: #1a1a1a;
    }

    [data-theme="light"] .fake-cell {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      color: #8b8b8b;
    }

    [data-theme="light"] .fake-cell.label {
      background: transparent;
      border: none;
      color: #666;
    }

    [data-theme="light"] .screenshot-placeholder {
      background: #ffffff;
      border-color: rgba(0,0,0,0.08);
    }

    [data-theme="light"] .fake-booking {
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* HEADING COLORS - Light Mode - Critical for contrast */
    [data-theme="light"] h1,
    [data-theme="light"] h2,
    [data-theme="light"] h3,
    [data-theme="light"] h4,
    [data-theme="light"] h5 {
      color: #1a1a1a;
    }

    /* Hero section light mode */
    [data-theme="light"] .hero {
      background: var(--bg);
    }

    [data-theme="light"] .hero::before {
      background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(37,99,235,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16,185,129,0.05) 0%, transparent 60%);
    }

    /* Hero h1 light mode */
    [data-theme="light"] .hero h1 {
      color: #0a0a0a;
    }

    [data-theme="light"] .hero h1 .line2 {
      background: linear-gradient(90deg, #1a1a1a 0%, #4b5563 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Hero lead text light mode */
    [data-theme="light"] .hero-lead {
      color: #4b5563;
    }

    /* Hero stat number light mode */
    [data-theme="light"] .hero-stat-num {
      color: #0a0a0a;
    }

    [data-theme="light"] .hero-stat-label {
      color: #6b7280;
    }

    /* Badge light mode */
    [data-theme="light"] .badge-top {
      background: rgba(37,99,235,0.06);
      border-color: rgba(37,99,235,0.15);
      color: #1a1a1a;
    }

    /* Section label, title, subtitle light mode */
    [data-theme="light"] .section-label {
      color: #2563eb;
    }

    [data-theme="light"] .section-title {
      color: #1a1a1a;
    }

    [data-theme="light"] .section-sub {
      color: #4b5563;
    }

    /* Feature cards light mode */
    [data-theme="light"] .feature-card {
      background: #ffffff;
      border-color: rgba(0,0,0,0.08);
    }

    [data-theme="light"] .feature-card h4 {
      color: #1a1a1a;
    }

    [data-theme="light"] .feature-card p {
      color: #4b5563;
    }

    /* General paragraph text in light mode */
    [data-theme="light"] p {
      color: #4b5563;
    }

    /* Specific section paragraphs light mode */
    [data-theme="light"] .step-desc {
      color: #4b5563;
    }

    [data-theme="light"] .price-features li {
      color: #4b5563;
    }

    [data-theme="light"] .section-description {
      color: #1a1a1a;
    }

    /* Button styles in light mode */
    [data-theme="light"] .btn-primary-main {
      color: #fff;
      box-shadow: 0 4px 16px rgba(37,99,235,0.25);
    }

    [data-theme="light"] .btn-ghost {
      color: #1a1a1a;
      border-color: rgba(0,0,0,0.1);
    }

    [data-theme="light"] .btn-ghost:hover {
      background: rgba(0,0,0,0.04);
      border-color: rgba(0,0,0,0.2);
    }

    /* Price card light mode */
    [data-theme="light"] .price-card {
      background: #ffffff;
      border-color: rgba(0,0,0,0.08);
    }

    [data-theme="light"] .price-card h4 {
      color: #1a1a1a;
    }

    [data-theme="light"] .price-amount {
      color: #1a1a1a;
    }

    [data-theme="light"] .price-period {
      color: #4b5563;
    }

    /* Step section light mode */
    [data-theme="light"] .step-title {
      color: #1a1a1a;
    }

    [data-theme="light"] .step-num {
      color: #2563eb;
      background: rgba(37, 99, 235, 0.1);
    }

    /* Section description light mode */
    [data-theme="light"] .section-sub {
      color: #4b5563;
    }

    /* Contact form light mode */
    [data-theme="light"] .contact-info-label {
      color: #1a1a1a;
    }

    [data-theme="light"] .contact-info-val {
      color: #2563eb;
    }

    /* Footer light mode */
    [data-theme="light"] .footer-head {
      color: #1a1a1a;
    }

    [data-theme="light"] .footer-link {
      color: #2563eb;
    }

    [data-theme="light"] .footer-copy {
      color: #6b7280;
    }

    /* Stats card light mode */
    [data-theme="light"] .stat-card {
      background: rgba(37, 99, 235, 0.05);
      border-color: rgba(37, 99, 235, 0.15);
    }

    [data-theme="light"] .stat-num {
      color: #1a1a1a;
    }

    [data-theme="light"] .stat-desc {
      color: #4b5563;
    }

    /* Screenshot section light mode */
    [data-theme="light"] .screenshot-label {
      color: #4b5563;
    }

    [data-theme="light"] .main-scr-text {
      color: #1a1a1a;
    }

    /* Icon colors light mode */
    [data-theme="light"] .price-features li i.bi-x-circle {
      color: #d1d5db;
    }

    /* Feature icons light mode */
    [data-theme="light"] .fi-blue {
      background: rgba(37, 99, 235, 0.08);
    }

    [data-theme="light"] .fi-green {
      background: rgba(16, 185, 129, 0.08);
    }

    [data-theme="light"] .fi-orange {
      background: rgba(249, 115, 22, 0.08);
    }

    [data-theme="light"] .fi-purple {
      background: rgba(139, 92, 246, 0.08);
    }

    [data-theme="light"] .fi-red {
      background: rgba(239, 68, 68, 0.08);
    }

    [data-theme="light"] .fi-teal {
      background: rgba(20, 184, 166, 0.08);
    }

    /* Navbar light mode */
    [data-theme="light"] .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28100,100,100,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Form elements light mode */
    [data-theme="light"] .contact-card {
      background: #ffffff;
    }

    [data-theme="light"] textarea,
    [data-theme="light"] input {
      background: #ffffff;
      border-color: rgba(0,0,0,0.08);
      color: #1a1a1a;
    }

    [data-theme="light"] textarea::placeholder,
    [data-theme="light"] input::placeholder {
      color: #999;
    }

    /* Form controls light mode */
    [data-theme="light"] .form-label-dark {
      color: #1a1a1a;
    }

    [data-theme="light"] .form-control-dark {
      background: #ffffff;
      border-color: rgba(0,0,0,0.1);
      color: #1a1a1a;
    }

    [data-theme="light"] .form-control-dark::placeholder {
      color: #999;
    }

    [data-theme="light"] .form-control-dark:focus {
      background: #ffffff;
      border-color: var(--accent2);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    }

    [data-theme="light"] select {
      background: #ffffff;
      border-color: rgba(0,0,0,0.1);
      color: #1a1a1a;
    }

    [data-theme="light"] select:focus {
      background: #ffffff;
      border-color: var(--accent2);
      outline: none;
    }

    /* Contact info light mode */
    [data-theme="light"] .contact-info-icon {
      background: rgba(37,99,235,0.08);
      border-color: rgba(37,99,235,0.15);
    }

    [data-theme="light"] .contact-info-label {
      color: #1a1a1a;
    }

    [data-theme="light"] .contact-info-val {
      color: #2563eb;
    }

    [data-theme="light"] .link-inherit {
      color: #2563eb;
      text-decoration: none;
    }

    [data-theme="light"] .link-inherit:hover {
      text-decoration: underline;
    }

    /* Footer light mode */
    [data-theme="light"] footer {
      background: #f8f9fa;
      border-top-color: rgba(0,0,0,0.08);
    }

    [data-theme="light"] .footer-brand {
      color: #1a1a1a;
    }

    [data-theme="light"] .footer-desc {
      color: #4b5563;
    }

    [data-theme="light"] .footer-head {
      color: #1a1a1a;
    }

    [data-theme="light"] .footer-link {
      color: #2563eb;
    }

    [data-theme="light"] .footer-link:hover {
      color: var(--accent2);
    }

    /* scroll reveal via CSS only */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        animation: revealUp 0.6s ease forwards;
      }
      .reveal-d1 { animation-delay: 0.1s; }
      .reveal-d2 { animation-delay: 0.2s; }
      .reveal-d3 { animation-delay: 0.3s; }
      .reveal-d4 { animation-delay: 0.4s; }
      .reveal-d5 { animation-delay: 0.5s; }
      .reveal-d6 { animation-delay: 0.6s; }
      @keyframes revealUp {
        to { opacity: 1; transform: translateY(0); }
      }
    }
