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

    :root {
      --primary: #c53030;
      --primary-light: #e05252;
      --bg: #000;
      --bg-alt: #0a0a0a;
      --bg-zinc: #0d0d0d;
      --text: #f5f5f5;
      --text-muted: #9ca3af;
      --text-faint: #6b7280;
      --border: rgba(255,255,255,0.08);
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: 'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      font-weight: 300;
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #000; }
    ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

    /* ─── NAVBAR ─────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(0,0,0,0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo img { height: 72px; width: auto; display: block; }
    .nav-links {
      display: flex; align-items: center; gap: 1.5rem;
    }
    .nav-links a {
      color: #d1d5db; text-decoration: none;
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--primary); }
    .nav-btns { display: flex; gap: 0.75rem; align-items: center; }
    .btn-outline-red {
      border: 1px solid var(--primary); color: var(--primary);
      background: transparent; padding: 0.45rem 1.2rem;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-family: var(--font-sans); cursor: pointer;
      text-decoration: none; transition: all 0.2s; display: inline-block;
    }
    .btn-outline-red:hover { background: var(--primary); color: #fff; }
    .btn-red {
      background: var(--primary); color: #fff;
      border: none; padding: 0.45rem 1.2rem;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
      font-family: var(--font-sans); cursor: pointer;
      text-decoration: none; transition: all 0.2s; display: inline-block;
    }
    .btn-red:hover { background: var(--primary-light); }

    /* Mobile menu */
    .hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
    .hamburger svg { width: 24px; height: 24px; }
    .mobile-menu {
      display: none; flex-direction: column; align-items: center; gap: 1.5rem;
      padding: 2rem 1.5rem; border-top: 1px solid var(--border);
      background: #000;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff; text-decoration: none;
      font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu-btns { display: flex; flex-direction: column; gap: 1rem; width: 100%; }

    @media (max-width: 768px) {
      .nav-links, .nav-btns { display: none; }
      .hamburger { display: block; }
    }

    /* ─── PAGES ─────────────────────────────── */
    .page { display: none; padding-top: 72px; }
    /*.page { display: none; padding-top: 96px; }*/
    .page.active { display: block; }

    /* ─── SECTION HELPERS ─────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    .section-alt { background: var(--bg-zinc); }
    .page-header {
      padding: 4rem 0 2.5rem;
      background: var(--bg-zinc);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hero p.eyebrow,
    .eyebrow {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--primary);
      margin-bottom: 1rem; font-weight: 600;
    }
    .serif { font-family: var(--font-serif); }
    h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; }
    h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
    h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }
    .rule { width: 3rem; height: 1px; background: var(--primary); margin: 1.5rem 0; }
    .rule-center { margin: 1.5rem auto; }
    .text-muted { color: var(--text-muted); }
    .text-primary { color: var(--primary); }
    .text-center { text-align: center; }

    /* Fade-in animation */
    .fade-in {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }
    .fade-in-x {
      opacity: 0; transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in-x.visible { opacity: 1; transform: none; }

    /* ─── HOME: HERO ─────────────────────────── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, #000 100%);
    }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 56rem; padding: 0 1.5rem; margin: 0 auto;
      width: 100%;
    }
    .hero h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 1.1; margin-bottom: 1.5rem;
    }
    .hero h1 .accent { color: var(--primary); font-style: italic; font-weight: 300; }
    .hero p { font-size: 1.1rem; color: #d1d5db; margin-bottom: 2.5rem; max-width: 40rem; }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 2rem;
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: #9ca3af; font-weight: 600; margin-top: 2rem;
    }
    .hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
    .hero-meta .dot { width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }

    /* App Download Buttons */
    .app-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .app-btn {
      display: flex;
        align-items: center;
        gap: 0.75rem;
        border: 1px solid #fff;
        border-radius: 0.5rem;
        padding: 0 1.25rem;
        height: 3.5rem;
        color: #fff;
        text-decoration: none;
        transition: background 0.2s;
        min-width: 190px;
        justify-content: center;
    }
    .app-btn:hover { background: rgba(255,255,255,0.07); }
    .app-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
    .app-btn-text .sub {
      font-size: 0.55rem; text-transform: uppercase;
      letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
      display: block; line-height: 1; margin-bottom: 3px;
    }
    .app-btn-text .main { font-size: 0.85rem; font-weight: 600; line-height: 1; }

    /* ─── HOME: ABOUT STRIP ─────────────────── */
    .stats-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .stat-box {
      background: #000; border: 1px solid rgba(255,255,255,0.1);
      padding: 2.5rem; text-align: center;
    }
    .stat-value { font-family: var(--font-serif); font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
    .stat-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
    /*.stat-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: #9ca3af; }*/

    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    @media (max-width: 768px) {
      .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ─── CTA BANNER ─────────────────────────── */
    .cta-section {
      padding: 6rem 0; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #000 0%, #1a0a0a 50%, rgba(127,20,20,0.15) 100%);
    }

    /* ─── BENEFITS ─────────────────────────── */
    .cards-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    @media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }
    .card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem; transition: border-color 0.3s;
    }
    .card:hover { border-color: rgba(197,48,48,0.4); }
    .card-icon { color: var(--primary); margin-bottom: 1.5rem; }
    .card-icon svg { width: 28px; height: 28px; }
    .card h3 { margin-bottom: 0.75rem; }
    .card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

    /* ─── FAQ ACCORDION ─────────────────────── */
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .faq-trigger {
      width: 100%; background: none; border: none; color: #fff;
      font-family: var(--font-serif); font-size: 1.1rem;
      text-align: left; padding: 1.5rem 0;
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; transition: color 0.2s;
    }
    .faq-trigger:hover, .faq-trigger.open { color: var(--primary); }
    .faq-trigger svg { flex-shrink: 0; transition: transform 0.3s; }
    .faq-trigger.open svg { transform: rotate(180deg); }
    .faq-body {
      overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s;
      font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; padding: 0;
    }
    .faq-body.open { max-height: 300px; padding-bottom: 1.5rem; }

    /* ─── MEMBERSHIP ─────────────────────────── */
    .how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; position: relative; }
    .how-steps::before {
      content: ''; position: absolute; top: 3rem; left: 15%; right: 15%;
      height: 1px; background: rgba(255,255,255,0.1); z-index: 0;
    }
    .step { text-align: center; position: relative; z-index: 1; }
    .step-circle {
      width: 6rem; height: 6rem; border-radius: 50%;
      border: 1px solid var(--primary); background: #000;
      display: flex; align-items: center; justify-center;
      margin: 0 auto 2rem;
      box-shadow: 0 0 30px rgba(185,28,28,0.15);
      display: flex; align-items: center; justify-content: center;
    }
    .step-circle span { font-family: var(--font-serif); font-size: 2rem; color: var(--primary); font-style: italic; }
    .step h3 { margin-bottom: 0.75rem; }
    .step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
    @media (max-width: 700px) {
      .how-steps { grid-template-columns: 1fr; gap: 2rem; }
      .how-steps::before { display: none; }
    }

    /* Comparison table */
    .compare-table { max-width: 720px; margin: 0 auto; }
    .compare-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 2px; }
    .compare-head-cell {
      text-align: center; padding: 1rem 0.5rem;
      font-family: var(--font-serif); font-size: 0.8rem;
      text-transform: uppercase; letter-spacing: 0.15em;
    }
    .compare-head-cell.gold-head {
      background: rgba(197,48,48,0.1); border: 1px solid var(--primary);
      border-bottom: none; color: var(--primary); position: relative;
    }
    .popular-badge {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%) translateY(-100%);
      background: var(--primary); color: #fff;
      font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 3px 10px; font-weight: 700;
    }
    .compare-head-cell.other-head {
      background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
      border-bottom: none; color: #d1d5db;
    }
    .compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
    .compare-row:nth-child(odd) { background: rgba(0,0,0,0.4); }
    .compare-row:nth-child(even) { background: rgba(0,0,0,0.2); }
    .compare-cell {
      padding: 0.75rem 1rem; font-size: 0.875rem;
      border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center;
    }
    .compare-cell:first-child { color: #d1d5db; }
    .compare-cell:not(:first-child) { justify-content: center; border-left: none; border-right: none; }
    .compare-cell.gold-col { background: rgba(197,48,48,0.05); border-color: rgba(197,48,48,0.3); }
    .check { color: #22c55e; font-size: 1rem; font-weight: 700; }
    .cross { color: #ef4444; font-size: 1rem; font-weight: 700; }
    .compare-price { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
    .price-cell {
      padding: 1.25rem 1rem; text-align: center;
      border: 1px solid rgba(255,255,255,0.1); border-top: none;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .price-cell.gold-price { background: rgba(197,48,48,0.1); border-color: var(--primary); }
    .price-cell .label-cell { color: #fff; font-size: 0.875rem; font-weight: 600; }
    .price-amt { font-family: var(--font-serif); font-size: 1.25rem; }
    .price-per { font-size: 0.7rem; color: #6b7280; }

    /* ─── PARTNERS GRID ─────────────────────── */
    .experience-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    @media (max-width: 900px) { .experience-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 550px) { .experience-grid { grid-template-columns: 1fr; } }
    .exp-card {
      position: relative; overflow: hidden;
      aspect-ratio: 4/3; cursor: pointer;
    }
    .exp-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s ease, opacity 0.4s;
      opacity: 0.8;
    }
    .exp-card:hover img { transform: scale(1.05); opacity: 1; }
    .exp-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    }
    .exp-info {
      position: absolute; inset-x: 0; bottom: 0; padding: 2rem;
    }
    .exp-rule {
      width: 2rem; height: 1px; background: var(--primary);
      margin-bottom: 1rem; transition: width 0.3s;
    }
    .exp-card:hover .exp-rule { width: 4rem; }
    .exp-info h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
    .exp-desc {
      font-size: 0.875rem; color: #d1d5db;
      opacity: 0; transform: translateY(1rem);
      transition: opacity 0.3s, transform 0.3s;
    }
    .exp-card:hover .exp-desc { opacity: 1; transform: none; }

    /* ─── ABOUT ─────────────────────────────── */
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    @media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
    .value-box { border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; }
    .value-box .rule { margin-bottom: 1.5rem; }

    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
      padding: 2.5rem; text-align: center; transition: border-color 0.3s;
    }
    .testimonial:hover { border-color: rgba(197,48,48,0.3); }
    .stars { display: flex; justify-content: center; gap: 3px; color: var(--primary); margin-bottom: 1.5rem; }
    .stars svg { width: 14px; height: 14px; fill: currentColor; }
    .testimonial blockquote { font-size: 0.875rem; color: #d1d5db; font-style: italic; line-height: 1.8; margin-bottom: 2rem; }
    .t-divider { width: 2rem; height: 1px; background: rgba(255,255,255,0.2); margin: 0 auto 1rem; }
    .t-name { font-family: var(--font-serif); letter-spacing: 0.05em; }
    .t-location { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b7280; margin-top: 4px; }

    /* ─── CONTACT ─────────────────────────────── */
    .contact-info-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
    .contact-icon { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
    .contact-icon svg { width: 20px; height: 20px; }
    .contact-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b7280; margin-bottom: 4px; }
    .contact-value { color: #fff; font-weight: 300; text-decoration: none; transition: color 0.2s; }
    .contact-value:hover { color: var(--primary); }
    .contact-box { border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; margin-bottom: 1.5rem; }

    /* ─── PARTNER LOGIN ─────────────────────── */
    .login-wrap {
      max-width: 420px; margin: 0 auto;
      border: 1px solid rgba(255,255,255,0.1); padding: 3rem;
    }
    .form-field { margin-bottom: 1.5rem; }
    .form-label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #9ca3af; margin-bottom: 0.5rem; }
    .form-input {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15); color: #fff;
      padding: 0.75rem 1rem; font-family: var(--font-sans); font-size: 0.875rem;
      outline: none; transition: border-color 0.2s;
    }
    .form-input:focus { border-color: var(--primary); }
    .form-input::placeholder { color: #4b5563; }
    .btn-red-full {
      width: 100%; background: var(--primary); color: #fff; border: none;
      padding: 0.85rem; font-family: var(--font-sans);
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s; font-weight: 600;
    }
    .btn-red-full:hover { background: var(--primary-light); }

    /* ─── TERMS / PARTNER TERMS ─────────────── */
    .prose { max-width: 800px; }
    .prose h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
    .prose h3 { margin: 2rem 0 0.75rem; }
    .prose p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.925rem; line-height: 1.8; }
    .prose ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; font-size: 0.925rem; line-height: 1.8; }
    .prose li { margin-bottom: 0.5rem; }

    /* ─── FOOTER ─────────────────────────────── */
    footer {
      background: #000; border-top: 1px solid rgba(255,255,255,0.1);
      padding: 5rem 0 2.5rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
      margin-bottom: 4rem;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    .footer-logo img { height: 56px; width: auto; margin-bottom: 1.5rem; }
    .footer-desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 2rem; }
    .social-links { display: flex; gap: 0.75rem; }
    .social-link {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #9ca3af; text-decoration: none; transition: all 0.2s;
    }
    .social-link:hover { color: var(--primary); border-color: var(--primary); }
    .social-link svg { width: 18px; height: 18px; }
    .footer-col h4 {
      font-family: var(--font-serif); font-size: 0.875rem;
      text-transform: uppercase; letter-spacing: 0.15em;
      margin-bottom: 1.5rem; color: #fff;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 1rem; }
    .footer-col a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--primary); }
    .footer-col a.accent-link { color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem;
      display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center;
    }
    .footer-contacts { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; font-size: 0.875rem; color: #9ca3af; }
    .footer-contacts a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
    .footer-contacts a:hover { color: var(--primary); }
    .footer-contacts span { display: flex; align-items: center; gap: 0.5rem; }
    .footer-contacts svg { color: var(--primary); width: 16px; height: 16px; }
    .footer-copy { font-size: 0.8rem; color: #4b5563; }

    /* ─── UTILITY ─────────────────────────────── */
    .mt-2 { margin-top: 0.5rem; }
    .mt-4 { margin-top: 1rem; }
    .mt-6 { margin-top: 1.5rem; }
    .mt-8 { margin-top: 2rem; }
    .mt-10 { margin-top: 2.5rem; }
    .mt-12 { margin-top: 3rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-12 { margin-bottom: 3rem; }
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .gap-4 { gap: 1rem; }
    .gap-3 { gap: 0.75rem; }
    .flex-wrap { flex-wrap: wrap; }
    .max-w-2xl { max-width: 42rem; }
    .max-w-3xl { max-width: 56rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* Big CTA buttons */
    .btn-cta-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      background: var(--primary); color: #fff;
      padding: 0 2.5rem; height: 3.5rem;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-weight: 600; font-family: var(--font-sans);
      text-decoration: none; transition: background 0.2s; border: none; cursor: pointer;
    }
    .btn-cta-primary:hover { background: var(--primary-light); }
    .btn-cta-outline {
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.3); color: #fff;
      padding: 0 2.5rem; height: 3.5rem;
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-family: var(--font-sans); text-decoration: none; transition: background 0.2s;
    }
    .btn-cta-outline:hover { background: rgba(255,255,255,0.07); }

    @media (max-width: 480px) {
      .app-btns { flex-direction: column; }
      .app-btn { width: 100%; justify-content: center; }
      .flex.gap-4 { flex-direction: column; }
      .btn-cta-primary, .btn-cta-outline { width: 100%; text-align: center; }
    }

    /* ─── CONTACT MODAL ─────────────────────────────── */
    .modal-backdrop {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-backdrop.open {
      opacity: 1; pointer-events: all;
    }
    .modal {
      background: #111; border: 1px solid rgba(255,255,255,0.12);
      width: 100%; max-width: 480px;
      padding: 2.5rem;
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s ease, opacity 0.35s ease;
      opacity: 0;
      position: relative;
    }
    .modal-backdrop.open .modal {
      transform: none; opacity: 1;
    }
    .modal-close {
      position: absolute; top: 1.25rem; right: 1.25rem;
      background: none; border: none; color: #9ca3af;
      cursor: pointer; padding: 0.25rem; line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: #fff; }
    .modal-close svg { width: 20px; height: 20px; display: block; }
    .modal-eyebrow {
      font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--primary); font-weight: 600; margin-bottom: 0.75rem;
    }
    .modal h2 {
      font-family: var(--font-serif); font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }
    .modal-sub {
      font-size: 0.825rem; color: #9ca3af; margin-bottom: 1.75rem;
    }
    .modal-rule { width: 2.5rem; height: 1px; background: var(--primary); margin-bottom: 1.75rem; }
    .modal .form-field { margin-bottom: 1.1rem; }
    .modal .form-label {
      display: block; font-size: 0.65rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: #9ca3af; margin-bottom: 0.4rem;
    }
    .modal .form-input {
      width: 100%; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12); color: #fff;
      padding: 0.7rem 1rem; font-family: var(--font-sans); font-size: 0.875rem;
      outline: none; transition: border-color 0.2s;
      resize: none;
    }
    .modal .form-input:focus { border-color: var(--primary); }
    .modal .form-input::placeholder { color: #4b5563; }
    .modal-submit {
      width: 100%; background: var(--primary); color: #fff; border: none;
      padding: 0.85rem; font-family: var(--font-sans);
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s; font-weight: 600;
      margin-top: 0.5rem;
    }
    .modal-submit:hover { background: var(--primary-light); }
    .modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    /* Success state */
    .modal-success {
      display: none; text-align: center; padding: 1rem 0;
    }
    .modal-success.show { display: block; }
    .modal-form.hide { display: none; }
    .success-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
    }
    .success-icon svg { width: 28px; height: 28px; color: #22c55e; }
    .modal-success h3 {
      font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.5rem;
    }
    .modal-success p { font-size: 0.875rem; color: #9ca3af; }
    .prime-link{ color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.2s; }

    @media (max-width: 767px) {
      .page .hero { min-height: 80vh !important; }
      /*.page .hero { min-height: 70vh !important; }*/
    }
    
    .partner-section-banner{
        background: radial-gradient(ellipse 70% 60% at 60% 50%,rgba(180,30,30,0.12) 0%,transparent 70%);
        background-color: #0b0809;
    }
    
    .benefit-sec{
        margin-top: 50px;
    }
    
    .benefit-sec .section-label{
        margin-bottom: 20px !important; 
    }
    
    /* Grid */

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

/* Card */

.benefit-box{
    border:1px solid #232323;
    height:85px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:transparent;
    transition:.35s ease;
    cursor:pointer;
}

.benefit-box span{
    width:18px;
    height:2px;
    background:#b54040;
    margin-bottom:12px;
    transition:.35s;
}

.benefit-box h4{
    margin:0;
    color:#8c909d;
    font-size:13px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
}

.benefit-box:hover{
    border-color:#b54040;
    background:#0b0b0b;
}

.benefit-box:hover h4{
    color:#fff;
}

.benefit-box:hover span{
    width:28px;
}

/* Tablet */

@media(max-width:991px){

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

}

/* Mobile */

@media(max-width:576px){

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

    .benefit-box{
        height:75px;
    }

    .benefit-box h4{
        font-size:12px;
    }

}

/* Small Mobile */

@media(max-width:360px){

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

}



.partner-section{
    /*padding:100px 20px;*/
    background:#0d0a0b;
}

.section-header{
    max-width:760px;
    margin-bottom:70px;
}

.subtitle{
    display:inline-block;
    color:#c24848;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-header h2{
    font-family:Georgia,serif;
    font-size:64px;
    font-weight:400;
    line-height:1.1;
    margin-bottom:25px;
}

.section-header h2 span{
    color:#d45555;
    font-style:italic;
}

.section-header p{
    color:#8d8d93;
    font-size:19px;
    line-height:1.8;
}

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

.partner-card{
    border:1px solid rgba(255,255,255,.08);
    padding:34px;
    min-height:270px;
    display:flex;
    flex-direction:column;
    transition:.3s;
}

.partner-card:hover{
    border-color:#d45555;
    transform:translateY(-4px);
}

.number{
    font-family:Georgia,serif;
    font-size:52px;
    color:#7d2f2f;
    margin-bottom:18px;
}

.partner-card h3{
    font-size:16px;
    letter-spacing:1px;
    font-weight:700;
    margin-bottom:18px;
}

.partner-card p{
    color:#7d7d84;
    line-height:1.8;
    font-size:16px;
}

/* Tablet */

@media (max-width:992px){

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

    .section-header h2{
        font-size:50px;
    }

    .section-header p{
        font-size:17px;
    }

}

/* Mobile */

@media (max-width:768px){

    .partner-section{
        padding:70px 20px;
    }

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

    .section-header{
        margin-bottom:45px;
    }

    .section-header h2{
        font-size:38px;
    }

    .section-header p{
        font-size:16px;
        line-height:1.7;
    }

    .partner-card{
        min-height:auto;
        padding:28px;
    }

    .number{
        font-size:42px;
    }

}




.process-section{
    background:#070707;
}

.process-heading{
    margin-bottom:60px;
}

.section-tag{
    display:block;
    color:#cf4f47;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.process-heading h2{
    font-family:Georgia,serif;
    font-size:62px;
    font-weight:400;
    line-height:1.15;
    color:#f5f5f5;
    margin-bottom:22px;
}

.process-heading h2 span{
    color:#d5534f;
    font-style:italic;
}

.heading-line{
    width:42px;
    height:2px;
    background:#d5534f;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid rgba(255,255,255,.08);
}

.process-card{
    padding:34px 28px;
    border-right:1px solid rgba(255,255,255,.08);
    min-height:220px;
    transition:.3s;
}

.process-card:last-child{
    border-right:none;
}

.process-card:hover{
    background:#0d0d0d;
}

.step{
    color:#cf4f47;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    text-align: start;
    margin-bottom:22px;
}

.process-card h3{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:18px;
}

.process-card p{
    color:#767676;
    font-size:17px;
    line-height:1.8;
}

/* Tablet */

@media (max-width:992px){

    .process-heading h2{
        font-size:48px;
    }

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

    .process-card{
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .process-card:nth-child(2){
        border-right:none;
    }

    .process-card:nth-child(4){
        border-right:none;
        border-bottom:none;
    }

    .process-card:nth-child(3){
        border-bottom:none;
    }

}

/* Mobile */

@media (max-width:768px){

 

    .process-heading h2{
        font-size:36px;
        line-height:1.25;
    }

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

    .process-card{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.08);
        min-height:auto;
        padding:28px 24px;
    }

    .process-card:last-child{
        border-bottom:none;
    }

    .process-card h3{
        font-size:22px;
    }

    .process-card p{
        font-size:16px;
    }
}

.process-grid-3 .process-card{
    min-width: 190px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.process-grid-3 .process-card span{
    margin-bottom: 0;
    font-size: 2.5rem;
    font-family: var(--font-serif);
}

.process-grid-3 .process-card p {
        color: #767676;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: normal;
}