﻿:root {
      --bg: #f8f6fc;
      --white: #ffffff;
      --text: #1f2937;
      --muted: #64748b;
      --primary-dark: #2f184e;
      --primary: #5a2f8f;
      --primary-mid: #6f45ad;
      --primary-soft: #f4effc;
      --border: #ece5f8;
      --accent: #ff9f68;
      --accent-soft: #ffb58a;
      --section-dark: #43206d;
      --section-dark-2: #8b4fd8;
      --shadow: 0 20px 50px rgba(31, 41, 55, 0.12);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max-width: 1200px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--max-width), calc(100% - 48px)); margin: 0 auto; }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 28%),
        linear-gradient(135deg, var(--section-dark) 0%, var(--primary) 55%, var(--section-dark-2) 100%);
    }
    .hero::before, .hero::after {
      content: ""; position: absolute; border-radius: 999px; filter: blur(60px); opacity: 0.35; pointer-events: none;
    }
    .hero::before { width: 280px; height: 280px; background: var(--accent); top: 20px; right: -60px; }
    .hero::after { width: 260px; height: 260px; background: #c7a8ff; bottom: -30px; left: 28%; }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0 0;
      position: relative;
      z-index: 100;
    }
    .brand { display: flex; align-items: center; }
    .brand img { height: 115px; width: auto; display: block; }
    .partner { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 4px; }

    .topbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .topbar-center { display: flex; align-items: center; gap: 12px; }
    .btn-book {
      background: var(--accent);
      color: var(--primary-dark);
      border: none;
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      box-shadow: 0 16px 30px rgba(255, 159, 104, 0.28);
      transition: transform 0.2s;
    }
    .btn-book:hover { transform: translateY(-2px); }
    .btn-quote {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 2px solid rgba(255,255,255,0.5);
      padding: 12px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.2s;
      backdrop-filter: blur(4px);
    }
    .btn-quote:hover { background: rgba(255,255,255,0.25); border-color: #fff; transform: translateY(-2px); }

    /* Quote wizard modal */
    .qmodal-overlay {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65);
      z-index: 1000; align-items: center; justify-content: center; padding: 16px;
    }
    .qmodal-overlay.show { display: flex; }
    .qmodal {
      background: #fff; border-radius: 28px; width: 100%; max-width: 620px;
      max-height: 90vh; overflow-y: auto; box-shadow: 0 32px 80px rgba(47,24,78,0.28);
      position: relative;
    }
    .qmodal-header {
      background: linear-gradient(135deg,var(--primary-dark),var(--primary));
      padding: 24px 28px 20px; border-radius: 28px 28px 0 0; color: #fff;
      display: flex; justify-content: space-between; align-items: flex-start;
    }
    .qmodal-header h2 { margin: 0; font-size: 20px; }
    .qmodal-header p  { margin: 4px 0 0; font-size: 13px; opacity: .75; }
    .qmodal-close { background: rgba(255,255,255,.15); border: none; color: #fff; border-radius: 50%; width: 32px; height: 32px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .qmodal-close:hover { background: rgba(255,255,255,.3); }
    .qsteps { display: flex; gap: 0; padding: 0 28px; background: var(--primary-soft); }
    .qstep-tab {
      padding: 12px 16px; font-size: 13px; font-weight: 700; color: var(--muted);
      border-bottom: 3px solid transparent; cursor: default; display: flex; align-items: center; gap: 6px;
    }
    .qstep-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
    .qstep-tab.done   { color: var(--success); }
    .qstep-num { width: 20px; height: 20px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; flex-shrink: 0; }
    .qstep-tab.active .qstep-num { background: var(--primary); color: #fff; }
    .qstep-tab.done   .qstep-num { background: var(--success); color: #fff; }
    .qbody { padding: 24px 28px; }
    .qstep { display: none; }
    .qstep.active { display: block; }

    /* Step 1 â€” model cards */
    .model-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
    .model-card {
      border: 2px solid var(--border); border-radius: 18px; padding: 20px; cursor: pointer;
      transition: all .15s; text-align: left; background: #fff; width: 100%;
    }
    .model-card:hover { border-color: var(--primary); background: var(--primary-soft); }
    .model-card.selected { border-color: var(--primary); background: var(--primary-soft); box-shadow: 0 0 0 3px rgba(90,47,143,.15); }
    .model-card .mc-icon { font-size: 28px; margin-bottom: 8px; }
    .model-card .mc-name { font-weight: 900; font-size: 16px; color: var(--primary-dark); }
    .model-card .mc-sub  { font-size: 13px; color: var(--muted); margin-top: 4px; }
    .model-card .mc-tag  { display: inline-block; margin-top: 8px; padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; background: var(--accent); color: var(--primary-dark); }
    .duration-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
    .duration-row label { font-size: 13px; font-weight: 700; color: var(--text); }
    .duration-select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 10px; font: inherit; font-size: 14px; }

    /* Step 2 â€” quantities & live price */
    .qty-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
    .qty-card { background: var(--primary-soft); border-radius: 16px; padding: 16px; text-align: center; }
    .qty-card label { display: block; font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
    .qty-input { width: 100%; text-align: center; border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 6px; font-size: 20px; font-weight: 900; color: var(--primary-dark); font-family: inherit; }
    .qty-input:focus { outline: none; border-color: var(--primary); }
    .qty-card .tier-hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
    .price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .price-table th { font-size: 11px; font-weight: 800; color: var(--muted); text-transform: uppercase; padding: 6px 10px; text-align: left; border-bottom: 1px solid var(--border); }
    .price-table td { padding: 8px 10px; border-bottom: 1px solid var(--border); }
    .price-table tr:last-child td { border-bottom: none; }
    .price-total-row td { font-weight: 900; font-size: 15px; color: var(--primary-dark); background: var(--primary-soft); border-radius: 8px; }
    .price-note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

    /* Step 3 â€” details form */
    .qform-group { margin-bottom: 14px; }
    .qform-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
    .qform-group input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 12px; font: inherit; font-size: 14px; }
    .qform-group input:focus { outline: none; border-color: var(--primary); }
    .qform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Quote summary */
    .quote-summary { background: var(--primary-soft); border-radius: 16px; padding: 16px; margin-bottom: 16px; font-size: 14px; }
    .quote-summary .qs-row { display: flex; justify-content: space-between; padding: 4px 0; }
    .quote-summary .qs-total { font-weight: 900; font-size: 16px; color: var(--primary-dark); border-top: 1px solid var(--border); margin-top: 6px; padding-top: 8px; }

    /* Nav buttons */
    .qnav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 10px; }
    .qbtn-next { background: var(--accent); color: var(--primary-dark); border: none; padding: 12px 28px; border-radius: 12px; font: inherit; font-weight: 800; font-size: 15px; cursor: pointer; flex: 1; }
    .qbtn-next:hover { filter: brightness(1.05); }
    .qbtn-back { background: var(--primary-soft); color: var(--primary); border: none; padding: 12px 20px; border-radius: 12px; font: inherit; font-weight: 700; font-size: 14px; cursor: pointer; }
    .qstep-msg { font-size: 13px; padding: 8px 14px; border-radius: 8px; display: none; margin-top: 10px; }
    .qstep-msg.err  { background: #fee2e2; color: #991b1b; display: block; }
    .qstep-msg.ok   { background: #dcfce7; color: #166534; display: block; }

    /* Success screen */
    .qsuccess { text-align: center; padding: 20px 0; }
    .qsuccess .qs-icon { font-size: 56px; margin-bottom: 12px; }
    .qsuccess h3 { color: var(--primary-dark); margin: 0 0 8px; font-size: 22px; }
    .qsuccess p  { color: var(--muted); font-size: 14px; }
    .qsuccess .qs-price { background: var(--primary-soft); border-radius: 16px; padding: 16px 20px; margin: 16px 0; text-align: left; font-size: 14px; }

    .topbar-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 4px;
      cursor: pointer;
    }
    .lang-option {
      padding: 6px 8px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s;
    }
    .lang-option:hover { color: rgba(255,255,255,0.9); }
    .lang-option.active {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }
    .lang-option img {
      width: 18px;
      height: 13px;
      vertical-align: middle;
      border-radius: 2px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      padding: 70px 0 90px;
      position: relative;
      z-index: 1;
    }
    .eyebrow { display: inline-block; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); font-size: 14px; font-weight: 700; }
    h1, h2, h3, p { margin-top: 0; }
    h1 { font-size: 60px; line-height: 1.05; margin: 20px 0 0; font-weight: 900; max-width: 760px; }
    .lead { font-size: 20px; color: rgba(255,255,255,0.84); max-width: 720px; margin: 22px 0 0; }
    .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .btn { display: inline-block; padding: 14px 22px; border-radius: 18px; font-weight: 700; font-size: 15px; transition: transform 0.2s; cursor: pointer; }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--accent); color: var(--primary-dark); box-shadow: 0 16px 30px rgba(255, 159, 104, 0.28); border: none; }
    .btn-secondary { border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: var(--white); }

    .stats { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 760px; }
    .stat-card { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.1); border-radius: 22px; padding: 18px; backdrop-filter: blur(10px); }
    .stat-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
    .stat-card span { font-size: 13px; color: rgba(255,255,255,0.76); }

    .hero-panel { position: relative; background: rgba(255,255,255,0.96); color: var(--text); border-radius: 34px; padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
    .panel-block { background: var(--primary-soft); border-radius: 28px; padding: 24px; margin-bottom: 18px; }
    .panel-kicker, .section-kicker { text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; font-weight: 800; color: var(--primary-mid); }
    .panel-block h3, .section-title { color: var(--primary-dark); font-weight: 900; }
    .panel-block h3 { font-size: 32px; margin: 8px 0 12px; }
    .panel-block p, .feature-card p, .section-copy, .contact-copy, .about-copy, .step-card p, .mini-card p { color: var(--muted); }
    .mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .mini-card { border: 1px solid #e7ddf7; border-radius: 24px; padding: 20px; }

    section { padding: 88px 0; }
    .section-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
    .section-title { font-size: 50px; line-height: 1.08; margin: 14px 0 0; }
    .quote-card, .content-card, .contact-card, .steps-right { background: var(--white); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
    .quote-card strong { display: block; font-size: 38px; line-height: 1.15; margin-top: 10px; color: var(--primary-dark); }
    .solutions { background: var(--white); }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
    .feature-card { background: #fcfbfe; border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: 0 10px 24px rgba(31, 41, 55, 0.05); }
    .feature-icon { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--accent)); margin-bottom: 20px; }
    .feature-card h3 { margin-bottom: 10px; color: var(--primary-dark); font-size: 24px; font-weight: 900; }

    .steps-grid { display: grid; grid-template-columns: 0.95fr 2fr; gap: 24px; align-items: stretch; }
    .steps-left { background: linear-gradient(180deg, #45206f, #5f3194); color: var(--white); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow); }
    .step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .step-card { background: #f7f3fd; border-radius: 24px; padding: 24px; }
    .step-number { width: 44px; height: 44px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: var(--primary-dark); font-weight: 900; font-size: 18px; margin-bottom: 14px; }

    .dark-section { background: var(--primary-dark); color: var(--white); }
    .dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
    .dark-section .section-kicker { color: #cdb7f3; }
    .dark-copy { font-size: 19px; line-height: 1.8; color: rgba(255,255,255,0.78); margin-top: 18px; }
    .dark-panel { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(8px); }
    .dark-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .dark-panel-card { background: rgba(255,255,255,0.1); border-radius: 24px; padding: 20px; }
    .dark-panel-card .title { color: var(--accent-soft); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
    .dark-panel-card strong { font-size: 20px; line-height: 1.3; }

    .contact-card { padding: 36px; }
    .contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: center; }
    .form-box { background: var(--bg); border-radius: 28px; padding: 24px; }
    .form-box input, .form-box textarea { width: 100%; border: 1px solid #dfd3f4; background: var(--white); border-radius: 18px; padding: 14px 16px; font: inherit; margin-bottom: 14px; }
    .form-box textarea { min-height: 120px; resize: vertical; }
    .form-box button { width: 100%; border: 0; border-radius: 18px; padding: 14px 18px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); font: inherit; font-weight: 700; cursor: pointer; box-shadow: 0 16px 28px rgba(90, 47, 143, 0.22); }

    /* Popup Modal */
    .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; align-items: center; justify-content: center; }
    .modal-overlay.show { display: flex; }
    .modal { background: var(--white); border-radius: var(--radius-xl); padding: 32px; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
    .modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); }
    .modal h2 { color: var(--primary-dark); margin-bottom: 24px; }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: 14px; font-size: 15px; font-family: inherit; transition: border-color 0.3s; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .availability-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 12px; }
    .time-slot { padding: 10px; text-align: center; border: 2px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 13px; transition: all 0.2s; }
    .time-slot:hover { border-color: var(--primary); }
    .time-slot.selected { background: var(--primary); color: white; border-color: var(--primary); }
    .time-slot.unavailable { background: #f1f5f9; color: #94a3b8; cursor: not-allowed; }
    .calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
    .calendar-nav button { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text); padding: 8px; }
    .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
    .calendar-day-header { font-size: 12px; font-weight: 600; color: #666; padding: 8px; }
    .calendar-day { padding: 10px 4px; border-radius: 8px; cursor: pointer; font-size: 14px; transition: all 0.2s; }
    .calendar-day:hover:not(.disabled) { background: var(--primary-soft); }
    .calendar-day.selected { background: var(--primary); color: white; }
    .calendar-day.disabled { color: #ccc; cursor: not-allowed; }
    .calendar-sm .calendar-day-header { font-size: 10px; padding: 4px; }
    .calendar-sm .calendar-day { padding: 5px 2px; font-size: 12px; border-radius: 6px; }

    .message { padding: 16px; border-radius: 12px; margin-bottom: 16px; display: none; }
    .message.success { background: #dcfce7; color: #166534; display: block; }
    .message.error { background: #fee2e2; color: #991b1b; display: block; }

    .floating-contact {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--accent);
      color: var(--primary-dark);
      border-radius: 999px;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(255, 159, 104, 0.4);
      z-index: 999;
      font-weight: 700;
      font-size: 15px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .floating-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255, 159, 104, 0.5);
    }
    .floating-contact svg { flex-shrink: 0; }

    .contact-option {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
      width: 100%;
      text-align: left;
      margin-bottom: 12px;
      color: var(--text);
    }
    .contact-option:hover {
      border-color: var(--primary);
      background: var(--primary-soft);
    }
    .contact-option.teams { color: #6264A7; }
    .contact-option.teams:hover { background: #f5f5ff; }
    .contact-option.book { color: var(--accent); }
    .contact-option.book:hover { background: #fff8f4; }
    .contact-option.email { color: var(--primary); }
    .contact-option strong { display: block; font-size: 16px; margin-bottom: 2px; }
    .contact-option span { font-size: 13px; color: var(--muted); }

    /* Cookie Consent */
    .cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: 20px 24px; z-index: 9999; font-size: 14px; transform: translateY(100%); transition: transform 0.4s ease; }
    .cookie-consent.show { transform: translateY(0); }
    .cookie-consent-content { max-width: 1200px; margin: 0 auto; }
    .cookie-consent-text { margin-bottom: 16px; }
    .cookie-consent-text p { margin-bottom: 8px; color: var(--text); }
    .cookie-consent-text a { color: var(--primary); }
    .cookie-consent-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
    .cookie-consent-actions .btn { padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; display: inline-block; }
    .btn-cookie-primary { background: var(--accent); color: var(--primary-dark); }
    .btn-cookie-primary:hover { background: #ffb088; }
    .btn-cookie-secondary { background: var(--primary); color: var(--white); }
    .btn-cookie-secondary:hover { background: var(--primary-mid); }
    .btn-cookie-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
    .btn-cookie-outline:hover { background: var(--bg); }
    
    /* Cookie Preferences Panel */
    .cookie-prefs { display: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
    .cookie-prefs.show { display: block; }
    .cookie-pref-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .cookie-pref-item:last-child { border-bottom: none; }
    .cookie-pref-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; color: var(--text); }
    .cookie-pref-info p { font-size: 12px; color: var(--muted); margin: 0; }
    .cookie-pref-info .badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; margin-left: 8px; }
    .cookie-pref-info .badge-always { background: #e0e7ff; color: #4338ca; }
    .cookie-pref-info .badge-optional { background: var(--primary-soft); color: var(--primary); }
    
    /* Toggle Switch */
    .toggle { position: relative; width: 44px; height: 24px; }
    .toggle input { opacity: 0; width: 0; height: 0; }
    .toggle-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #cbd5e1; border-radius: 24px; transition: 0.3s; }
    .toggle-slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
    .toggle input:checked + .toggle-slider { background: var(--primary); }
    .toggle input:checked + .toggle-slider:before { transform: translateX(20px); }
    .toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

    footer { padding: 16px 0; color: var(--muted); font-size: 12px; }
    footer .container { display: flex; justify-content: space-between; align-items: center; }
    footer .footer-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    footer .footer-brand a { color: var(--primary); font-weight: 600; }
    footer .footer-rights { color: var(--muted); }

    /* Main Navigation Bar */
    .main-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border-radius: 0 0 20px 20px;
      margin: 0 20px;
      width: calc(100% - 40px);
    }
    .main-nav .container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }
    .main-nav a {
      display: inline-flex;
      align-items: center;
      padding: 16px 28px;
      color: var(--text);
      font-weight: 600;
      font-size: 17px;
      text-decoration: none;
      transition: all 0.2s;
      border-bottom: 3px solid transparent;
      white-space: nowrap;
      border-radius: 12px;
    }
    .main-nav a:hover {
      color: var(--primary);
      background: var(--primary-soft);
    }
    .main-nav a.active {
      color: var(--primary);
      background: var(--primary-soft);
      border-bottom: none;
    }
    .main-nav a.nav-cta {
      background: var(--accent);
      color: var(--primary-dark);
      margin-left: 8px;
      border-radius: 12px;
      padding: 12px 24px;
      border-bottom: none;
      font-weight: 700;
    }
    .main-nav a.nav-cta:hover {
      background: var(--accent-soft);
      color: var(--primary-dark);
    }

    @media (max-width: 1100px) {
      .hero-grid, .section-grid, .steps-grid, .dark-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
      .features-grid, .step-cards, .stats, .mini-grid, .dark-panel-grid { grid-template-columns: repeat(2, 1fr); }
      h1 { font-size: 52px; }
      .section-title { font-size: 42px; }
    }
    @media (max-width: 700px) {
      .topbar { flex-wrap: wrap; gap: 16px; }
      .topbar-center { position: static; transform: none; width: 100%; text-align: center; order: -1; }
      h1 { font-size: 40px; }
      .section-title { font-size: 34px; }
      .features-grid, .step-cards, .stats, .mini-grid, .dark-panel-grid { grid-template-columns: 1fr; }
      section { padding: 70px 0; }
      .main-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .main-nav .container { justify-content: flex-start; padding: 0 16px; }
      .main-nav a { padding: 14px 16px; font-size: 13px; }
      .main-nav a.nav-cta { display: none; }
    }
    
    /* Page-specific styles for inner pages */
    .pain-section { background: var(--white); }
    .pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
    .pain-card { background: var(--bg); padding: 32px; border-radius: var(--radius-lg); border-left: 4px solid var(--accent); }
    .pain-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
    .pain-card p { color: var(--muted); font-size: 15px; }
    
    .erp-section { background: var(--primary-dark); color: white; }
    .erp-section .section-kicker { color: var(--accent); }
    .erp-section .section-title { color: white; }
    .erp-section .section-copy { color: rgba(255,255,255,0.8); }
    .erp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
    .erp-card { background: rgba(255,255,255,0.08); padding: 28px; border-radius: var(--radius-lg); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); }
    .erp-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--accent); }
    .erp-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
    .erp-card .status { display: inline-block; background: #22c55e; color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
    
    .who-section { background: var(--white); }
    .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
    .who-card { text-align: center; padding: 40px 32px; background: var(--bg); border-radius: var(--radius-xl); transition: transform 0.3s, box-shadow 0.3s; }
    .who-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .who-card .icon { width: 80px; height: 80px; background: var(--primary-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
    .who-card h3 { font-size: 24px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
    .who-card .users { font-size: 14px; color: var(--primary); font-weight: 700; margin-bottom: 16px; }
    .who-card p { font-size: 15px; color: var(--muted); }
    
    .benefits-section { background: var(--bg); }
    .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 50px; }
    .benefit-card { display: flex; gap: 20px; background: var(--white); padding: 28px; border-radius: var(--radius-lg); }
    .benefit-card .num { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; flex-shrink: 0; }
    .benefit-card h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
    .benefit-card p { font-size: 14px; color: var(--muted); }
    
    .faq-section { background: var(--white); }
    .faq-list { margin-top: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
    .faq-item h3 { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
    .faq-item p { color: var(--muted); font-size: 15px; line-height: 1.7; }
    
    .cta-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: white; text-align: center; padding: 100px 0; }
    .cta-section h2 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
    .cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
    
    .features-section { background: var(--white); }
    .overview-section { background: var(--bg); }
    .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
    .overview-content h3 { font-size: 28px; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; }
    .overview-content p { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
    .overview-list { list-style: none; margin-top: 24px; }
    .overview-list li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
    .overview-list li::before { content: "✓"; color: #22c55e; font-weight: 700; font-size: 18px; }
    .overview-image { background: var(--primary-soft); border-radius: var(--radius-xl); padding: 40px; text-align: center; }
    .overview-image .placeholder { height: 300px; display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: 0.5; }
    
    .about-section { background: var(--white); }
    .values-section { background: var(--bg); padding: 80px 0; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
    .value-card { background: var(--white); padding: 36px; border-radius: var(--radius-xl); text-align: center; }
    .value-card .icon { width: 72px; height: 72px; background: var(--primary-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
    .value-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
    .value-card p { font-size: 15px; color: var(--muted); }
    
    .partner-section { background: var(--white); padding: 80px 0; text-align: center; }
    .partner-badge { display: inline-block; background: var(--primary-dark); color: white; padding: 20px 40px; border-radius: var(--radius-lg); }
    .partner-badge .logo { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
    .partner-badge p { font-size: 14px; opacity: 0.8; }
    
    .contact-info { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
    .contact-item { text-align: center; }
    .contact-item .icon { font-size: 32px; margin-bottom: 12px; }
    .contact-item h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
    .contact-item p { font-size: 14px; color: var(--muted); }
    .contact-item a { color: var(--primary); }
    
    .coming-soon { background: var(--white); padding: 80px 0; text-align: center; }
    .coming-soon .icon { font-size: 64px; margin-bottom: 24px; }
    .coming-soon h2 { font-size: 32px; font-weight: 900; color: var(--primary-dark); margin-bottom: 16px; }
    .coming-soon p { font-size: 18px; color: var(--muted); max-width: 500px; margin: 0 auto 30px; }
    
    .notify-section { background: var(--primary-dark); padding: 80px 0; color: white; text-align: center; }
    .notify-section h3 { font-size: 24px; font-weight: 900; margin-bottom: 16px; }
    .notify-section p { opacity: 0.8; margin-bottom: 30px; }
    .notify-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
    .notify-form input { flex: 1; padding: 14px 20px; border: none; border-radius: 12px; font-size: 16px; }
    .notify-form button { white-space: nowrap; }
    .notify-message { margin-top: 20px; }
    
    .intro-section { background: var(--white); padding: 80px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .intro-content p { font-size: 17px; color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
    .intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .intro-stats .stat-card { background: var(--bg); padding: 24px; border-radius: var(--radius-lg); text-align: center; }
    .intro-stats .stat-card .number { font-size: 36px; font-weight: 900; color: var(--primary-dark); margin-bottom: 8px; }
    .intro-stats .stat-card .label { font-size: 14px; color: var(--muted); }
   
