*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --fire: #003049;
  --fire2: #003049;
  --orange: #F05E2B;
  --gold: #E51630;
  --cream: #ffffff;
  --warm: #002f4909;
  --paper: #FFFAF5;
  --white: #FFFFFF;
  --ink: #1A0F08;
  --ink2: #003049;
  --text: #4A3728;
  --muted: #7A6558;
  --light: #C4B4A8;
  --border: #E8D8CC;
  --border2: #F0E4D8;
  --card: #FFFFFF;
  --card2: #FEF3E8;
  --grad: linear-gradient(135deg, #2138CA 0%, #2138CA 100%);
  --grad2: linear-gradient(135deg, #003049 0%, #2138CA 100%);
  --shadow: 0 4px 24px rgba(232, 65, 10, 0.1);
  --shadow2: 0 12px 48px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(.25, .46, .45, .94);
  --fh: 'Nunito', sans-serif;
  --fb: 'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--warm)
}

::-webkit-scrollbar-thumb {
  background: var(--fire);
  border-radius: 2px
}

::selection {
  background: rgba(232, 65, 10, 0.15);
  color: var(--ink)
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--grad);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--fb);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}

.ann-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ── NAVBAR ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow 0.3s;
}

#nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08)
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(36, 10, 232, 0.5);
  flex-shrink: 0;
}

.logo span {
  color: var(--fire)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--fire);
  border-radius: 1px;
  transition: width 0.25s;
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn-ghost {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--light)
}

.btn-fire {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  padding: 10px 22px;
  background: var(--grad);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 65, 10, 0.35)
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.ham span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
  display: block
}

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(255, 247, 240, 0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mob-menu.open {
  display: flex
}

.mob-menu a {
  font-size: 1.2rem;
  color: var(--ink2);
  transition: color 0.2s;
}

.mob-menu a:hover {
  color: var(--fire)
}

.mob-close {
  position: absolute;
  top: 22px;
  right: 5%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  font-family: var(--fb);
  font-weight: 300;
  padding: 8px;
}

/* ── HERO ── */
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  align-items: center;
  gap: 20px;
  min-height: 92vh;
}

.hero-bg-wrap {
  position: relative;
  overflow: hidden
}

.hero-bg-wrap::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10, 91, 232, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0b8cf512 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 60px 0
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hwb(204 4% 9% / 0.08);
  border: 1px solid rgba(232, 65, 10, 0.2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--fire);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6)
  }
}

.badge-txt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire)
}

.hero-h1 {
  
  font-size: clamp(2.8rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s both;
}

.hero-h1 em {
  color: var(--fire2);
  font-style: italic
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
  /* max-width: 480px; */
  margin-bottom: 36px;
  line-height: 1.5;
  animation: fadeUp 0.7s 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.3s both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  padding: 16px 36px;
  background: var(--grad);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(232, 65, 10, 0.35);
  transition: all 0.3s;
  letter-spacing: 0.01em;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 52px rgba(232, 65, 10, 0.5)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  padding: 15px 28px;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire)
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.7s 0.4s both;
}

.avatars {
  display: flex
}

.av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: -10px;
  flex-shrink: 0;
}

.av:first-child {
  margin-left: 0
}

.av1 {
  background: linear-gradient(135deg, #003049, #E51630);
  color: #fff
}

.av2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff
}

.av3 {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #fff
}

.av4 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff
}

.av5 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff
}

.trust-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 2px
}

.trust-txt {
  font-size: 0.78rem;
  color: var(--muted)
}

.trust-txt strong {
  color: var(--ink);
  font-weight: 700
}

/* HERO RIGHT – APP CARD */
.hero-right {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  animation: slideRight 0.8s 0.2s both
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.app-card {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.app-card img{
  width: 100%;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #0D2680;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  flex: 1;
  min-width: 110px;
  text-align: center;
  position: relative
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-val {
  
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px
}

/* ── SECTIONS ── */
.section {
  padding: 50px 5%;
  position: relative
}

.sec-wrap {
  max-width: 1280px;
  margin: 0 auto
}
.section-sub-center{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--fire);
  border-radius: 1px
}

.sec-h2 {
  
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.sec-h2 .g {
  color: var(--fire)
}

.sec-p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.5
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

.reveal.vis {
  opacity: 1;
  transform: none
}

/* ── LANGUAGES ── */
#languages {
  background: var(--cream)
}

.langs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px
}

.see-all {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.see-all:hover {
  gap: 12px
}

.langs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.lang-card {
  background: #fff;
  border: 1.5px solid var(--border2);
  padding: 28px 20px;
  text-align: center;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.lang-card:hover {
  border-color: var(--fire);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(232, 65, 10, 0.14);
}

.lc-hot {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--fire);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}

.lc-flag {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.35s;
  line-height: 1
}

.lang-card:hover .lc-flag {
  transform: scale(1.05)
}

.lc-name {
  
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px
}

.lc-count {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px
}

.lc-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 4px;
}

.more-langs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.more-pill {
  background: #fff;
  border: 1.5px solid var(--border2);
  padding: 11px 20px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  transition: all 0.2s;
  font-weight: 500;
}

.more-pill:hover {
  border-color: var(--fire);
  color: var(--ink)
}

/* ── HOW IT WORKS ── */
#how {
  background: #fff
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center
}

