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

:root {
    --color-primary: #6C2BD9;
    --color-primary-light: #9B5FFF;
    --color-primary-dark: #4A1A9E;
    --color-secondary: #0FF4C6;
    --color-accent: #FF2D7A;
    --color-background: #F7F6FF;
    --color-background-alt: #EDEBFA;
    --color-surface: #FFFFFF;
    --color-text: #12002E;
    --color-text-secondary: #5B4F7A;
    --color-text-on-primary: #FFFFFF;
    --color-border: #DDD8F5;
    --color-success: #00D68F;
    --color-error: #FF3B5C;
    --font-heading: 'Space Grotesk', serif;
    --font-body: 'Inter', sans-serif;
    --font-heading-weight: 700;
    --font-body-weight: 400;
    --spacing-section-padding: 88px;
    --spacing-container-max-width: 1240px;
    --spacing-border-radius: 8px;
    --spacing-card-radius: 16px;
    --spacing-button-radius: 50px;
    --shadow-card: 0 4px 24px rgba(108, 43, 217, 0.10), 0 1px 4px rgba(108, 43, 217, 0.06);
    --shadow-elevated: 0 12px 40px rgba(108, 43, 217, 0.18), 0 2px 8px rgba(15, 244, 198, 0.08);
    --shadow-button: 0 4px 20px rgba(108, 43, 217, 0.35);
  }

  /* ============================================
     GOOGLE FONTS IMPORT
  ============================================ */
  
  /* ============================================
     RESET / BASE
  ============================================ */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: var(--font-body);
    font-weight: var(--font-body-weight);
    background-color: var(--color-background);
    color: var(--color-text);
  }

  /* ============================================
     HEADER
  ============================================ */
  .nav-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--color-background) 82%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
  }

  .nav-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--color-primary-light),
      var(--color-secondary),
      var(--color-primary-light),
      transparent
    );
    opacity: 0.5;
  }

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

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

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

  /* Hidden checkbox */
  .lefcd1-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;
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    transition: width 0.3s 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.45rem;
    padding: 0.65rem 1.35rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-on-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(0.8125rem, 1.5vw, 0.9rem);
    text-decoration: none;
    border-radius: var(--spacing-button-radius);
    box-shadow: var(--shadow-button);
    white-space: nowrap;
    min-height: 44px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: inherit;
  }

  .nav-cta:hover::before {
    opacity: 1;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
  }

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

  .nav-cta-text,
  .nav-cta-icon {
    position: relative;
    z-index: 1;
  }

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

  .nav-cta:hover .nav-cta-icon {
    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) 10%, transparent);
  }

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

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

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

  .lefcd1-checkbox:checked ~ .nav-hamburger .nav-bar-bot {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--color-primary);
  }

  /* ============================================
     FOOTER
  ============================================ */
  .footer-main {
    background: var(--color-text);
    position: relative;
    overflow: hidden;
  }

  .footer-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(
      ellipse at center,
      color-mix(in srgb, var(--color-primary) 20%, transparent),
      transparent 70%
    );
    pointer-events: none;
    z-index: 0;
  }

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

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

  .footer-logo-link {
    display: inline-flex;
    align-items: center;
  }

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

  .footer-logo-link:hover .footer-logo {
    opacity: 1;
  }

  .footer-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.5vw, 0.9rem);
    color: color-mix(in srgb, var(--color-background) 60%, transparent);
    line-height: 1.65;
    max-width: 280px;
  }

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

  /* Column headings */
  .footer-col-heading {
    font-family: var(--font-heading);
    font-weight: var(--font-heading-weight);
    font-size: clamp(0.8125rem, 1.5vw, 0.9rem);
    color: var(--color-surface);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    position: relative;
  }

  .footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary));
    border-radius: 2px;
  }

  /* Nav lists */
  .footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-nav-link {
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.5vw, 0.9rem);
    color: color-mix(in srgb, var(--color-background) 55%, transparent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.25s ease, gap 0.25s ease;
    line-height: 1.5;
  }

  .footer-nav-link::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color-primary-light);
    transition: width 0.25s ease;
    flex-shrink: 0;
  }

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

  .footer-nav-link:hover::before {
    width: 10px;
  }

  .footer-nav-link--small {
    font-size: clamp(0.75rem, 1.3vw, 0.825rem);
    line-height: 1.45;
  }

  /* Bottom bar */
  .footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid color-mix(in srgb, var(--color-border) 15%, transparent);
  }

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

  .footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: color-mix(in srgb, var(--color-background) 40%, transparent);
  }

  .footer-bottom-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary-light) 40%, transparent);
    flex-shrink: 0;
  }

  .footer-made {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: color-mix(in srgb, var(--color-background) 30%, transparent);
    font-style: italic;
  }

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

    .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);
    }

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

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

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

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

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

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

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

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

    .footer-bottom-inner {
      justify-content: center;
      text-align: center;
    }

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

    .footer-made {
      width: 100%;
      text-align: center;
    }
  }

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

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

    .nav-links {
      padding: 0.75rem;
    }

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

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

    .footer-col-heading {
      margin-bottom: 0.75rem;
    }

    .footer-bottom-inner {
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      padding: 1rem;
    }

    .footer-glow {
      width: 300px;
      height: 200px;
    }
  }

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

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

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

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

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