/* ============================================
   GabHelp — Design tokens
============================================ */
:root {
  --blue: #149BD7;
  --blue-dark: #0878B5;
  --blue-light: #DDF4FF;
  --background: #F7FCFF;
  --white: #FFFFFF;
  --text: #102A43;
  --muted: #607D94;
  --border: #D5E8F3;
  --ink: #E8544C;
  --success: #2FAE66;

  --shadow-sm: 0 1px 2px rgba(16,42,67,0.05), 0 2px 6px rgba(16,42,67,0.04);
  --shadow-md: 0 10px 30px rgba(16,42,67,0.08);
  --shadow-lg: 0 24px 64px rgba(16,42,67,0.12);

  --radius-lg: 36px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-hand: 'Caveat', cursive;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset
============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--text); line-height: 1.15; letter-spacing: -0.01em; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  background: var(--text);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0 0 12px;
}

.handwritten {
  font-family: var(--font-hand);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 600;
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(20,155,215,0.28);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 1.5px solid var(--blue);
  width: 100%;
}
.btn-outline:hover { background: var(--blue-light); }

/* ============================================
   Section head
============================================ */
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
}
/* ============================================
   Floating navigation
============================================ */
.site-nav {
  position: sticky;
  top: 10px;
  z-index: 100;
  max-width: var(--container);
  margin: 16px auto 0;
  opacity: 0;
  transform: translateY(-16px);
  animation: navIn 0.7s var(--ease) 0.1s forwards;
}
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .site-nav { opacity: 1; transform: none; animation: none; } }

.nav-inner {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  padding: 10px 12px 10px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: box-shadow 0.3s var(--ease);
}
.site-nav.is-scrolled .nav-inner { box-shadow: var(--shadow-md); }

.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.92rem; font-weight: 500; color: var(--text); }
.nav-links--left { justify-self: start; }
.nav-links--right { justify-self: end; gap: 18px; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links--left a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s var(--ease);
}
.nav-links--left a:hover::after { width: 100%; }

.nav-logo {
  font-family: var(--font-hand);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue-dark);
  justify-self: center;
  line-height: 1;
}