.steps {
  display: flex;
  flex-direction: column;
  position: relative
}

.steps::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: linear-gradient(to bottom, var(--fire), var(--gold), transparent);
  opacity: 0.25;
}

.step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border2);
  transition: padding-left 0.3s;
}

.step:last-child {
  border: none
}

.step:hover {
  padding-left: 6px
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(36, 10, 232, 0.08);
  border: 1.5px solid rgba(36, 10, 232, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--fire);
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}

.step:hover .step-num {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff
}

.step-txt h3 {
  
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.3s
}

.step:hover .step-txt h3 {
  color: var(--fire)
}

.step-txt p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5
}

/* How mockup */
.how-mock {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
}

.hm-bar {
  background: var(--warm);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hm-dots {
  display: flex;
  gap: 6px
}

.hm-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.hm-r {
  background: #FF5F57
}

.hm-y {
  background: #FFBD2E
}

.hm-g {
  background: #28C840
}

.hm-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--fire);
  text-transform: uppercase
}

.hm-body {
  padding: 20px
}

.hm-lesson {
  background: var(--warm);
  border: 1px solid var(--border2);
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.hm-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 8px
}

.hm-h {
  
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 14px
}

.wave-row {
  display: flex;
  align-items: center;
  gap: 12px
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px
}

.wv {
  width: 4px;
  border-radius: 2px;
  background: var(--fire);
  animation: wvAnim 1.4s ease-in-out infinite
}

@keyframes wvAnim {

  0%,
  100% {
    height: 3px
  }

  50% {
    height: 22px
  }
}

.play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(36, 10, 232, 0.5);
}

.hm-score {
  background: rgba(10, 28, 232, 0.05);
  border: 1px solid rgba(232, 65, 10, 0.15);
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.hm-score-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 8px
}

.hm-phrase {
  
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 12px
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.mic-btn {
  width: 45px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(232, 65, 10, 0.1);
  border: 1.5px solid rgba(36, 10, 232, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.score-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1
}

.sb {
  width: 4px;
  border-radius: 2px;
  background: var(--fire);
  animation: wvAnim 1s ease-in-out infinite
}

.score-pct {
  
  font-size: 1.3rem;
  color: var(--gold)
}

.vocab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 12px
}

.vcard {
  background: var(--warm);
  border: 1px solid var(--border2);
  padding: 9px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.vcard span:last-child {
  font-size: 0.68rem;
  color: var(--muted)
}

.streak-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
}

.streak-icon {
  font-size: 1.25rem
}

.streak-t {
  
  font-size: 0.85rem;
  color: var(--gold)
}

.streak-s {
  font-size: 0.67rem;
  color: var(--muted)
}

.prog-row2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px
}

.pr-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  flex-shrink: 0
}

.pr-track {
  flex: 1;
  height: 5px;
  background: var(--warm);
  border-radius: 99px;
  border: 1px solid var(--border2);
  overflow: hidden
}

.pr-fill {
  height: 100%;
  background: var(--grad);
  width: 68%;
  border-radius: 99px
}

.pr-pct {
  
  font-size: 1.2rem;
  color: var(--fire);
  font-weight: 700;
  flex-shrink: 0
}

/* ── FEATURES ── */
#features {
  background: var(--cream)
}

.feat-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border2);
}

.feat-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none
}

.feat-block.flip {
  direction: rtl
}

.feat-block.flip>* {
  direction: ltr
}

.feat-img-wrap {
  position: relative
}

.feat-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--warm) 0%, var(--border2) 100%);
}

.feat-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: #fff;
  border: 1.5px solid var(--border2);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.fb-val {
  font-size: 1.4rem;
  color: var(--fire);
  line-height: 1;
}

.fb-lbl {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px
}

.feat-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 13px;
  border: 1.5px solid rgba(36, 10, 232, 0.5);
  color: var(--fire);
  border-radius: 4px;
  margin-bottom: 16px;
  background: rgba(10, 65, 232, 0.05);
}

.feat-h2 {
  
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.feat-p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.5;
}

