:root {
    --color-primary: #E8175D;
    --color-primary-light: #FF4D87;
    --color-primary-dark: #B5104A;
    --color-secondary: #1A1A2E;
    --color-accent: #00C9A7;
    --color-background: #FAFAFA;
    --color-background-alt: #F2F2F7;
    --color-surface: #FFFFFF;
    --color-text: #1A1A2E;
    --color-text-secondary: #6B6B80;
    --color-text-on-primary: #FFFFFF;
    --color-border: #E2E2EC;
    --color-success: #00C9A7;
    --color-error: #D62839;
    --font-heading: 'Plus Jakarta Sans', serif;
    --font-body: 'Inter', sans-serif;
    --font-heading-weight: 800;
    --font-body-weight: 400;
    --spacing-section-padding: 80px;
    --spacing-container-max-width: 1200px;
    --spacing-border-radius: 10px;
    --spacing-card-radius: 16px;
    --spacing-button-radius: 50px;
    --shadow-card: 0 4px 24px rgba(26, 26, 46, 0.07);
    --shadow-elevated: 0 12px 40px rgba(232, 23, 93, 0.15);
    --shadow-button: 0 6px 20px rgba(232, 23, 93, 0.35);
  }

  /* =========================================
     HEADER
  ========================================= */

  .nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--color-surface) 85%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    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;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
  }

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

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

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

  .nav-link {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    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-primary);
    border-radius: 2px;
    transition: width 0.25s ease;
  }

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

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

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

  .nav-cta:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-1px);
  }

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

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

  .nav-cta:hover svg {
    transform: translateX(3px);
  }

  /* 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;
    z-index: 10;
    border-radius: var(--spacing-border-radius);
    transition: background 0.2s ease;
  }

  .nav-hamburger:hover {
    background: color-mix(in srgb, var(--color-primary) 8%, transparent);
  }

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

  /* Hamburger open state - bars animate to X */
  .f13e38-checkbox:checked ~ .nav-hamburger .nav-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .f13e38-checkbox:checked ~ .nav-hamburger .nav-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .f13e38-checkbox:checked ~ .nav-hamburger .nav-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* =========================================
     FOOTER
  ========================================= */

  .footer-main {
    background: var(--color-secondary);
    font-family: var(--font-body);
    font-weight: var(--font-body-weight);
    color: var(--color-text-on-primary);
    padding-top: clamp(2.5rem, 6vw, var(--spacing-section-padding));
  }

  .footer-container {
    max-width: var(--spacing-container-max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 20%, transparent);
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-brand-link {
    display: inline-flex;
    text-decoration: none;
  }

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

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

  .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: color-mix(in srgb, var(--color-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
    border-radius: var(--spacing-button-radius);
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    width: fit-content;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-col-heading {
    font-family: var(--font-heading);
    font-weight: var(--font-heading-weight);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-on-primary);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

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

  .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 65%, transparent);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    line-height: 1.5;
  }

  .footer-link svg {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .footer-link:hover {
    color: var(--color-primary-light);
    gap: 0.55rem;
  }

  .footer-link:hover svg {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-primary-light);
  }

  .footer-blog-list {
    gap: 0.75rem;
  }

  .footer-blog-link {
    font-size: clamp(0.8rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    display: block;
    border-left: 2px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
    padding-left: 0.75rem;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .footer-blog-link:hover {
    border-left-color: var(--color-primary-light);
  }

  /* Footer bottom bar */
  .footer-bottom {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }

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

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

  .footer-bottom-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
    color: color-mix(in srgb, var(--color-text-on-primary) 55%, transparent);
    white-space: nowrap;
  }

  .footer-trust-divider {
    display: block;
    width: 1px;
    height: 14px;
    background: color-mix(in srgb, var(--color-border) 25%, transparent);
    flex-shrink: 0;
  }

  /* =========================================
     RESPONSIVE - 768px
  ========================================= */

  @media (max-width: 768px) {
    /* Header mobile */
    .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;
      box-shadow: var(--shadow-elevated);
      border-top: 1px solid var(--color-border);
      gap: 0.25rem;
      box-sizing: border-box;
    }

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

    .nav-link {
      font-size: 1rem;
      padding: 0.75rem 0.5rem;
      border-bottom: 1px solid var(--color-border);
      color: var(--color-text);
    }

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

    .nav-link:last-of-type {
      border-bottom: none;
    }

    .nav-cta {
      margin-top: 0.5rem;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      min-height: 48px;
    }

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

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

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

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

    .footer-bottom-trust {
      gap: 0.75rem;
    }
  }

  /* =========================================
     RESPONSIVE - 480px
  ========================================= */

  @media (max-width: 480px) {
    .nav-container {
      height: 60px;
    }

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

    /* Footer mobile small */
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.75rem;
    }

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

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

    .footer-trust-divider {
      display: none;
    }

    .footer-trust-item {
      white-space: normal;
    }

    .footer-blog-link {
      white-space: normal;
    }
  }

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

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

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

.a21f16 {
  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;
}

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