.nav-login {
    border: 0;
    background: none;
    padding: 0;
    color: var(--text);
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}
.nav-login:hover {
    color: var(--blue-dark);
}
.nav-lang {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 7px 13px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.nav-expandable {
  position: relative;
  flex-shrink: 0;
  width: fit-content;
  transition: width 0.4s ease;
}
.nav-lang-expand.is-open {
  width: 120px;
  transition: width 0.4s ease;
}
.nav-expand-trigger {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 7px 13px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;

    transition:
        border-radius 0.25s ease,
        border-color 0.25s ease;
}
.nav-expandable.is-open .nav-expand-trigger {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.nav-expand-panel {
    position: absolute;
    left: 0;
    top: 100%;

    width: max-content;
    min-width: 100%;

    box-sizing: border-box;

    border: 1px solid var(--border);
  
    border-top: 1px solid var(--border);
    border-radius: 0 0 14px 14px;

    background: var(--background);

    padding: 0 13px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.3s ease,
        padding 0.3s ease,
        opacity 0.2s ease,
        visibility 0.3s ease;
}
.nav-expandable.is-open .nav-expand-panel {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 12px 13px 13px;
}
.nav-expand-panel a,
.nav-expand-panel span {
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: normal;
    font: inherit;
    font-size: 0.82rem;;
}
.nav-expand-panel a:hover,
.nav-expand-panel span:hover {
    color: var(--blue-dark);
}

.language-form {
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

.language-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    background: transparent;
    color: var(--text);

    font: inherit;
    font-size: 0.82rem;
    text-align: left;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.language-option.is-current {
  border-bottom: 2px solid var(--blue);
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 10px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: visible;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-lang-mobile{
  display: flex !important;
}
.nav-mobile-items{
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.nav-mobile-items .nav-expand-panel.mobile-login{
  padding: 0 !important;
}
.nav-mobile.is-open {
  max-height: 300px; 
  display: flex; 
}
.nav-lang-expand-mobile.is-open {
  width: 120px;
  transition: width 0.4s ease;
}
.nav-mobile a {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.nav-mobile a:hover { background: var(--blue-light); }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.nav-mobile-login { color: var(--blue-dark); font-weight: 700; }
/* ============================================
   Hero
============================================ */
.hero { padding-top: 10px; height: 100dvh;}

.hero-card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  height: 85%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-card.is-visible { opacity: 1; transform: translateY(0); }

.hero-media {
  position: relative;
  padding: 48px 40px 48px 56px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
}


.hero-media-line {
  position: absolute;
  inset: 0;
  padding-right: 10px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  animation: floaty 5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-tag { animation: none; } }
.hero-tag--a {
  top: 14%;
  left: 6%;
  width: 46px;
  height: 46px;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  animation-delay: 0.3s;
}
.hero-tag--check {
  bottom: 12%;
  right: 8%;
  width: 44px;
  height: 44px;
  color: var(--ink);
  animation-delay: 1.1s;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-handwritten {
  position: absolute;
  right: 44px;
  bottom: 22px;
  font-family: var(--font-hand);
  color: var(--blue);
  font-size: 1.3rem;
  transform: rotate(-3deg);
}

.hero-divider {
  position: absolute;
  left: calc(52.38% - 1px);
  top: 0;
  height: 100%;
  width: 90px;
  transform: translateX(-45px);
  z-index: 2;
}

.hero-content {
  padding: 56px 56px 56px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: var(--blue-dark);
  position: relative;
  white-space: nowrap;
}
.hero-content h1 span::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 2px;
  height: 10px;
  background: var(--blue-light);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   Benefits
============================================ */
.benefits { max-width: var(--container); margin: 130px auto 0; }

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

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.benefit.is-visible { opacity: 1; transform: translateY(0); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.benefit--check { background: var(--blue-light); border-color: transparent; }
.benefit--folder { margin-top: 28px; }

.benefit-visual { height: 88px; display: flex; align-items: center; margin-bottom: 22px; }

.benefit h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 0.95rem; }

/* mini answer sheet */
.mini-sheet { display: flex; flex-direction: column; gap: 10px; }
.mini-row { display: flex; gap: 8px; }
.mini-row i, .mini-row b {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-block;
}
.mini-row b.filled { background: var(--blue); border-color: var(--blue); }

/* check svg */
.benefit-check-svg { width: 72px; height: 72px; }
.check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.8s var(--ease);
}
.benefit--check.is-visible .check-path { stroke-dashoffset: 0; }

/* mini folders */
.mini-folders { display: flex; gap: -8px; position: relative; height: 60px; width: 100%; }
.mini-folder {
  position: absolute;
  top: 0;
  width: 62px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.mini-folder--1 { left: 0; transform: rotate(-6deg); z-index: 1; }
.mini-folder--2 { left: 46px; transform: rotate(3deg); z-index: 2; background: var(--blue-light); }
.mini-folder--3 { left: 92px; transform: rotate(-2deg); z-index: 1; }

/* ============================================
   How it works
============================================ */
.how {
  max-width: var(--container);
  margin: 150px auto 0;
  text-align: center;
}

.how-video {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 8.2;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--blue-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.how-video.is-visible { opacity: 1; transform: translateY(0); }

.how-video-bg { width: 100%; height: 100%; object-fit: cover; }

.how-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease);
}
.how-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.how-play-triangle {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--blue);
  margin-left: 5px;
}

.how-note { margin-top: 26px; transform: rotate(-1.5deg); display: inline-block; }

/* ============================================
   Testimonials
============================================ */
.testimonials { max-width: var(--container); margin: 150px auto 0; }

.testimonials-desktop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial.is-visible { opacity: 1; transform: translateY(0); }
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial p { font-size: 0.96rem; color: var(--text); margin-bottom: 18px; }
.testimonial footer strong { display: block; font-size: 0.92rem; }
.testimonial footer span { font-size: 0.82rem; color: var(--muted); }

.testimonial--a { grid-column: span 2; background: var(--blue-light); border-color: transparent; }
.testimonial--b { grid-column: span 2; margin-top: 34px; }
.testimonial--c { grid-column: span 2; }
.testimonial--d { grid-column: span 3; margin-top: -10px; }
.testimonial--e { grid-column: span 3; background: var(--text); border-color: transparent; margin-top: -10px; }
.testimonial--e p, .testimonial--e footer strong { color: var(--white); }
.testimonial--e footer span { color: rgba(255,255,255,0.6); }

.testimonials-swiper { display: none; }
.testimonials-swiper .testimonial { opacity: 1; transform: none; }

/* ============================================
   CTA
============================================ */
.cta { max-width: var(--container); margin: 150px auto 0; }

.cta-card {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.cta-card.is-visible { opacity: 1; transform: translateY(0); }
.cta-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 1.5px solid rgba(20,155,215,0.25);
  border-radius: 50%;
}
.cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -40px;
  width: 180px; height: 180px;
  border: 1.5px solid rgba(20,155,215,0.18);
  border-radius: 50%;
}

.cta-handwritten { display: block; margin-bottom: 10px; transform: rotate(-2deg); }
.cta-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 620px; margin: 0 auto 16px; position: relative; z-index: 1; }
.cta-lead { color: var(--muted); max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-card .btn { position: relative; z-index: 1; }

/* ============================================
   Pricing
============================================ */
.pricing { max-width: var(--container); margin: 150px auto 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card.is-visible { opacity: 1; transform: translateY(0); }

.price-card--pro {
  background: var(--text);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card--pro h3,
.price-card--pro .price-current,
.price-card--pro .price-current span { color: var(--white); }
.price-card--pro .price-caption { color: rgba(255,255,255,0.6); }
.price-card--pro .price-old s { color: rgba(255,255,255,0.45); }
.price-card--pro .price-features li { color: rgba(255,255,255,0.85); }
.price-card--pro .price-features li::before { border-color: rgba(255,255,255,0.35); }
.price-card--pro .price-features li.is-included::before { background: var(--blue); border-color: var(--blue); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.price-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.price-old { font-size: 1rem; color: var(--muted); margin-bottom: 2px; }
.price-current { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin-bottom: 6px; }
.price-current span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-caption { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }

.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  color: var(--text);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.price-features li.is-included::before {
  background: var(--success);
  border-color: var(--success);
}
.price-features li.is-included::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 6.5px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg);
}
.price-features li.is-excluded { color: var(--muted); text-decoration: line-through; }
.price-features li.is-excluded::after {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 10px; height: 1.5px;
  background: var(--border);
  transform: rotate(45deg);
}

.pricing-swiper { display: none; }
.pricing-swiper .price-card { opacity: 1; transform: none; }

/* ============================================
   Footer
============================================ */
.site-footer { 
  max-width: var(--container); 
  margin: 150px auto 16px;
}

.footer-card {
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.footer-card.is-visible { opacity: 1; transform: translateY(0); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-logo { font-size: 2.1rem; color: var(--white); margin-bottom: 10px; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.85); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-legal a:hover { color: var(--white); }

/* ============================================
   Reveal on scroll
============================================ */
.reveal { opacity: 1; }

/* ============================================
   Responsive — tablet
============================================ */
@media (max-width: 992px) {
  .hero-card { grid-template-columns: 1fr; height: auto; }
  .hero-media { padding: 40px; height: 350px; }
  .hero-divider { display: none; }
  .hero-content { padding: 40px; }
  .hero-lead { max-width: 100%; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit--folder { grid-column: span 2; margin-top: 0; }

  .testimonials-desktop { grid-template-columns: repeat(2, 1fr); }
  .testimonial--a, .testimonial--b, .testimonial--c, .testimonial--d, .testimonial--e {
    grid-column: span 1;
    margin-top: 0;
  }

  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 3; }
}

/* ============================================
   Responsive — mobile
============================================ */
@media (max-width: 768px) {
  .nav-links--left, .nav-links--right .nav-login, .nav-lang { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 8px 8px 8px 18px; margin: 0px 16px; }
  .nav-logo { justify-self: start; }
  .nav-toggle { display: flex; }

  section { padding: 0 16px; }

  .hero { padding-top: 16px; }
  .hero-card { border-radius: var(--radius-md); display: flex; flex-direction: column-reverse; }
  .hero-media { padding: 32px 24px; }
  .hero-media-frame { max-width: 280px; }
  .hero-content { padding: 32px 24px 40px; }
  .hero-actions { flex-direction: column; align-self: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-tag--a { width: 38px; height: 38px; font-size: 1.2rem; }
  .hero-tag--check { width: 36px; height: 36px; }

  .benefits { margin-top: 90px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit--folder { grid-column: span 1; }

  .how { margin-top: 100px; }
  .how-video { aspect-ratio: 4 / 3.4; border-radius: var(--radius-md); }
  .how-play { width: 64px; height: 64px; }

  .testimonials { margin-top: 100px; }
  .testimonials-desktop { display: none; }
  .testimonials-swiper { display: block; padding-bottom: 44px; }
  .testimonials-swiper .testimonial { margin: 4px 2px; }

  .cta { margin-top: 100px; }
  .cta-card { padding: 48px 24px; border-radius: var(--radius-md); }

  .pricing { margin-top: 100px; }
  .pricing-grid { display: none; }
  .pricing-swiper { display: block; padding-bottom: 44px; }
  .pricing-swiper .price-card { margin: 4px 2px; }
  .price-card { padding: 32px 26px; border-radius: var(--radius-md); }

  .site-footer { margin-top: 100px; }
  .footer-card { padding: 40px 24px 24px; border-radius: var(--radius-md); }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .nav-logo { font-size: 1.6rem; }
  .hero-content h1 { font-size: 1.7rem; }
}

/* Swiper pagination theming */
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--blue); }