.feat-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(36, 10, 232, 0.08);
  border: 1.5px solid rgba(36, 10, 232, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6l4 4 8-8' stroke='%23E8410A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54%;
}

.feat-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 64px;
  border-top: 1px solid var(--border2);
}

.feat-mini {
  background: #fff;
  border: 1.5px solid var(--border2);
  padding: 26px 20px;
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}

.feat-mini:hover {
  border-color: var(--fire);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(232, 65, 10, 0.1)
}

.fm-icon {
  background: rgba(36, 10, 232, 0.08);
  border: 1.5px solid rgba(232, 65, 10, 0.15);
  border-radius: 10px;
  display: inline-block;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.feat-mini:hover .fm-icon {
  background: rgba(232, 65, 10, 0.14);
  border-color: var(--fire)
}

.fm-h {
  
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px
}

.fm-p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--ink2);
  overflow: hidden
}

.testi-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollLeft 44s linear infinite;
  margin-top: 8px;
}

.testi-track:hover {
  animation-play-state: paused
}

@keyframes scrollLeft {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.testi-card {
  width: 330px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.testi-card:hover {
  border-color: rgba(232, 65, 10, 0.4)
}

.testi-card::before {
  content: '\201C';
  
  font-size: 5rem;
  color: rgba(232, 65, 10, 0.12);
  position: absolute;
  top: 6px;
  left: 16px;
  line-height: 1;
}

.tc-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1
}

.tc-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1
}

.tc-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(36, 10, 232, 0.5);
}
.tc-av img{
  width: 100%;
  border-radius: 50%;
}
.tc-name {
  
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2px
}

.tc-course {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4)
}

/* ── COMPARISON ── */
#compare {
  background: var(--cream)
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 44px;
  border-radius: 16px;
  border: 1.5px solid var(--border2);
  background: #fff;
  box-shadow: var(--shadow2)
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px
}

.compare-table th {
  
  font-size: 1.2rem;
  padding: 20px 18px;
  text-align: center;
  border-bottom: 2px solid var(--border2);
  color: var(--ink);
}

.compare-table th:first-child {
  text-align: left
}

.compare-table th.rl {
  background: rgba(36, 10, 232, 0.08);
  border-left: 2px solid rgba(232, 65, 10, 0.2);
  border-right: 2px solid rgba(232, 65, 10, 0.2);
  color: var(--fire);
}

.compare-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border2);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500
}

.compare-table td.rl {
  background: rgba(232, 65, 10, 0.03);
  border-left: 2px solid rgba(232, 65, 10, 0.15);
  border-right: 2px solid rgba(232, 65, 10, 0.15);
}

.compare-table tr:hover td {
  background: rgba(232, 65, 10, 0.02)
}

.compare-table tr:last-child td {
  border-bottom: none
}

.cy {
  color: #16A34A;
  font-weight: 700
}

.cn {
  color: var(--light)
}

.cp {
  color: var(--fire2);
  font-size: 0.8rem;
  font-weight: 600
}

/* ── PRICING ── */
#pricing {
  background: #fff
}

.pricing-note {
  display: inline-block;
  background: rgba(36, 10, 232, 0.08);
  border: 1.5px solid rgba(232, 65, 10, 0.2);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 44px;
}

.pricing-note strong {
  color: var(--fire)
}

.pkg-table-outer {
  overflow-x: auto;
  border: 1.5px solid var(--border2);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow2);
}

.pkg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px
}

.pkg-fcol {
  width: 200px;
  padding: 28px 20px;
  vertical-align: bottom;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light);
  border-right: 1px solid var(--border2);
  text-align: left;
}

.pkg-col {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border2);
  vertical-align: top;
  min-width: 185px;
}

.pkg-col:last-child {
  border-right: none
}

.pkg-best {
  background: rgba(36, 10, 232, 0.08);
  border-left: 2px solid rgba(232, 65, 10, 0.35);
  border-right: 2px solid rgba(232, 65, 10, 0.35);
}

.pkg-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pkg-lang {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px
}

.pkg-tier {
  
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px
}

.pkg-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px
}

.pkg-was {
  font-size: 0.8rem;
  color: var(--light);
  text-decoration: line-through;
  margin-bottom: 4px
}

.pkg-price {
  
  font-size: 2rem;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 4px
}

.pkg-best .pkg-price {
  font-size: 2.3rem
}

.pkg-save {
  font-size: 0.72rem;
  color: #16A34A;
  font-weight: 700;
  margin-bottom: 16px
}

.pkg-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(232, 65, 10, 0.28);
}

.pkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 65, 10, 0.42)
}

.pkg-btn-outline {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.25s;
}

.pkg-btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire)
}

