:root {
    --bg: #c7ebff;
    --bg-soft: #d8f1ff;
    --surface: rgba(255, 255, 255, 0.58);
    --surface-strong: #ffffff;
    --text: #06263d;
    --muted: #3f6f8f;
    --line: rgba(6, 38, 61, 0.08);
    --primary: #2f9fe8;
    --primary-dark: #1f86cc;
    --primary-soft: #7fd0ff;
    --shadow: 0 20px 50px rgba(16, 79, 120, 0.12);
    --radius-xl: 28px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #bfe7fb 0%, #d8f2ff 100%);
    color: var(--text);
    font-family: "Source Sans 3", sans-serif;
  }
  
  body {
    min-height: 100vh;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  .page-shell {
    width: calc(100% - 24px);
    max-width: 1840px;
    min-height: calc(100vh - 24px);
    margin: 12px auto;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.38) 0, rgba(255,255,255,0) 28%),
      linear-gradient(to bottom, var(--bg-soft) 0%, var(--bg) 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  
  .page-shell::before,
  .page-shell::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    pointer-events: none;
  }
  
  .page-shell::before {
    width: 420px;
    height: 120px;
    top: 120px;
    left: -80px;
  }
  
  .page-shell::after {
    width: 520px;
    height: 140px;
    top: 150px;
    right: -60px;
  }
  
  .site-header {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: #06263d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
  }
  
  .logo-wrap {
    display: flex;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
    flex: 1;
  }
  
  .logo-full {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main-nav a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  .header-actions {
    display: flex;
    align-items: stretch;
    gap: 14px;
    min-width: 320px;
    justify-content: flex-end;
    flex: 1;
  }
  
  .lang {
    position: relative;
  }

  .lang-trigger {
    height: 54px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    outline: none;
  }

  .lang-trigger:hover {
    border-color: rgba(47, 159, 232, 0.9);
    background: rgba(255, 255, 255, 0.14);
  }

  .lang-trigger[aria-expanded="true"] {
    border-color: #2f9fe8;
    box-shadow: 0 0 0 3px rgba(47, 159, 232, 0.18);
    background: rgba(255, 255, 255, 0.14);
  }

  .lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .lang-label {
    min-width: 80px;
  }

  .lang-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4.5px solid transparent;
    border-right: 4.5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    opacity: 0.7;
    transition: transform 0.2s ease;
  }

  .lang-trigger[aria-expanded="true"] .lang-caret {
    transform: rotate(180deg);
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 164px;
    padding: 6px;
    background: #06263d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }

  .lang-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
  }

  .lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .lang-item:hover,
  .lang-item.active {
    background: rgba(47, 159, 232, 0.18);
    color: #ffffff;
  }
  
  .download-btn {
    background: #2f9fe8;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(47, 159, 232, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .download-btn:hover {
    background: #1f86cc;
    transform: translateY(-1px);
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes floatCenter {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
  }

  @keyframes floatLeft {
    0%, 100% { transform: rotate(-6deg) translateY(10px); }
    50%       { transform: rotate(-6deg) translateY(-4px); }
  }

  @keyframes floatRight {
    0%, 100% { transform: rotate(6deg) translateY(10px); }
    50%       { transform: rotate(6deg) translateY(-4px); }
  }

  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(47, 159, 232, 0.35); }
    50%       { box-shadow: 0 14px 48px rgba(47, 159, 232, 0.62); }
  }

  @keyframes iconBounce {
    0%   { transform: scale(1) rotate(0deg); }
    40%  { transform: scale(1.18) rotate(-6deg); }
    70%  { transform: scale(0.95) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
  }

  @keyframes statPop {
    from { opacity: 0; transform: scale(0.7) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  .hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    align-items: center;
    gap: 40px;
    padding: 110px 80px 130px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy .social-proof {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.22s;
  }

  .hero-copy h1 {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.32s;
  }

  .hero-copy .hero-subtext {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.42s;
  }

  .hero-copy .hero-buttons {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.52s;
  }

  .hero-copy .hero-badges {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.60s;
  }

  .social-proof {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px 10px 10px;
    border: 1px solid rgba(6, 38, 61, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(16, 79, 120, 0.05);
  }
  
  .avatars {
    display: flex;
    align-items: center;
  }
  
  .avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
  }
  
  .avatars img:first-child {
    margin-left: 0;
  }
  
  .proof-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }
  
  .stars {
    color: #ffbe3d;
    letter-spacing: 0.12em;
    font-size: 1.15rem;
  }
  
  .hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 32px;
  }

  .store-badge {
    height: 44px;
    width: auto;
    display: block;
  }

  /* Phone stack */
  .phone-stack {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 540px;
  }

  .phone {
    position: absolute;
    bottom: 0;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 24px 40px rgba(16, 79, 120, 0.18));
  }

  .phone--center {
    height: 520px;
    z-index: 3;
    position: relative;
  }

  .phone--left {
    height: 420px;
    z-index: 2;
    left: 0;
    transform: rotate(-6deg) translateY(10px);
    opacity: 0.85;
  }

  .phone--right {
    height: 420px;
    z-index: 2;
    right: 0;
    transform: rotate(6deg) translateY(10px);
    opacity: 0.85;
  }

  .hero-copy h1 {
    margin: 40px 0 28px;
    font-size: clamp(4rem, 5vw, 6rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text);
    font-family: "Nunito", sans-serif;
  }

  .hero-subtext {
    max-width: 540px;
    margin: 0 0 48px;
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--muted);
    font-weight: 600;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    padding: 18px 28px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .btn-primary {
    background: var(--primary);
    color: #fff;
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    border: 1px solid rgba(6, 38, 61, 0.08);
  }
  
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .app-preview-card {
    width: min(560px, 100%);
    padding: 18px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 50px rgba(16, 79, 120, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }
  
  .app-preview-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
  }
  
  .features-section {
    padding: 100px 80px;
  }

  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .features-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .features-header h2 {
    margin: 0 0 16px;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
    color: var(--text);
  }

  .features-subtitle {
    margin: 0;
    font-size: 1.15rem;
    color: var(--muted);
    font-weight: 600;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    padding: 36px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(16, 79, 120, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 79, 120, 0.12);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(47, 159, 232, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: "Nunito", sans-serif;
    color: var(--text);
  }

  .feature-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    font-weight: 600;
  }
  
  .footer-image-band {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
  }
  
  .footer-band-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  
  .site-footer {
    background: #1f1f21;
    color: #f4f4f4;
    padding: 72px 0 28px;
    margin-top: 0;
  }
  
  .footer-inner {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 72px;
    align-items: start;
  }
  
  .footer-column h3 {
    margin: 0 0 28px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    font-family: "Nunito", sans-serif;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin: 0 0 14px;
  }
  
  .footer-column a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .footer-column a:hover {
    color: #ffffff;
  }
  
  
  .footer-social .social-links {
    display: flex;
    gap: 22px;
    margin-top: 6px;
  }
  
  .social-icon-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  
  .social-icon-link:hover {
    color: #2f9fe8;
    border-color: #2f9fe8;
    transform: translateY(-1px);
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
    display: block;
  }
  
  .footer-bottom {
    margin-top: 80px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
  }
  
  .footer-bottom a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: #ffffff;
  }
  
  @media (max-width: 1280px) {
    .site-header {
      padding: 0 28px;
    }

    .main-nav {
      gap: 28px;
    }

    .hero-section {
      grid-template-columns: 1fr;
      padding: 80px 56px 100px;
    }

    .hero-copy {
      max-width: 100%;
    }

    .hero-visual {
      margin-top: 20px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 48px 32px;
    }

    .features-section {
      padding: 80px 40px;
    }

    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 840px) {
    .site-header {
      height: auto;
      padding: 18px 20px;
      flex-direction: column;
      gap: 18px;
    }
  
    .main-nav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px 22px;
    }
  
    .header-actions {
      min-width: unset;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero-section {
      padding: 56px 28px 72px;
    }

    .hero-copy h1 {
      font-size: 3.3rem;
    }
  
    .hero-subtext {
      font-size: 1.05rem;
    }
  
    .hero-buttons {
      flex-wrap: wrap;
    }
  
    .app-preview-card {
      width: 100%;
      max-width: 520px;
    }
  
    .features-section {
      padding: 50px 20px;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-inner {
      width: min(1240px, calc(100% - 40px));
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  
    .footer-bottom {
      gap: 14px 20px;
    }
  }
  
  @media (max-width: 520px) {
    .download-btn {
      padding: 14px 18px;
      font-size: 0.95rem;
    }
  
    .lang {
      width: 100%;
    }

    .lang-trigger {
      width: 100%;
      justify-content: space-between;
    }
  
    .social-proof {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      border-radius: 24px;
    }
  
    .proof-text {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero-copy h1 {
      font-size: 2.5rem;
    }
  
    .btn {
      width: 100%;
    }
  
    .site-footer {
      padding: 56px 0 24px;
    }

    .footer-inner {
      width: calc(100% - 32px);
    }
  }

.hero-mobile-heading { display: none; }
.mobile-why-section { display: none; }

/* ── Mobile header (≤640px) ── */
@media (max-width: 640px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    gap: 0;
  }

  .main-nav {
    display: none;
  }

  .download-btn {
    display: none;
  }

  .header-actions {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: unset;
  }

  /* Compact pill: flag + caret only, no text label */
  .lang-trigger {
    height: 40px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    gap: 6px;
    width: auto;
    justify-content: center;
  }

  .lang-label {
    display: none;
  }

  .lang-flag {
    width: 24px;
    height: 24px;
  }

  /* Keep dropdown below the pill */
  .lang-menu {
    right: 0;
    left: auto;
    min-width: 160px;
  }

  .logo-full { height: 28px; }
  .hero-learn-more { display: none; }
  .hero-mobile-heading {
    display: block;
    order: 5;
    font-size: 1.95rem;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    width: 100%;
    margin: 30vh 0 0 0;
    color: var(--text);
  }

  .hero-subtext {
    display: block;
    font-size: 0.95rem;
    margin: 8px auto 0;
    max-width: 80%;
    padding: 0 12px;
    text-align: center;
  }

  /* Hide all sections between hero and FAQ on mobile */
  .stats-strip,
  .features-section,
  .how-section,
  .levels-section,
  .testimonials-section,
  .learn-banner {
    display: none;
  }
  .hero-buttons .btn-primary {
    text-transform: uppercase;
    width: 100%;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
  }

  /* Phone mockup fills top, title + button pinned to bottom */
  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 64px);
    padding: 0 20px 32px;
  }

  .hero-visual {
    order: -1;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .phone--center {
    height: auto;
    max-height: 60vh;
    width: auto;
    object-fit: contain;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    flex-shrink: 0;
    margin-top: auto;
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    text-align: center;
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .hero-copy h1       { order: 0; }
  .hero-subtext       { order: 1; margin-bottom: 24px; }
  .hero-buttons       { order: 2; margin-bottom: 40px; }
  .hero-badges        { display: none; }
  .social-proof       { display: none; }

  /* Undo the 840px full-width lang overrides */
  .lang {
    width: auto;
  }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Section eyebrow ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

/* ── Stats strip ── */
.stats-strip {
  padding: 0 80px;
  margin-bottom: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(16, 79, 120, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px 40px;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-num {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(6, 38, 61, 0.1);
  flex-shrink: 0;
}

/* ── How it works ── */
.how-section {
  padding: 100px 80px;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 {
  margin: 0 0 14px;
  font-size: 2.6rem;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  color: var(--text);
}

.how-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 6px 20px rgba(16, 79, 120, 0.06);
}

.how-connector {
  width: 2px;
  height: 24px;
  background: rgba(47, 159, 232, 0.25);
  margin: 0 auto;
  flex-shrink: 0;
}

.how-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f9fe8, #1f86cc);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(47, 159, 232, 0.3);
}

.how-content h3 {
  margin: 0 0 8px;
  font-family: "Nunito", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.how-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}

/* ── Levels section ── */
.levels-section {
  padding: 100px 80px;
  background: rgba(255, 255, 255, 0.22);
}

.levels-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.levels-header {
  text-align: center;
  margin-bottom: 56px;
}

.levels-header h2 {
  margin: 0 0 14px;
  font-size: 2.6rem;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  color: var(--text);
}

.levels-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.level-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(16, 79, 120, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.level-card--active {
  border-color: rgba(47, 159, 232, 0.35);
  box-shadow: 0 8px 32px rgba(47, 159, 232, 0.14);
}

.level-card--active:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(47, 159, 232, 0.18);
}

.level-card--locked {
  opacity: 0.72;
}

.level-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(47, 159, 232, 0.1);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.level-badge--gold {
  color: #92600a;
  background: #fff4d6;
}

.level-code {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.level-name {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}

.level-desc {
  font-size: 0.97rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 24px;
}

.level-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.level-topics li {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.level-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
  cursor: pointer;
}

.level-btn--primary {
  background: linear-gradient(135deg, #2f9fe8, #1f86cc);
  color: #fff;
}

.level-btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.level-btn--locked {
  background: rgba(6, 38, 61, 0.06);
  color: var(--muted);
  cursor: default;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 80px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  color: var(--text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(16, 79, 120, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(16, 79, 120, 0.11);
}

.testimonial-stars {
  color: #ffbe3d;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(6, 38, 61, 0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.testimonial-author span {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Learn Banner (bottom CTA) ── */
.learn-banner {
  margin: 0 80px 80px;
}

.learn-banner-inner {
  border-radius: 28px;
  background: linear-gradient(112deg, #062844 0%, #0e4d82 35%, #1f86cc 65%, #7fd0ff 100%);
  padding: 72px 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.learn-banner-inner::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, transparent 65%);
  top: -180px;
  right: 260px;
  pointer-events: none;
}

.learn-banner-inner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 159, 232, 0.22) 0%, transparent 70%);
  bottom: -60px;
  left: 38%;
  pointer-events: none;
}

.learn-banner-copy {
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.learn-banner-eyebrow {
  color: rgba(255, 255, 255, 0.65) !important;
}

.learn-banner-copy h2 {
  margin: 10px 0 22px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.learn-banner-sub {
  margin: 0 0 36px;
  font-size: 1.06rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 460px;
}

.learn-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-learn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--primary-dark);
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn-learn-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.learn-banner-trust {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

.learn-banner-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 380px;
}

.learn-banner-phone {
  height: 410px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.3));
}

.store-badge--light {
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.15s;
}

.store-badge--light:hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .learn-banner { margin: 0 40px 60px; }
  .learn-banner-inner {
    padding-left: 56px;
    grid-template-columns: 1fr 280px;
  }
  .learn-banner-visual { height: 320px; }
  .learn-banner-phone { height: 350px; }
}

@media (max-width: 900px) {
  .learn-banner-inner {
    grid-template-columns: 1fr;
    padding: 56px 40px 0;
    align-items: start;
  }
  .learn-banner-copy {
    padding-bottom: 0;
    max-width: 100%;
  }
  .learn-banner-sub { max-width: 100%; }
  .learn-banner-visual {
    height: 260px;
    justify-content: flex-start;
    margin-top: 36px;
  }
  .learn-banner-phone { height: 260px; }
}

@media (max-width: 640px) {
  .learn-banner { margin: 0 16px 48px; }
  .learn-banner-inner { padding: 44px 24px 0; }
  .learn-banner-copy h2 { font-size: 1.9rem; }
  .learn-banner-actions { flex-direction: column; align-items: flex-start; }
  .btn-learn-cta { width: 100%; }
  .learn-banner-visual { height: 220px; margin-top: 28px; }
  .learn-banner-phone { height: 220px; }
}

/* ── Footer brand column ── */
.footer-brand .footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin: 0;
  max-width: 200px;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 80px;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header h2 {
  margin: 0 0 14px;
  font-family: "Nunito", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
}

.faq-subtitle {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(16, 79, 120, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(16, 79, 120, 0.1);
}

.faq-item.open {
  border-color: rgba(47, 159, 232, 0.3);
  box-shadow: 0 8px 28px rgba(47, 159, 232, 0.1);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: 20px;
}

.faq-item.open .faq-trigger {
  color: var(--primary-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text);
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
  background: var(--primary);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq-body-inner {
  overflow: hidden;
}

.faq-body-inner p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--muted);
}

.faq-body-inner a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-body-inner a:hover {
  color: var(--primary-dark);
}

/* ── New responsive overrides ── */
@media (max-width: 1280px) {
  .stats-strip { padding: 0 40px; }
  .how-section { padding: 80px 40px; }
  .levels-section { padding: 80px 40px; }
  .testimonials-section { padding: 80px 40px; }
  .faq-section { padding: 80px 40px; }
}


@media (max-width: 960px) {
  .levels-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .stats-strip { padding: 0 20px; }
  .stats-inner { flex-wrap: wrap; padding: 20px 24px; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }
  .how-section { padding: 60px 20px; }
  .levels-section { padding: 60px 20px; }
  .testimonials-section { padding: 60px 20px; }
  .faq-section { padding: 60px 20px; }
  .faq-grid { grid-template-columns: 1fr; }

  .phone-stack { height: 380px; }
  .phone--center { height: 360px; }
  .phone--left, .phone--right { height: 290px; }
  .hero-badges { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .phone--left, .phone--right { display: none; }
  .phone--center { height: 320px; }
  .phone-stack { height: 320px; }
  .levels-grid, .testimonials-grid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-header h2 { font-family: "Nunito", sans-serif; font-size: 1.95rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
  .faq-subtitle { font-family: "Source Sans 3", sans-serif; font-size: 0.95rem; font-weight: 600; max-width: 80%; margin: 0 auto; text-align: center; padding: 0 12px; }

  /* ── Why Kalbėk feature cards (mobile only) ── */
  .mobile-why-section {
    display: block;
    padding: 32px 20px 56px;
  }

  .mobile-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mobile-why-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 20px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(16, 79, 120, 0.07);
  }

  .mobile-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-why-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }

  .mwi--blue   { background: rgba(47, 159, 232, 0.15); color: #2f9fe8; }
  .mwi--green  { background: rgba(34, 197,  94, 0.15); color: #16a34a; }
  .mwi--orange { background: rgba(249, 115,  22, 0.15); color: #ea580c; }
  .mwi--purple { background: rgba(139,  92, 246, 0.15); color: #7c3aed; }
  .mwi--cyan   { background: rgba(  6, 182, 212, 0.15); color: #0891b2; }
  .mwi--amber  { background: rgba(245, 158,  11, 0.15); color: #d97706; }

  .mobile-why-card h3 {
    font-family: "Nunito", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
  }

  .mobile-why-card p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
  }

  .mobile-why-cta {
    display: block;
    margin: 28px auto 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
  }
}