     h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
      font-family: "Alegreya", serif;
      font-optical-sizing: auto;
      font-weight: 700;
      color: #000;
    }
    body h1, body h2, body h3, body h4, body h5, body h6 {
      color: #eee;
    }

    :root {
      --primary: #fa4d09;
      --primary-light: #ff7a4a;
      --primary-pale: #ffe8de;
      --dark: #000;
      --dark-2: #111;
      --dark-3: #222;
      --mid: #444;
      --text: #eee;
      --text-muted: #aaa;
      --accent: #fa4d09;
      --accent-2: #3A7BD5;
      --white: #fafafa;
      --radius: 4px;
      --shadow: 0 4px 30px rgba(0,0,0,0.4);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── LIGHT SECTION THEME ── */
    section.section-light,
    footer.section-light {
      background: #fff;
      color: #444;
    }
    section.section-light h1,
    section.section-light h2,
    section.section-light h3,
    section.section-light h4,
    section.section-light h5,
    section.section-light h6,
    footer.section-light h1,
    footer.section-light h2,
    footer.section-light h3,
    footer.section-light h4,
    footer.section-light h5,
    footer.section-light h6 {
      color: #000;
    }
    section.section-light .section-h2,
    footer.section-light .section-h2 {
      color: #000;
    }
    section.section-light .section-lead,
    footer.section-light .section-lead {
      color: #666;
    }

    /* Race cards on light */
    section.section-light .race-card {
      background: #fff;
      border: 1px solid #8c9cb4;
    }
    section.section-light .race-card:hover {
      border-color: rgba(250,77,9,0.3);
    }
    section.section-light .race-name {
      color: #000;
    }
    section.section-light .race-desc {
      color: #666;
    }

    /* Process on light */
    section.section-light .process-step h3 {
      color: #000;
    }
    section.section-light .process-step p {
      color: #666;
    }

    /* SEO on light */
    section.section-light .seo-inner h2,
    section.section-light .seo-inner h3 {
      color: #000;
    }
    section.section-light .seo-inner p {
      color: #666;
    }

    /* ── ANNOUNCEMENT BAR ── */
    .announce-bar {
      background: var(--primary);
      color: var(--dark);
      text-align: center;
      font-weight: 600;
      padding: 8px 16px;
    }
    .announce-bar a { color: var(--dark); text-decoration: underline; }

    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: var(--radius);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--primary);
      color: var(--dark);
      border: none;
    }
    .btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(250,77,9,0.35); }
    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
    .btn-large { padding: 16px 36px; }
    .btn-xl { padding: 20px 48px; border-radius: 2px; }
    .btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
    .btn-ghost:hover { background: var(--primary); color: var(--dark); }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      position: relative;
      min-height: 88vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      overflow: hidden;
      padding: 60px 40px 60px 80px;
      gap: 40px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(250,77,9,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(250,77,9,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(250,77,9,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250,77,9,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(250,77,9,0.12);
      border: 1px solid rgba(250,77,9,0.3);
      color: var(--primary-light);
      padding: 6px 14px;
      border-radius: 2px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    h1.hero-h1 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    h1.hero-h1 em { font-style: normal; color: var(--primary-light); }
    .hero-sub {
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 32px;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .trust-item .icon {
      width: 28px;
      height: 28px;
      background: rgba(250,77,9,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-item .icon i { color: var(--primary-light); }
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .medal-showcase {
      position: relative;
      width: 100%;
      max-width: 520px;
    }
    .medal-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(250,77,9,0.15);
    }
    .medal-badge-float {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--dark-2);
      border: 1px solid rgba(250,77,9,0.3);
      border-radius: 8px;
      padding: 14px 20px;
      box-shadow: var(--shadow);
    }
    .medal-badge-float .num {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--primary-light);
    }
    .medal-badge-float .label {
      color: var(--text-muted);
      text-transform: uppercase;
    }
    .medal-badge-float2 {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--primary);
      color: var(--dark);
      border-radius: 8px;
      padding: 10px 16px;
      font-weight: 700;
      text-align: center;
      box-shadow: 0 8px 20px rgba(250,77,9,0.4);
    }

    /* ── SECTION COMMON ── */
    section { padding: 80px 40px; }
    .page-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
    .section-tag {
      display: inline-block;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }
    h2.section-h2 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    h2.section-h2 em { font-style: normal; color: var(--primary-light); }
    .usp-section h2.section-h2,
    .quote-section h2.section-h2 {
      color: #000;
    }
    .section-lead {
      color: var(--text-muted);
      max-width: 620px;
      margin-bottom: 48px;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--dark-2);
      border-top: 1px solid rgba(250,77,9,0.15);
      border-bottom: 1px solid rgba(250,77,9,0.15);
      padding: 36px 40px;
    }
    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(250,77,9,0.12);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--primary-light);
    }
    .stat-label {
      color: var(--text-muted);
      font-weight: 500;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ── USP CARDS ── */
    .usp-section { background: transparent; }
    .usp-grid { row-gap: 24px; }
    .usp-card {
      background: var(--dark-2);
      padding: 32px 28px;
      transition: background 0.2s;
      height: 100%;
    }
    .usp-card:hover { background: var(--dark-3); }
    .usp-icon {
      width: 48px;
      height: 48px;
      background: rgba(250,77,9,0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .usp-icon i { color: var(--primary-light); }
    .usp-card h3 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .usp-card p { color: var(--text-muted); }

    /* ── PRODUCT OPTIONS ── */
    .options-section { background: var(--dark); }
    .options-two-col {
      align-items: start;
    }
    .option-group { margin-bottom: 36px; }
    .option-group-title {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--primary);
      border-bottom: 1px solid rgba(250,77,9,0.2);
      padding-bottom: 8px;
      margin-bottom: 16px;
    }
    .option-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      background: var(--dark-3);
      border: 1px solid rgba(250,77,9,0.15);
      color: var(--text-muted);
      padding: 5px 12px;
      border-radius: 2px;
      font-weight: 500;
    }
    .options-img {
      position: sticky;
      top: 100px;
    }
    .options-img img {
      width: 100%;
      border-radius: 8px;
      box-shadow: var(--shadow);
      margin-bottom: 16px;
    }
    .options-img img + img { margin-top: 16px; }

    /* ── RACE TYPE CARDS ── */
    .race-grid { row-gap: 24px; }
    .race-card {
      background: var(--dark-2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 28px 24px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .race-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }
    .race-card:hover { border-color: rgba(250,77,9,0.25); transform: translateY(-2px); }
    .race-card:hover::before { transform: scaleX(1); }
    .race-dist {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--primary-light);
      margin-bottom: 4px;
    }
    .race-name {
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }
    .race-desc { color: var(--text-muted); }

    /* ── PROCESS ── */
    .process-section { background: var(--dark-3); }
    .process-steps {
      position: relative;
      margin-top: 16px;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
    }
    .process-steps > [class*="col-"] {
      position: relative;
    }
    .process-step {
      text-align: center;
      padding: 0 20px;
      position: relative;
    }
    .step-num {
      width: 56px;
      height: 56px;
      background: var(--primary);
      color: var(--dark);
      font-family: 'Alegreya', serif;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }
    .process-step h3 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .process-step p { color: var(--text-muted); }

    /* ── QUOTE FORM ── */
    .quote-section {
      background: transparent;
      border-top: none;
      border-bottom: none;
    }
    .quote-layout {
      align-items: start;
    }
    .quote-left h2 { margin-bottom: 16px; }
    .quote-list { list-style: none; margin: 28px 0; }
    .quote-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      color: var(--text-muted);
    }
    .quote-list li .check {
      width: 20px;
      height: 20px;
      background: rgba(250,77,9,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .quote-list li strong { color: #000; }
    .quote-section .quote-list li { color: #666; }
    .quote-section .quote-list li strong { color: #000; }
    .form-card {
      background: var(--dark);
      border: 1px solid rgba(250,77,9,0.2);
      border-radius: 8px;
      padding: 36px;
    }
    .form-title {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 24px;
    }

    .form-group { margin-bottom: 12px; }
    .form-group label {
      display: block;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
      padding: 13px 14px;
      border-radius: var(--radius);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group select {
      width: 100%;
      background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
      padding: 0 14px;
      height: 48px;
      border-radius: var(--radius);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--primary); }
    .form-group select option { background: var(--dark-3); color: #eee; }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .form-submit { width: 100%; margin-top: 4px; justify-content: center; }
    .form-card .iti__country-list { color: #333; background: #fff; }
    .form-card .iti__country { color: #333; }
    .form-card .iti__country-name { color: #333; }
    .form-card .iti__dial-code { color: #666; }
    .form-privacy {
      text-align: center;
      color: var(--text-muted);
      margin-top: 10px;
    }
    .form-privacy a { color: var(--primary); text-decoration: none; }

    /* ── FAQ ── */
    .faq-section { background: var(--dark); }
    .faq-grid { }
    .faq-item {
      background: var(--dark-2);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 12px;
    }
    .faq-q {
      padding: 20px 24px;
      font-weight: 600;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .faq-q::after {
      content: '+';
      color: var(--primary);
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      padding: 0 24px;
      color: var(--text-muted);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

    /* ── WHY SECTION ── */
    .why-section { background: var(--dark-2); }
    .why-two-col {
      align-items: center;
    }
    .why-list { list-style: none; margin-top: 28px; }
    .why-list-grid {
      margin-top: 48px;
    }
    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .why-list li:last-child { border-bottom: none; }
    .why-icon {
      width: 40px;
      height: 40px;
      background: rgba(250,77,9,0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .why-icon i { color: var(--primary-light); }
    .why-list li .why-text strong { display: block; color: var(--white); margin-bottom: 3px; }
    .why-list li .why-text span { color: var(--text-muted); }
    .why-img img {
      width: 100%;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    /* ── FINAL CTA ── */
    .final-cta {
      text-align: center;
      background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(250,77,9,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      max-width: 700px;
      margin: 0 auto 16px;
    }
    .final-cta h2 em { font-style: normal; color: var(--primary-light); }
    .final-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 36px; }
    .final-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; }
    .final-contact {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 40px;
    }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .contact-link:hover { color: var(--primary); }
    .contact-link .icon i { color: inherit; }

    /* ── SEO TEXT ── */
    .seo-section {
      background: var(--dark-3);
      padding: 64px 40px;
    }
    .seo-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .seo-inner h2 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    .seo-inner h3 {
      font-family: 'Alegreya', serif;
      font-weight: 700;
      color: var(--text);
      margin: 28px 0 10px;
    }
    .seo-inner p { color: var(--text-muted); margin-bottom: 14px; }
    .seo-inner a { color: var(--primary); text-decoration: none; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(250,77,9,0.12);
      padding: 60px 40px 30px;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p { color: var(--text-muted); margin-top: 12px; }
    .footer-col h4 {
      font-weight: 700;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { color: var(--text-muted); }
    .social-links { display: flex; gap: 12px; }
    .social-links a {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.04);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.2s;
    }
    .social-links a:hover { background: rgba(250,77,9,0.2); }
    .social-links a i { color: var(--text-muted); }
    .social-links a:hover i { color: var(--primary); }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      background: #25D366;
      color: #fff;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform 0.2s;
    }
    .wa-float:hover { transform: scale(1.1); }

    /* ── RIBBON / BREADCRUMB ── */
    .breadcrumb {
      padding: 14px 80px;
      background: var(--dark-2);
      color: var(--text-muted);
    }
    .breadcrumb a { color: var(--text-muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb span { color: var(--primary); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .stat-item { margin-bottom: 16px; }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-ctas .btn-secondary { display: none; }
      .hero { grid-template-columns: 1fr; padding: 40px 20px 60px; min-height: auto; }
      .hero-visual { order: -1; }
      .medal-badge-float, .medal-badge-float2 { display: none; }
      section { padding: 60px 20px; }
      .options-img { position: static; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .breadcrumb { padding: 12px 20px; }
      footer { padding: 40px 20px 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 576px) {
      .process-steps { margin-top: 0; }
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      animation: fadeUp 0.6s ease both;
    }
    .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
    .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
    .hero-visual { animation: fadeUp 0.7s 0.3s ease both; }