.pkg-table tbody tr {
  border-top: 1px solid var(--border2)
}

.pkg-table tbody tr:hover {
  background: rgba(232, 65, 10, 0.015)
}

.pkg-table tbody td {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text);
  border-right: 1px solid var(--border2);
  text-align: center;
}

.pkg-table tbody td:first-child {
  text-align: left;
  color: var(--muted);
  font-size: 0.83rem
}

.pkg-table tbody td.pkg-best {
  background: rgba(232, 65, 10, 0.025)
}

.pkg-table tbody td:last-child {
  border-right: none
}

.pkg-check {
  color: #16A34A;
  font-weight: 700;
  font-size: 1.2rem
}

.pkg-note {
  font-size: 0.68rem;
  color: var(--light)
}

.price-guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--muted);
}

.price-guarantee strong {
  color: var(--fire)
}

/* ── FAQ ── */
#faq {
  background: var(--cream)
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start
}

.faq-sticky {
  position: sticky;
  top: 90px
}

.btn-support {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-support:hover {
  border-color: var(--fire);
  color: var(--fire)
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.faq-item {
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
  background: #fff;
}

.faq-item.open {
  border-color: var(--fire)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(232, 65, 10, 0.03)
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  transform: rotate(45deg)
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease)
}

.faq-ans-inner {
  padding: 0 22px 20px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SEO SECTION ── */
#seo {
  background: #fff
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px
}

.seo-h2 {
  font-size: clamp(2.3rem, 2vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.seo-h2 span {
  color: var(--fire)
}

.seo-p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px
}

.seo-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px
}

.seo-icon {
  background: rgba(36, 10, 232, 0.08);
  border: 1.5px solid rgba(232, 65, 10, 0.2);
  border-radius: 8px;
  padding: 7px 10px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.seo-feat-t {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px
}

.seo-feat-d {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.5
}

.seo-divider {
  border-top: 1px solid var(--border2);
  margin-bottom: 44px
}

.seo-cards-h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
}

.seo-cards-h2 span {
  color: var(--fire)
}

.seo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.seo-card {
  background: var(--cream);
  border: 1.5px solid var(--border2);
  padding: 22px;
  border-radius: 12px;
  transition: all 0.2s;
}

.seo-card:hover {
  border-color: var(--fire);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(36, 10, 232, 0.08)
}

.seo-card-flag {
  font-size: 1.7rem;
  margin-bottom: 9px;
  line-height: 1
}

.seo-card-title {
  
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px
}

.seo-card-desc {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5
}

/* ── CTA ── */
#cta {
  background: var(--ink2);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  text-align: center
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 65, 10, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.cta-h2 {
  
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.cta-h2 span {
  color: var(--orange)
}

.cta-p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 36px
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.cta-fine {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em
}

.cta-fine span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.12)
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 5% 32px
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px
}

.footer-brand .logo {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px
}

.footer-brand p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  max-width: 255px;
  margin-bottom: 22px
}

.socials {
  display: flex;
  gap: 8px
}

.sb2 {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.2s;
}

.sb2:hover {
  border-color: var(--fire);
  color: var(--fire)
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255);
  transition: color 0.2s
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255)
}

.footer-legal {
  display: flex;
  gap: 18px
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255);
  transition: color 0.2s
}

.footer-legal a:hover {
  color: rgba(255, 255, 255)
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 60px
  }

  .hero-right {
    padding-top: 0
  }

  .how-layout {
    grid-template-columns: 1fr
  }

  .how-mock {
    display: none
  }

  .feat-block {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .feat-mini-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-sticky {
    position: static
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .seo-grid {
    gap: 36px
  }
}

@media(max-width:900px) {
  .langs-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .seo-grid {
    grid-template-columns: 1fr
  }

  .seo-cards-grid {
    grid-template-columns: 1fr 1fr
  }

  .feat-mini-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .ham {
    display: flex
  }

  .hero-h1 {
    font-size: 2.6rem
  }

  .stats-inner .stat-item:not(:last-child)::after {
    display: none
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .section {
    padding: 40px 18px
  }
}

@media(max-width:540px) {
  .hero-left {
    padding: 10px 0;
}
  .section {
    padding: 30px 15px
  }

  .langs-grid {
    grid-template-columns: 1fr
  }

  .hero-h1 {
    font-size: 2.2rem
  }

  .lang-grid {
    grid-template-columns: 1fr
  }

  .hero-ctas {
    flex-direction: column
  }

  .hero-ctas .btn-hero,
  .hero-ctas .btn-outline {
    text-align: center;
    justify-content: center
  }

  .seo-cards-grid {
    grid-template-columns: 1fr
  }

  .feat-mini-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    justify-content: center;
    text-align: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }
}