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

  :root {
    --brand: #3C3FDE;
    --brand-dark: #2a2db8;
    --brand-darker: #1e2090;
    --brand-mid: #6366ef;
    --brand-50: #f0f0fe;
    --brand-100: #d4d5fb;
    --brand-200: #a9abf7;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --error: #e11d48;
    --success: #16a34a;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--slate-200);
    padding: 0 2.5rem; height: 66px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo img { height: 36px; width: auto; display: block; }
  .nav-logo { text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--slate-600); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--brand); }
  .nav-links a.active { color: var(--brand); font-weight: 600; }
  .nav-cta { background: var(--brand) !important; color: white !important; padding: 9px 22px; border-radius: var(--radius-sm); font-weight: 600 !important; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--brand-dark) !important; }

  /* ── PAGE HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 55%, var(--brand-mid) 100%);
    padding: 68px 2rem 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .page-hero-inner { position: relative; }
  .page-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem; font-weight: 500;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 22px;
  }
  .page-hero h1 {
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    font-weight: 700; color: white;
    letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px;
  }
  .page-hero h1 em { font-style: normal; color: #a5b4fc; }
  .page-hero p {
    font-size: 1rem; color: rgba(255,255,255,0.7);
    max-width: 500px; margin: 0 auto; line-height: 1.7;
  }

  /* ── CONTACT BODY ── */
  .contact-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
  }

  /* ── LEFT: INFO ── */
  .contact-info { display: flex; flex-direction: column; gap: 32px; }

  .info-block {}

  .info-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 12px; display: block;
  }

  .info-block h2 {
    font-size: 1.5rem; font-weight: 700;
    color: var(--slate-900); letter-spacing: -0.025em;
    line-height: 1.2; margin-bottom: 12px;
  }

  .info-block p {
    font-size: 0.9rem; color: var(--slate-500); line-height: 1.75;
  }

  .contact-cards { display: flex; flex-direction: column; gap: 14px; }

  .contact-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .contact-card:hover {
    border-color: var(--brand-200);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(60,63,222,0.08);
  }

  .contact-card-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--brand-50);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .contact-card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--brand); fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  }

  .contact-card-text {}
  .contact-card-label {
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--slate-400); margin-bottom: 2px;
  }
  .contact-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem; font-weight: 600; color: var(--slate-800);
  }

  .response-note {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: var(--radius-md);
    padding: 16px 18px;
  }

  .response-note svg {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    stroke: var(--brand); fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  }

  .response-note p {
    font-size: 0.83rem; color: var(--brand-dark); line-height: 1.6;
  }

  /* ── RIGHT: FORM ── */
  .contact-form-wrap {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  }

  .form-title {
    font-size: 1.25rem; font-weight: 700;
    color: var(--slate-900); letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .form-subtitle {
    font-size: 0.855rem; color: var(--slate-500);
    margin-bottom: 32px; line-height: 1.6;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
  .form-group:last-of-type { margin-bottom: 0; }

  .form-group label {
    font-size: 0.82rem; font-weight: 600;
    color: var(--slate-700); letter-spacing: 0.01em;
  }

  .form-group label span { color: var(--error); margin-left: 2px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
    resize: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--slate-400); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(60,63,222,0.08);
  }

  .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

  .form-group textarea { min-height: 130px; line-height: 1.65; }

  .form-submit-row {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .form-note {
    font-size: 0.78rem;
    color: var(--slate-400);
    display: flex; align-items: center; gap: 6px;
  }

  .form-note svg {
    width: 14px; height: 14px; flex-shrink: 0;
    stroke: var(--slate-400); fill: none;
    stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  }

  .btn-submit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    background: var(--brand); color: white;
    border: none; cursor: pointer;
    padding: 13px 32px;
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    letter-spacing: -0.01em;
  }

  .btn-submit:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(60,63,222,0.3);
  }

  .btn-submit svg {
    width: 16px; height: 16px;
    stroke: white; fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  /* Success state */
  .success-state {
    display: none;
    text-align: center;
    padding: 48px 24px;
  }

  .success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }

  .success-icon svg {
    width: 28px; height: 28px;
    stroke: var(--success); fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  .success-state h3 {
    font-size: 1.3rem; font-weight: 700;
    color: var(--slate-900); margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .success-state p {
    font-size: 0.9rem; color: var(--slate-500); line-height: 1.7;
    max-width: 320px; margin: 0 auto 28px;
  }

  .btn-back {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    color: var(--brand); background: var(--brand-50);
    border: 1.5px solid var(--brand-100);
    padding: 10px 22px; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.2s;
    text-decoration: none; display: inline-block;
  }

  .btn-back:hover { background: var(--brand-100); }

  /* ── FOOTER ── */
  footer {
    background: var(--slate-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 2.5rem;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
  .footer-links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
  .footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
  .footer-bottom {
    max-width: 1100px; margin: 24px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
  .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .contact-body { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .page-hero { padding: 52px 1.25rem 48px; }
    .contact-body { padding: 48px 1.25rem; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; align-items: stretch; }
    .btn-submit { justify-content: center; }
    footer { padding: 36px 1.25rem; }
  }
