@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
     CSS CUSTOM PROPERTIES
  ============================================================ */
  :root {
    --color-primary: #1A2B4A;
    --color-primary-light: #243D6B;
    --color-primary-dark: #0F1A2E;
    --color-secondary: #2C3E55;
    --color-accent: #00C2CC;
    --color-background: #F5F6F8;
    --color-background-alt: #EAECF1;
    --color-surface: #FFFFFF;
    --color-text: #111827;
    --color-text-secondary: #4B5563;
    --color-text-on-primary: #FFFFFF;
    --color-border: #D1D5DB;
    --color-success: #059669;
    --color-error: #DC2626;
    --font-heading: 'Archivo', serif;
    --font-body: 'Inter', sans-serif;
    --font-heading-weight: 700;
    --font-body-weight: 400;
    --spacing-section-padding: 88px;
    --spacing-container-max-width: 1200px;
    --spacing-border-radius: 6px;
    --spacing-card-radius: 10px;
    --spacing-button-radius: 6px;
    --shadow-card: 0 2px 12px rgba(17, 24, 39, 0.08), 0 1px 3px rgba(17, 24, 39, 0.05);
    --shadow-elevated: 0 8px 32px rgba(17, 24, 39, 0.12), 0 2px 8px rgba(17, 24, 39, 0.06);
    --shadow-button: 0 2px 8px rgba(26, 43, 74, 0.30);
  }

  /* ============================================================
     GOOGLE FONTS IMPORT
  ============================================================ */
  
  /* ============================================================
     HEADER
  ============================================================ */
  .nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--color-surface) 88%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    font-family: var(--font-body);
    font-weight: var(--font-body-weight);
  }

  .nav-container {
    max-width: var(--spacing-container-max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
  }

  /* Logo */
  .nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }

  .nav-logo {
    max-height: 40px;
    width: auto;
    display: block;
  }

  /* Hidden checkbox */
  .b8cc90-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }

  /* Nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.01em;
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.25s ease;
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* CTA Button */
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    font-weight: 600;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border-radius: var(--spacing-button-radius);
    box-shadow: var(--shadow-button);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
    letter-spacing: 0.02em;
  }

  .nav-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 43, 74, 0.38);
  }

  .nav-cta:active {
    transform: translateY(0);
  }

  .nav-cta-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .nav-cta:hover .nav-cta-icon {
    transform: translateX(2px);
  }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: var(--spacing-border-radius);
    transition: background 0.2s ease;
  }

  .nav-hamburger:hover {
    background: var(--color-background-alt);
  }

  .nav-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  /* Hamburger open state */
  .b8cc90-checkbox:checked ~ .nav-hamburger .nav-bar--top {
    transform: translateY(7px) rotate(45deg);
  }

  .b8cc90-checkbox:checked ~ .nav-hamburger .nav-bar--mid {
    opacity: 0;
    transform: scaleX(0);
  }

  .b8cc90-checkbox:checked ~ .nav-hamburger .nav-bar--bot {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer-main {
    background: var(--color-primary-dark);
    color: var(--color-text-on-primary);
    font-family: var(--font-body);
    font-weight: var(--font-body-weight);
  }

  .footer-container {
    max-width: var(--spacing-container-max-width);
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  /* Brand column */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: fit-content;
  }

  .footer-logo {
    max-height: 38px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }

  .footer-tagline {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 72%, transparent);
    line-height: 1.65;
    margin: 0;
    max-width: 26ch;
  }

  .footer-trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1.1vw, 0.8125rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 80%, transparent);
    font-weight: 500;
  }

  .footer-trust-item svg {
    flex-shrink: 0;
  }

  /* Footer columns */
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-heading {
    font-family: var(--font-heading);
    font-weight: var(--font-heading-weight);
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 0.5rem 0;
  }

  .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-link {
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 70%, transparent);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
    line-height: 1.5;
  }

  .footer-link:hover {
    color: var(--color-text-on-primary);
    padding-left: 4px;
  }

  /* Footer bottom bar */
  .footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--color-border) 20%, transparent);
    background: color-mix(in srgb, var(--color-primary-dark) 60%, var(--color-primary) 40%);
  }

  .footer-bottom-inner {
    max-width: var(--spacing-container-max-width);
    margin: 0 auto;
    padding: 1.125rem clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-copyright {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 55%, transparent);
    margin: 0;
  }

  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .footer-bottom-link {
    font-size: clamp(0.75rem, 1vw, 0.8125rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 55%, transparent);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-bottom-link:hover {
    color: var(--color-text-on-primary);
  }

  .footer-bottom-sep {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-text-on-primary) 35%, transparent);
    flex-shrink: 0;
  }

  /* ============================================================
     RESPONSIVE - 768px
  ============================================================ */
  @media (max-width: 768px) {
    /* Header */
    .nav-container {
      height: 60px;
    }

    .nav-hamburger {
      display: flex;
    }

    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--color-surface);
      flex-direction: column;
      align-items: stretch;
      padding: 1rem;
      gap: 0.25rem;
      box-shadow: var(--shadow-elevated);
      border-top: 1px solid var(--color-border);
      box-sizing: border-box;
    }

    .b8cc90-checkbox:checked ~ .nav-links {
      display: flex;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      font-size: 1rem;
      border-radius: var(--spacing-border-radius);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      background: var(--color-background-alt);
      color: var(--color-primary);
      padding-left: 1rem;
    }

    .nav-cta {
      margin-top: 0.5rem;
      justify-content: center;
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
    }

    /* Footer */
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

    .footer-tagline {
      max-width: 100%;
    }

    .footer-trust {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
    }

    .footer-bottom-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.625rem;
    }
  }

  /* ============================================================
     RESPONSIVE - 480px
  ============================================================ */
  @media (max-width: 480px) {
    /* Header */
    .nav-container {
      padding: 0 1rem;
      height: 56px;
    }

    .nav-logo {
      max-height: 34px;
    }

    .nav-links {
      padding: 0.75rem;
    }

    .nav-link {
      font-size: 0.9375rem;
    }

    /* Footer */
    .footer-container {
      grid-template-columns: 1fr;
      gap: 1.75rem;
      padding: 2rem 1rem;
    }

    .footer-brand {
      grid-column: auto;
    }

    .footer-trust {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-bottom-inner {
      padding: 1rem;
    }

    .footer-bottom-links {
      gap: 0.5rem;
    }

    .footer-copyright,
    .footer-bottom-link {
      font-size: 0.75rem;
    }
  }

/* ── Footer Payment Icons ── */
.n19204 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.a9a2d9 {
  font-family: var(--font-body), sans-serif;
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.i73f2d {
  display: flex;
  gap: 0.35rem;
}

.efd1e6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2px;
  line-height: 0;
}

.efd1e6 svg {
  display: block;
  width: 38px;
  height: 24px;
}
