    /* *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } */

    :root {
      --brand: #ce492a;
      --brand-light: #e8614a;
      --brand-dark: #a33820;
      --bg: #080808;
      --surface: rgba(255, 255, 255, 0.04);
      --surface-hover: rgba(255, 255, 255, 0.07);
      --border: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(206, 73, 42, 0.5);
      --text: #f0ede8;
      --muted: rgba(240, 237, 232, 0.5);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── GRAIN ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
    }

    /* ─── ORBS ─── */
    .orbs {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(130px);
      opacity: 0.16;
      animation: drift 22s ease-in-out infinite alternate;
    }

    .orb-1 {
      width: 700px;
      height: 700px;
      background: var(--brand);
      top: -300px;
      right: -150px;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 450px;
      height: 450px;
      background: #7c2f1a;
      bottom: -150px;
      left: -80px;
      animation-delay: -8s;
    }

    .orb-3 {
      width: 280px;
      height: 280px;
      background: #ff8c6b;
      top: 45%;
      left: 30%;
      animation-delay: -15s;
      opacity: 0.1;
    }

    @keyframes drift {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(30px, 40px) scale(1.08);
      }
    }

    /* ─── NAV ─── */
    /* nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      background: rgba(8,8,8,0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px; letter-spacing: 4px;
      color: var(--text); text-decoration: none;
    }
    .logo span { color: var(--brand); } */
    /* .nav-cta {
      background: var(--brand); color: #fff;
      border: none; border-radius: 8px;
      padding: 10px 24px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px; font-weight: 600;
      cursor: pointer; letter-spacing: 0.5px;
      transition: background 0.2s; text-decoration: none;
    }
    .nav-cta:hover { background: var(--brand-light); } */

    /* ─── HERO ─── */
    .hero {
      position: relative;
      z-index: 1;
      padding: 160px 24px 0;
      max-width: 1200px;
      margin: 0 auto;
      /* display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; */
      /* min-height: 60vh; */
    }

    .hero-left {}

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(206, 73, 42, 0.12);
      border: 1px solid rgba(206, 73, 42, 0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--brand-light);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.7s 0.1s forwards;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brand);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.3;
        transform: scale(0.6);
      }
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 7vw, 96px);
      line-height: 1;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--brand);
    }

    .hero-sub {
      margin-top: 24px;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--muted);
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .hero-info-pills {
      margin-top: 36px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .info-pill {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 18px;
      transition: border-color 0.2s, background 0.2s;
      text-decoration: none;
      color: inherit;
    }

    .info-pill:hover {
      border-color: rgba(206, 73, 42, 0.3);
      background: var(--surface-hover);
    }

    .pill-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(206, 73, 42, 0.12);
      border: 1px solid rgba(206, 73, 42, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .pill-label {
      font-size: 11px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .pill-value {
      font-size: 14px;
      font-weight: 600;
    }

    /* ─── FORM CARD ─── */
    .form-card {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px 40px;
      backdrop-filter: blur(12px);
      opacity: 0;
      animation: fadeUp 0.9s 0.3s forwards;
    }

    .form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(206, 73, 42, 0.5), transparent);
      border-radius: 24px 24px 0 0;
    }

    .form-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .form-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }

    label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

    input,
    select,
    textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      -webkit-appearance: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(240, 237, 232, 0.25);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--border-focus);
      background: rgba(206, 73, 42, 0.05);
    }

    select option {
      background: #1a1a1a;
      color: var(--text);
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    .subject-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .chip {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--muted);
      user-select: none;
    }

    .chip.active,
    .chip:hover {
      background: rgba(206, 73, 42, 0.12);
      border-color: rgba(206, 73, 42, 0.4);
      color: var(--text);
    }

    .chip-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .btn-submit {
      width: 100%;
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 16px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: all 0.25s;
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-submit:hover {
      background: var(--brand-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(206, 73, 42, 0.35);
    }

    .btn-submit.sending {
      opacity: 0.7;
      pointer-events: none;
    }

    .btn-submit .arrow {
      transition: transform 0.2s;
    }

    .btn-submit:hover .arrow {
      transform: translateX(4px);
    }

    /* ─── SUCCESS STATE ─── */
    .success-state {
      display: none;
      text-align: center;
      padding: 40px 0;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(206, 73, 42, 0.12);
      border: 2px solid var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin: 0 auto 20px;
      animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes popIn {
      from {
        transform: scale(0);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .success-state h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .success-state p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── DIVIDER ─── */
    .divider {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 80px auto 0;
      padding: 0 24px;
    }

    .divider-line {
      height: 1px;
      background: var(--border);
    }


    /* ─── SOCIALS ─── */
    .socials-bar {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px 80px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-card {
      flex: 1;
      min-width: 160px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      text-decoration: none;
      color: var(--text);
      transition: all 0.25s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .social-card:hover {
      border-color: rgba(206, 73, 42, 0.35);
      background: var(--surface-hover);
      transform: translateY(-4px);
    }

    .social-icon {
      font-size: 26px;
    }

    .social-name {
      font-size: 13px;
      font-weight: 700;
    }

    .social-handle {
      font-size: 11px;
      color: var(--muted);
    }


    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {

      /* .hero { grid-template-columns: 1fr; gap: 48px; } */
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .faq-item:first-child {
        border-radius: 16px 16px 0 0;
      }

      .faq-item:nth-child(2) {
        border-radius: 0;
      }

      .faq-item:nth-last-child(2) {
        border-radius: 0;
      }

      .faq-item:last-child {
        border-radius: 0 0 16px 16px;
      }
    }

    @media (max-width: 600px) {

      /* nav { padding: 16px 20px; } */
      .form-row {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 32px 24px;
      }
    }


    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      20% {
        transform: translateX(-6px);
      }

      40% {
        transform: translateX(6px);
      }

      60% {
        transform: translateX(-4px);
      }

      80% {
        transform: translateX(4px);
      }
    }