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

    :root {
      --navy: #0D1B2A;
      --teal: #00C2CB;
      --teal-dark: #009EA6;
      --white: #FFFFFF;
      --grey: #F4F6F9;
      --grey-mid: #E2E8F0;
      --text: #1E293B;
      --text-muted: #64748B;
      --error: #DC2626;
      --success-bg: #ECFDF5;
      --success-text: #065F46;
      --radius: 12px;
      --radius-sm: 8px;
      --shadow: 0 4px 24px rgba(13, 27, 42, 0.10);
      --shadow-lg: 0 8px 48px rgba(13, 27, 42, 0.16);
    }

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

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Sora', system-ui, sans-serif;
      line-height: 1.2;
      color: var(--navy);
    }

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

    a {
      color: var(--teal);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Skip to content */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      padding: 0.5rem 1rem;
      background: var(--teal);
      color: var(--navy);
      font-weight: 700;
      border-radius: var(--radius-sm);
      z-index: 9999;
      font-family: 'Sora', sans-serif;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* ─── LAYOUT HELPERS ───────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    section {
      padding: 5rem 0;
    }

    .section-label {
      display: inline-block;
      font-family: 'Sora', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.75rem;
    }

    .section-heading {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .section-heading--white {
      color: var(--white);
    }

    .section-sub {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
    }

    /* ─── SCROLL REVEAL ────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ─── BUTTONS ──────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 0.85rem 1.75rem;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
    }

    .btn:hover {
      text-decoration: none;
    }

    .btn:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: 3px;
    }

    .btn-primary {
      background: var(--teal);
      color: var(--navy);
    }

    .btn-primary:hover {
      background: var(--teal-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 194, 203, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
      transform: translateY(-1px);
    }

    /* ─── NAVIGATION ───────────────────────────────────────────────── */
    #nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(13, 27, 42, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: box-shadow 0.3s;
    }

    #nav.scrolled {
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 1.5rem;
    }

    .nav-logo {
      font-family: 'Sora', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-logo span {
      color: var(--teal);
    }

    .nav-logo:hover {
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links .btn {
      padding: 0.55rem 1.25rem;
      font-size: 0.875rem;
    }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--radius-sm);
    }

    .nav-toggle:focus-visible {
      outline: 2px solid var(--teal);
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .nav-toggle.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile nav drawer */
    @media (max-width: 767px) {
      .nav-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        gap: 0.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1rem;
      }

      .nav-links .btn {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
      }
    }

    /* ─── HERO ─────────────────────────────────────────────────────── */
    #hero {
      position: relative;
      background: var(--navy);
      overflow: hidden;
      padding: 6rem 0 5rem;
      min-height: 90vh;
      display: flex;
      align-items: center;
    }

    /* Gradient blob */
    #hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      max-width: 700px;
      max-height: 700px;
      background: radial-gradient(ellipse at center, rgba(0, 194, 203, 0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    #hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -15%;
      width: 50vw;
      height: 50vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(ellipse at center, rgba(0, 194, 203, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }
    }

    .hero-content {
      max-width: 620px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(0, 194, 203, 0.12);
      border: 1px solid rgba(0, 194, 203, 0.3);
      color: var(--teal);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.35rem 0.875rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      font-family: 'Sora', sans-serif;
      letter-spacing: 0.04em;
    }

    .hero-headline {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 1.25rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .hero-headline em {
      font-style: normal;
      color: var(--teal);
    }

    .hero-sub {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 2.25rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
      align-items: center;
    }

    .hero-link {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      transition: color 0.2s;
    }

    .hero-link:hover {
      color: var(--teal);
      text-decoration: none;
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.85rem;
      font-weight: 500;
    }

    .trust-badge svg {
      color: var(--teal);
      flex-shrink: 0;
    }

    /* Building SVG illustration */
    .hero-visual {
      display: none;
      position: relative;
    }

    @media (min-width: 900px) {
      .hero-visual {
        display: flex;
        justify-content: center;
      }
    }

    /* ─── PROBLEM SECTION ──────────────────────────────────────────── */
    #problem {
      background: var(--grey);
    }

    .problem-intro {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    .problem-intro .section-sub {
      margin: 0 auto;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .cards-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 960px) {
      .cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--grey-mid);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      background: rgba(0, 194, 203, 0.1);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .card-stat {
      font-family: 'Sora', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .card-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── SOLUTION SECTION ─────────────────────────────────────────── */
    #solution {
      background: var(--white);
    }

    .solution-intro {
      margin-bottom: 3rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .feature-item {
      display: flex;
      gap: 1rem;
      padding: 1.5rem;
      border-radius: var(--radius);
      border: 1px solid var(--grey-mid);
      background: var(--grey);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .feature-item:hover {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.08);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: rgba(0, 194, 203, 0.12);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .feature-text h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .feature-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── HOW IT WORKS ─────────────────────────────────────────────── */
    #how-it-works {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    #how-it-works::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80vw;
      height: 80vw;
      max-width: 800px;
      max-height: 800px;
      background: radial-gradient(ellipse at center, rgba(0, 194, 203, 0.06) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hiw-intro {
      text-align: center;
      margin-bottom: 4rem;
    }

    .hiw-intro .section-sub {
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.6);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* connector line on desktop */
    @media (min-width: 768px) {
      .steps-grid {
        position: relative;
      }

      .steps-grid::before {
        content: '';
        position: absolute;
        top: 30px;
        left: calc(16.67% + 1rem);
        right: calc(16.67% + 1rem);
        height: 2px;
        background: linear-gradient(to right, var(--teal), rgba(0, 194, 203, 0.2), var(--teal));
        z-index: 0;
      }
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--navy);
      font-family: 'Sora', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      box-shadow: 0 0 0 8px rgba(0, 194, 203, 0.12);
    }

    .step h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.6rem;
    }

    .step p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.65;
      max-width: 260px;
      margin: 0 auto;
    }

    /* ─── MARKET STATS ─────────────────────────────────────────────── */
    #market {
      background: var(--grey);
    }

    .market-intro {
      margin-bottom: 3.5rem;
    }

    .stats-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 640px) {
      .stats-row {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .stat-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid var(--grey-mid);
      box-shadow: var(--shadow);
    }

    .stat-number {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 800;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .market-para {
      max-width: 700px;
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ─── REGISTER FORM ────────────────────────────────────────────── */
    #register {
      background: var(--white);
    }

    .register-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
    }

    @media (min-width: 900px) {
      .register-grid {
        grid-template-columns: 1fr 1.4fr;
        align-items: start;
      }
    }

    .register-intro h2 {
      margin-bottom: 1rem;
    }

    .register-intro p {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 400px;
    }

    .register-perks {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .register-perks li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .perk-check {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--teal);
      margin-top: 1px;
    }

    /* Form card */
    .form-card {
      background: var(--grey);
      border: 1px solid var(--grey-mid);
      border-radius: var(--radius);
      padding: 2.25rem;
    }

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

    @media (max-width: 479px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.125rem;
    }

    .form-group label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--navy);
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 0.875rem;
      border: 1.5px solid var(--grey-mid);
      border-radius: var(--radius-sm);
      background: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
      border-color: var(--error);
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10);
    }

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

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .field-error {
      color: var(--error);
      font-size: 0.8rem;
      font-weight: 500;
      display: none;
    }

    .field-error.visible {
      display: block;
    }

    .char-count {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: right;
    }

    .btn-submit {
      width: 100%;
      justify-content: center;
      padding: 1rem;
      font-size: 1.05rem;
      border-radius: var(--radius-sm);
      margin-top: 0.5rem;
    }

    .privacy-note {
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 0.875rem;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 3rem 2rem;
    }

    .form-success.visible {
      display: block;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      background: rgba(0, 194, 203, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
    }

    .form-success h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }

    .form-success p {
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── FAQ ──────────────────────────────────────────────────────── */
    #faq {
      background: var(--grey);
    }

    .faq-intro {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--grey-mid);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 1rem;
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      transition: color 0.2s;
    }

    .faq-question:focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: -2px;
    }

    .faq-question:hover {
      color: var(--teal);
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform 0.3s, color 0.2s;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--teal);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 1.5rem;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── FOOTER ───────────────────────────────────────────────────── */
    footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.6);
      padding: 3.5rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
      }
    }

    .footer-logo {
      font-family: 'Sora', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .footer-logo span {
      color: var(--teal);
    }

    .footer-tagline {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 1.25rem;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .social-link:hover {
      background: rgba(0, 194, 203, 0.2);
      color: var(--teal);
      text-decoration: none;
    }

    .social-link:focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: 2px;
    }

    .footer-col h5 {
      font-family: 'Sora', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--teal);
      text-decoration: none;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      margin-bottom: 2rem;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-disclaimer {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.3);
      line-height: 1.6;
      max-width: 600px;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.35);
      white-space: nowrap;
    }
  
