/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;

      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;

      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;

      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;

      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;

      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;

      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ──────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── UTILITIES ─────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .section {
      padding: 6rem 0;
    }

    .section-sm {
      padding: 4rem 0;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ─── BUTTONS ───────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-lg {
      padding: 0.9375rem 2rem;
      font-size: 1rem;
    }


    /* ─── ANIMATIONS ────────────────────────────────────────────── */
    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(6px);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(131, 39, 210, 0.4);
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(131, 39, 210, 0);
      }

      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(131, 39, 210, 0);
      }
    }

    /* ─── CONTACT HERO ──────────────────────────────────────────── */
    .contact-hero {
      padding-top: 130px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
    }

    .contact-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .hero-orb-1 {
      position: absolute;
      top: -220px;
      right: -180px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.12) 0%, transparent 65%);
      border-radius: 50%;
    }

    .hero-orb-2 {
      position: absolute;
      bottom: -100px;
      left: -120px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
      border-radius: 50%;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 80%);
    }

    .contact-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin-inline: auto;
      text-align: center;
    }

    .contact-hero-inner .label {
      display: inline-block;
      margin-bottom: 1rem;
      animation: fadeIn 0.5s ease both;
    }

    .contact-hero-inner h1 {
      margin-bottom: 1.25rem;
      animation: fadeUp 0.6s ease 0.1s both;
    }

    .contact-hero-inner h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-hero-desc {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-500);
      margin-bottom: 1.75rem;
      animation: fadeUp 0.6s ease 0.2s both;
    }

    .contact-hero-response {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.625rem 1.25rem;
      background: var(--surface);
      border: 1px solid var(--border-soft);
      border-radius: var(--r-full);
      font-size: 0.875rem;
      color: var(--ink-500);
      font-weight: 500;
      box-shadow: var(--shadow-sm);
      animation: fadeUp 0.6s ease 0.3s both;
    }

    .response-dot {
      width: 8px;
      height: 8px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse-ring 2s ease infinite;
      flex-shrink: 0;
    }

    .contact-hero-response strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    /* ─── CONTACT OPTIONS ───────────────────────────────────────── */
    .contact-options-section {
      background: var(--surface);
      padding: 5rem 0;
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }

    .section-header {
      margin-bottom: 3rem;
    }

    .section-header.centered {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
    }

    .section-header h2 {
      margin-top: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .section-header p {
      font-size: 1.0625rem;
    }

    .contact-options-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .contact-option-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2.25rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-option-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 20px 20px 0 0;
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left;
    }

    .contact-option-card.card-sales::before {
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .contact-option-card.card-support::before {
      background: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .contact-option-card.card-partner::before {
      background: linear-gradient(90deg, #10B981, #34D399);
    }

    .contact-option-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .contact-option-card:hover::before {
      transform: scaleX(1);
    }

    .contact-option-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.5rem;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .icon-sales {
      background: var(--brand-pale);
      color: var(--brand);
    }

    .icon-support {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .icon-partner {
      background: rgba(16, 185, 105, 0.1);
      color: #10B981;
    }

    .contact-option-card:hover .contact-option-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.08) rotate(-3deg);
    }

    .contact-option-card.card-support:hover .contact-option-icon {
      background: #3B82F6;
    }

    .contact-option-card.card-partner:hover .contact-option-icon {
      background: #10B981;
    }

    .contact-option-card h3 {
      margin-bottom: 0.625rem;
      font-size: 1.125rem;
    }

    .contact-option-card p {
      font-size: 0.9375rem;
      margin-bottom: 1.75rem;
      flex: 1;
    }

    .contact-option-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand);
      margin-top: auto;
      transition: gap 0.2s ease;
    }

    .contact-option-link:hover {
      gap: 0.75rem;
    }

    .contact-option-link.link-support {
      color: #3B82F6;
    }

    .contact-option-link.link-partner {
      color: #10B981;
    }

    /* ─── CONTACT FORM + OFFICE ─────────────────────────────────── */
    .contact-main-section {
      padding: 6rem 0;
      background: var(--canvas);
    }

    .contact-main-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: start;
    }

    /* Form */
    .contact-form-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 24px;
      padding: 2.75rem 2.5rem;
      box-shadow: var(--shadow-sm);
    }

    .contact-form-card .section-header {
      margin-bottom: 2rem;
    }

    .contact-form-card .section-header h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.875rem);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.125rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-label {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink-700);
      letter-spacing: 0.01em;
    }

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

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.8125rem 1rem;
      background: var(--canvas);
      border: 1.5px solid var(--border);
      border-radius: var(--r-md);
      font-family: var(--ff-body);
      font-size: 0.9375rem;
      color: var(--ink-700);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--ink-300);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--brand);
      background: var(--surface);
      box-shadow: var(--shadow-glow);
    }

    .form-textarea {
      resize: vertical;
      min-height: 20px;
      line-height: 1.6;
    }

    .form-select-wrap {
      position: relative;
    }

    .form-select-wrap::after {
      content: '';
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--ink-400);
      pointer-events: none;
    }

    .form-select {
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .form-submit-note {
      font-size: 0.8125rem;
      color: var(--ink-400);
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    .form-submit-note svg {
      color: var(--success);
      flex-shrink: 0;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    }

    .btn-submit:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(131, 39, 210, 0.45);
    }

    /* Office Info */
    .contact-info-col {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .info-section-label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 0.25rem;
    }

    .info-heading {
      font-family: var(--ff-heading);
      font-size: 1.625rem;
      font-weight: 700;
      color: var(--ink-900);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .info-subtext {
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .office-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .office-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      padding: 1.375rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1.125rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .office-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-sm);
      border-color: var(--brand-soft);
    }

    .office-card-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--brand-pale);
      display: grid;
      place-items: center;
      color: var(--brand);
      flex-shrink: 0;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .office-card:hover .office-card-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.05);
    }

    .office-card-content {}

    .office-card-label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-400);
      margin-bottom: 0.25rem;
    }

    .office-card-value {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--ink-900);
      line-height: 1.4;
    }

    .office-card-value a {
      color: var(--brand);
      transition: color 0.15s;
    }

    .office-card-value a:hover {
      color: var(--brand-dark);
    }

    .office-card-sub {
      font-size: 0.8125rem;
      color: var(--ink-400);
      margin-top: 0.125rem;
    }

    /* ─── FAQ SECTION ───────────────────────────────────────────── */
    .faq-contact-section {
      background: var(--surface);
      padding: 5rem 0;
      border-top: 1px solid var(--border-soft);
    }

    .faq-contact-layout {
      display: grid;
      grid-template-columns: 0.85fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-contact-left {
      position: sticky;
      top: 100px;
    }

    .faq-contact-left .info-section-label {
      margin-bottom: 0.5rem;
    }

    .faq-contact-left .info-heading {
      font-size: 2rem;
      margin-bottom: 0.875rem;
    }

    .faq-contact-left .info-subtext {
      margin-bottom: 1.75rem;
    }

    .faq-cta-mini {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand-dark);
      transition: all 0.2s ease;
    }

    .faq-cta-mini:hover {
      background: var(--brand);
      color: #fff;
      border-color: var(--brand);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(131, 39, 210, 0.3);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-item.faq-open {
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }

    .faq-q-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--brand);
      background: var(--brand-pale);
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .faq-q-text {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
      flex: 1;
      transition: color 0.2s;
    }

    .faq-item.faq-open .faq-q-text {
      color: var(--brand-dark);
    }

    .faq-chevron {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--canvas);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--ink-400);
      transition: background 0.2s, color 0.2s, transform 0.35s ease;
    }

    .faq-item.faq-open .faq-chevron {
      background: var(--brand);
      color: #fff;
      transform: rotate(180deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .faq-item.faq-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer-inner {
      overflow: hidden;
      padding: 0 1.5rem;
    }

    .faq-answer-inner p {
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.7;
      padding-bottom: 1.25rem;
    }

    /* ─── FINAL CTA ─────────────────────────────────────────────── */
    .final-cta-section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--brand) 0%, #6A1FB0 50%, var(--brand-deep) 100%);
    }

    .final-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 680px;
      margin-inline: auto;
    }

    .final-cta-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
    }

    .final-cta-inner h2 {
      color: #fff;
      font-size: clamp(1.9rem, 3.5vw, 2.875rem);
      margin-bottom: 1rem;
    }

    .final-cta-inner p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.0625rem;
      margin-bottom: 2.5rem;
      line-height: 1.75;
    }

    .final-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9375rem 2rem;
      background: #fff;
      color: var(--brand-dark);
      border: none;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
      transition: all 0.2s ease;
    }

    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
    }

    .btn-cta-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9375rem 2rem;
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(4px);
    }

    .btn-cta-outline-white:hover {
      border-color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .final-cta-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      flex-wrap: wrap;
    }

    .cta-stat-item {
      text-align: center;
    }

    .cta-stat-number {
      font-family: var(--ff-heading);
      font-size: 1.75rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .cta-stat-label {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.55);
    }

    .cta-stat-divider {
      width: 1px;
      height: 3rem;
      background: rgba(255, 255, 255, 0.12);
    }

    /* ─── RESPONSIVE ────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .contact-options-grid {
        grid-template-columns: 1fr 1fr;
      }

      .contact-options-grid .contact-option-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin-inline: auto;
        width: 100%;
      }

      .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .contact-info-col {
        order: -1;
      }

      .office-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .faq-contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
    }

    @media (max-width: 768px) {
      .contact-options-grid {
        grid-template-columns: 1fr;
      }

      .contact-options-grid .contact-option-card:last-child {
        grid-column: auto;
        max-width: 100%;
      }

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

      .office-cards {
        grid-template-columns: 1fr;
      }

      .final-cta-stats {
        gap: 1.5rem;
      }

      .cta-stat-divider {
        display: none;
      }

      .nav-links {
        display: none;
      }

      .contact-form-card {
        padding: 2rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .form-submit-row {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-submit {
        width: 100%;
        justify-content: center;
      }
    }