/* ═══════════════════════════════════════════════════════
   EnglishWithCliff — Master Stylesheet v2.0
   Warm Premium Design System
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,400;1,9..40,500&display=swap');

:root {
  --cream: #FAF8F4;
  --cream-dark: #F5F0E8;
  --sand: #EDE6D8;
  --white: #FFFFFF;
  --orange: #E8652B;
  --orange-hover: #D4561F;
  --orange-light: #FFF2ED;
  --orange-soft: rgba(232,101,43,0.08);
  --charcoal: #1B2A4A;
  --text: #3A3A3A;
  --text-muted: #7A7A7A;
  --text-faint: #A0A0A0;
  --border: #E8E2D8;
  --border-light: #F0ECE4;
  --green: #2EAF6A;
  --green-light: #E8F8EF;
  --gold: #E8A820;
  --gold-light: #FEF8E8;
  --purple: #6C5CE7;
  --purple-light: #F0EEFF;
  --blue: #2B7DE9;
  --blue-light: #E8F1FE;
  --rose: #E8366D;
  --rose-light: #FEE8F0;
  --shadow-warm-sm: 0 1px 3px rgba(180,160,130,0.06);
  --shadow-warm: 0 4px 16px rgba(180,160,130,0.08);
  --shadow-warm-md: 0 8px 24px rgba(180,160,130,0.1);
  --shadow-warm-lg: 0 12px 40px rgba(180,160,130,0.12);
  --shadow-btn: 0 2px 8px rgba(232,101,43,0.2), 0 6px 20px rgba(232,101,43,0.12);
  --radius: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 99px;
  --font: 'DM Sans', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:var(--font); background:var(--cream); color:var(--text); line-height:1.6; overflow-x:hidden; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
button, input, textarea, select { font-family:var(--font); }
button { cursor:pointer; border:none; outline:none; }
ul, ol { list-style:none; }

.container { max-width:1200px; margin:0 auto; padding:0 32px; }
.section { padding:90px 0; position:relative; }
.section--cream { background:var(--cream); }
.section--white { background:var(--white); }
.section--sand { background:var(--cream-dark); }

/* Section Headers */
.sh { text-align:center; margin-bottom:48px; }
.sh-title { font-size:clamp(26px,4vw,36px); font-weight:800; color:var(--charcoal); letter-spacing:-0.03em; line-height:1.2; margin-bottom:8px; }
.sh-sub { font-size:16px; color:var(--text-muted); max-width:480px; margin:0 auto; line-height:1.7; }

/* ═══ BUTTONS ═══ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 26px; border-radius:var(--radius); font-size:15px; font-weight:700; transition:var(--transition); position:relative; white-space:nowrap; }
.btn-primary { background:var(--orange); color:var(--white); box-shadow:var(--shadow-btn); }
.btn-primary:hover { background:var(--orange-hover); transform:translateY(-2px); box-shadow:0 4px 12px rgba(232,101,43,0.25), 0 8px 28px rgba(232,101,43,0.15); }
.btn-outline { background:var(--white); color:var(--text); border:1.5px solid var(--border); }
.btn-outline:hover { border-color:#ccc; background:#FEFEFE; transform:translateY(-2px); box-shadow:var(--shadow-warm); }
.btn-ghost { background:transparent; color:var(--text-muted); padding:13px 16px; }
.btn-ghost:hover { color:var(--charcoal); }
.btn-sm { padding:9px 18px; font-size:13px; border-radius:10px; }
.btn-lg { padding:16px 32px; font-size:16px; }

/* ═══ PILLS / BADGES ═══ */
.pill { display:inline-flex; align-items:center; gap:6px; padding:5px 14px; border-radius:var(--radius-pill); font-size:12px; font-weight:700; }
.pill-orange { background:var(--orange-light); color:var(--orange); }
.pill-green { background:var(--green-light); color:var(--green); }
.pill-gold { background:var(--gold-light); color:var(--gold); }
.pill-charcoal { background:rgba(27,42,74,0.06); color:var(--charcoal); }

/* ═══ CARDS ═══ */
.card { background:var(--white); border-radius:var(--radius-lg); border:1px solid var(--border-light); box-shadow:var(--shadow-warm-sm); transition:var(--transition); overflow:hidden; }
.card:hover { box-shadow:var(--shadow-warm-md); transform:translateY(-4px); }
.card--flat:hover { transform:none; box-shadow:var(--shadow-warm-sm); }

/* ═══ NAVIGATION ═══ */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(250,248,244,0.88); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid transparent; transition:var(--transition); }
.nav.scrolled { border-bottom-color:var(--border-light); box-shadow:0 1px 8px rgba(180,160,130,0.06); }
.nav-inner { max-width:1200px; margin:0 auto; padding:0 32px; display:flex; align-items:center; justify-content:space-between; height:68px; }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-icon { width:38px; height:38px; border-radius:11px; background:var(--orange); display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(232,101,43,0.2); position:relative; overflow:hidden; }
.nav-logo-icon::after { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(135deg,rgba(255,255,255,0.15),transparent); }
.nav-logo-icon svg { width:20px; height:20px; fill:white; position:relative; z-index:1; }
.nav-logo-text { display:flex; flex-direction:column; }
.nav-logo-name { font-size:17px; font-weight:800; color:var(--charcoal); letter-spacing:-0.02em; line-height:1.1; }
.nav-logo-tagline { font-size:10px; color:var(--text-muted); font-weight:500; letter-spacing:0.02em; }
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links a { font-size:14px; font-weight:600; color:var(--text-muted); padding:8px 14px; border-radius:10px; transition:var(--transition); }
.nav-links a:hover, .nav-links a.active { color:var(--charcoal); background:rgba(27,42,74,0.04); }
.nav-links .dropdown { position:relative; }
.nav-links .dropdown-chevron { font-size:10px; margin-left:2px; transition:var(--transition); }
.nav-right { display:flex; align-items:center; gap:8px; }
.nav-right .btn-login { font-size:14px; font-weight:600; color:var(--text-muted); background:none; border:none; padding:8px 16px; border-radius:10px; transition:var(--transition); }
.nav-right .btn-login:hover { color:var(--charcoal); background:rgba(27,42,74,0.04); }
.nav-right .btn { font-size:13px; padding:9px 20px; }

/* Mobile hamburger */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; cursor:pointer; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--charcoal); border-radius:2px; transition:var(--transition); }
.mobile-menu { display:none; position:fixed; top:68px; left:0; right:0; bottom:0; background:rgba(250,248,244,0.98); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); z-index:999; padding:24px; overflow-y:auto; }
.mobile-menu.open { display:flex; flex-direction:column; gap:4px; animation:slideDown 0.3s ease; }
.mobile-menu a { display:block; padding:14px 16px; font-size:16px; font-weight:600; color:var(--text-muted); border-radius:var(--radius); transition:var(--transition); }
.mobile-menu a:hover { background:var(--white); color:var(--charcoal); }
.mobile-menu .btn-primary { margin-top:16px; text-align:center; }

/* ═══ HERO ═══ */
.hero { padding:140px 0 80px; position:relative; overflow:hidden; background:linear-gradient(135deg, var(--cream) 0%, #FDF6F0 40%, var(--cream-dark) 100%); }
.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; position:relative; z-index:1; }
.hero-text { max-width:520px; }
.hero-trust { display:flex; align-items:center; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.hero-trust-item { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--text-muted); }
.hero-trust-item .star { color:var(--gold); }
.hero-trust-flags { display:flex; gap:4px; font-size:16px; }
.hero-headline { font-size:clamp(36px,5.5vw,52px); font-weight:900; line-height:1.06; letter-spacing:-0.04em; color:var(--charcoal); margin-bottom:18px; font-style:italic; }
.hero-subtitle { font-size:17px; color:var(--text-muted); line-height:1.7; margin-bottom:32px; max-width:420px; }
.hero-btns { display:flex; gap:12px; margin-bottom:24px; flex-wrap:wrap; }
.hero-scroll { display:flex; justify-content:center; margin-top:24px; }
.hero-scroll-icon { width:32px; height:32px; display:flex; align-items:center; justify-content:center; color:var(--text-faint); animation:bounceDown 2s ease-in-out infinite; font-size:18px; }

/* Hero Image */
.hero-visual { position:relative; min-height:460px; }
.hero-img-wrapper { position:relative; width:100%; height:460px; border-radius:0 0 0 var(--radius-xl); overflow:hidden; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.hero-img-placeholder { width:100%; height:100%; background:linear-gradient(135deg,#F0D8C4,#E8C8A8); display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--text-muted); }
.hero-img-overlay { position:absolute; top:0; left:0; width:40%; height:100%; background:linear-gradient(90deg, var(--cream) 0%, rgba(250,248,244,0.6) 60%, transparent 100%); pointer-events:none; }

/* ═══ FEATURES BAR ═══ */
.features-bar { padding:40px 0; border-bottom:1px solid var(--border-light); background:var(--white); }
.features-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.feat { text-align:center; padding:16px 8px; border-radius:var(--radius); transition:var(--transition); cursor:default; }
.feat:hover { background:var(--cream); }
.feat-icon { width:46px; height:46px; border-radius:12px; margin:0 auto 10px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.feat-icon--orange { background:var(--orange-light); }
.feat-icon--purple { background:var(--purple-light); }
.feat-icon--green { background:var(--green-light); }
.feat-icon--blue { background:var(--blue-light); }
.feat-icon--gold { background:var(--gold-light); }
.feat-icon--rose { background:var(--rose-light); }
.feat-name { font-size:13px; font-weight:700; color:var(--charcoal); margin-bottom:2px; }
.feat-desc { font-size:11px; color:var(--text-muted); }

/* ═══ PATH CARDS ═══ */
.paths-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.path-card { display:grid; grid-template-columns:1fr 1fr; overflow:hidden; cursor:pointer; min-height:200px; }
.path-img { position:relative; overflow:hidden; }
.path-img-bg { width:100%; height:100%; object-fit:cover; }
.path-img-placeholder { width:100%; height:100%; min-height:200px; }
.path-img-placeholder--1 { background:linear-gradient(135deg,#F0D8C4,#E0C4A0); }
.path-img-placeholder--2 { background:linear-gradient(135deg,#C8D4E8,#A8B8D8); }
.path-img-placeholder--3 { background:linear-gradient(135deg,#C8E8D0,#A8D8B0); }
.path-icon { position:absolute; bottom:-18px; right:-18px; width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; box-shadow:var(--shadow-warm); z-index:2; }
.path-icon--orange { background:var(--orange-light); }
.path-icon--blue { background:var(--blue-light); }
.path-icon--green { background:var(--green-light); }
.path-body { padding:24px; display:flex; flex-direction:column; justify-content:center; }
.path-name { font-size:17px; font-weight:800; color:var(--charcoal); margin-bottom:6px; line-height:1.2; }
.path-desc { font-size:13px; color:var(--text-muted); line-height:1.6; margin-bottom:12px; }
.path-arrow { font-size:13px; font-weight:700; color:var(--orange); display:inline-flex; align-items:center; gap:4px; transition:var(--transition); }
.path-card:hover .path-arrow { gap:10px; }

/* ═══ LESSON PREVIEW ═══ */
.lesson-section { padding:90px 0; background:var(--white); }
.lesson-grid { display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:center; }
.lesson-mockup { background:var(--white); border-radius:var(--radius-xl); box-shadow:var(--shadow-warm-lg); border:1px solid var(--border); overflow:hidden; }
.lesson-mockup-inner { display:grid; grid-template-columns:72px 1fr; }
.lm-sidebar { background:var(--charcoal); padding:16px 0; display:flex; flex-direction:column; align-items:center; gap:4px; }
.lm-sidebar-logo { width:32px; height:32px; border-radius:8px; background:var(--orange); display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.lm-sidebar-logo svg { width:16px; height:16px; fill:white; }
.lm-sidebar-item { width:52px; padding:8px 0; border-radius:10px; text-align:center; font-size:9px; font-weight:600; color:rgba(255,255,255,0.5); transition:var(--transition); cursor:pointer; }
.lm-sidebar-item:hover { color:rgba(255,255,255,0.8); background:rgba(255,255,255,0.06); }
.lm-sidebar-item.active { color:var(--orange); background:rgba(232,101,43,0.1); }
.lm-sidebar-item-icon { font-size:16px; display:block; margin-bottom:2px; }
.lm-main { padding:20px; }
.lm-header { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.lm-lesson-pill { font-size:11px; font-weight:700; padding:3px 10px; border-radius:6px; background:var(--orange); color:white; }
.lm-title { font-size:17px; font-weight:800; color:var(--charcoal); }
.lm-tabs { display:flex; gap:4px; margin-bottom:16px; border-bottom:1px solid var(--border-light); padding-bottom:10px; }
.lm-tab { font-size:12px; font-weight:600; color:var(--text-muted); padding:4px 10px; border-radius:6px; cursor:pointer; transition:var(--transition); }
.lm-tab.active { color:var(--charcoal); border-bottom:2px solid var(--orange); border-radius:6px 6px 0 0; }
.lm-content { display:grid; grid-template-columns:1fr 140px; gap:14px; }
.lm-video { border-radius:var(--radius); overflow:hidden; background:#1a1a1a; height:180px; position:relative; display:flex; align-items:center; justify-content:center; }
.lm-video-placeholder { width:100%; height:100%; background:linear-gradient(135deg,#2a3040,#1a2030); display:flex; align-items:center; justify-content:center; }
.lm-play { width:48px; height:48px; border-radius:50%; background:rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); }
.lm-play:hover { background:rgba(255,255,255,0.25); transform:scale(1.05); }
.lm-play::after { content:''; width:0; height:0; border-style:solid; border-width:8px 0 8px 14px; border-color:transparent transparent transparent white; margin-left:3px; }
.lm-speak { background:var(--cream); border-radius:var(--radius); padding:14px; text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; }
.lm-speak-title { font-size:12px; font-weight:700; color:var(--charcoal); }
.lm-mic { width:48px; height:48px; border-radius:14px; background:var(--orange-light); display:flex; align-items:center; justify-content:center; font-size:22px; cursor:pointer; transition:var(--transition); }
.lm-mic:hover { background:var(--orange); transform:scale(1.05); }
.lm-mic:hover .lm-mic-icon { filter:brightness(10); }
.lm-speak-hint { font-size:10px; color:var(--text-muted); line-height:1.4; }
.lm-subs { margin-top:12px; padding:10px 14px; background:var(--cream); border-radius:var(--radius); font-size:12px; color:var(--text); }
.lm-subs-en { margin-bottom:4px; }
.lm-subs-trans { color:var(--text-muted); font-style:italic; }
.lm-subs-controls { display:flex; align-items:center; gap:8px; margin-top:6px; font-size:11px; color:var(--text-muted); }
.lm-subs-toggle { width:32px; height:18px; border-radius:9px; background:var(--border); position:relative; cursor:pointer; transition:var(--transition); }
.lm-subs-toggle.on { background:var(--orange); }
.lm-subs-toggle::after { content:''; position:absolute; top:2px; left:2px; width:14px; height:14px; border-radius:50%; background:white; transition:var(--transition); box-shadow:0 1px 2px rgba(0,0,0,0.15); }
.lm-subs-toggle.on::after { left:16px; }
.lm-waveform { height:24px; margin-top:10px; background:var(--charcoal); border-radius:6px; position:relative; overflow:hidden; display:flex; align-items:center; padding:0 10px; }
.lm-wave-bars { display:flex; align-items:center; gap:2px; flex:1; height:16px; }
.lm-wave-bar { width:3px; border-radius:2px; background:var(--orange); opacity:0.6; }
.lm-controls { display:flex; align-items:center; justify-content:space-between; margin-top:10px; font-size:11px; color:var(--text-muted); }
.lm-play-btn { width:36px; height:36px; border-radius:50%; background:var(--orange); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 2px 8px rgba(232,101,43,0.3); }
.lm-play-btn::after { content:''; width:0; height:0; border-style:solid; border-width:6px 0 6px 10px; border-color:transparent transparent transparent white; margin-left:2px; }
.lm-ctrl-btn { font-size:14px; cursor:pointer; opacity:0.6; transition:var(--transition); }
.lm-ctrl-btn:hover { opacity:1; }

/* Lesson Features */
.lesson-features { display:flex; flex-direction:column; gap:24px; }
.lf-item { display:flex; gap:16px; align-items:flex-start; }
.lf-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.lf-icon--mic { background:var(--orange-light); }
.lf-icon--chat { background:var(--blue-light); }
.lf-icon--path { background:var(--green-light); }
.lf-name { font-size:16px; font-weight:700; color:var(--charcoal); margin-bottom:4px; }
.lf-desc { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ═══ TESTIMONIALS ═══ */
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; position:relative; }
.test-nav { position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; background:var(--white); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--text-muted); cursor:pointer; box-shadow:var(--shadow-warm-sm); transition:var(--transition); z-index:2; }
.test-nav:hover { box-shadow:var(--shadow-warm); color:var(--charcoal); }
.test-nav--left { left:-18px; }
.test-nav--right { right:-18px; }
.test-card { border-radius:var(--radius-lg); overflow:hidden; background:var(--white); border:1px solid var(--border-light); box-shadow:var(--shadow-warm-sm); transition:var(--transition); }
.test-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-warm-md); }
.test-img { height:160px; position:relative; overflow:hidden; }
.test-img-bg { width:100%; height:100%; object-fit:cover; }
.test-img-placeholder { width:100%; height:100%; }
.test-img-placeholder--1 { background:linear-gradient(135deg,#F0D4C0,#E0C0A0); }
.test-img-placeholder--2 { background:linear-gradient(135deg,#D0D8E8,#B8C4D8); }
.test-img-placeholder--3 { background:linear-gradient(135deg,#C8E0C8,#A8D0A8); }
.test-flag { position:absolute; top:10px; right:10px; font-size:20px; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-warm-sm); }
.test-play { position:absolute; bottom:10px; left:10px; width:40px; height:40px; border-radius:50%; background:rgba(232,101,43,0.9); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 2px 8px rgba(232,101,43,0.3); transition:var(--transition); }
.test-play:hover { background:var(--orange); transform:scale(1.08); }
.test-play::after { content:''; width:0; height:0; border-style:solid; border-width:6px 0 6px 10px; border-color:transparent transparent transparent white; margin-left:2px; }
.test-body { padding:20px; }
.test-quote { font-size:14px; color:var(--text); line-height:1.7; margin-bottom:14px; font-style:italic; }
.test-bottom { display:flex; align-items:center; justify-content:space-between; }
.test-author { font-size:14px; font-weight:700; color:var(--charcoal); }
.test-stars { font-size:12px; color:var(--gold); letter-spacing:1px; }
.test-rating { font-size:13px; font-weight:700; color:var(--charcoal); margin-left:6px; }

/* ═══ PRICING ═══ */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:start; }
.price-card { padding:32px; display:flex; flex-direction:column; }
.price-card--featured { border:2px solid var(--orange); box-shadow:var(--shadow-warm-md); position:relative; transform:scale(1.02); }
.price-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); padding:4px 16px; border-radius:var(--radius-pill); font-size:11px; font-weight:800; letter-spacing:0.04em; background:var(--orange); color:white; white-space:nowrap; }
.price-tier { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:10px; }
.price-amount { display:flex; align-items:baseline; gap:4px; margin-bottom:4px; }
.price-num { font-size:42px; font-weight:900; color:var(--charcoal); }
.price-period { font-size:14px; color:var(--text-muted); }
.price-desc { font-size:13px; color:var(--text-muted); margin-bottom:24px; }
.price-features { flex:1; margin-bottom:24px; }
.price-feat { display:flex; align-items:flex-start; gap:10px; padding:7px 0; font-size:14px; color:var(--text); }
.price-check { font-size:14px; margin-top:1px; flex-shrink:0; }
.price-card .btn { width:100%; }
.price-guarantee { text-align:center; font-size:13px; color:var(--text-muted); margin-top:32px; line-height:1.7; }

/* ═══ FOOTER ═══ */
.footer { padding:56px 0 24px; background:var(--cream); border-top:1px solid var(--border); }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.3fr; gap:32px; margin-bottom:40px; }
.footer-brand { max-width:260px; }
.footer-brand p { font-size:13px; color:var(--text-muted); line-height:1.7; margin-top:14px; }
.footer-socials { display:flex; gap:8px; margin-top:16px; }
.footer-socials a { width:34px; height:34px; border-radius:9px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--text-muted); transition:var(--transition); }
.footer-socials a:hover { background:var(--orange-light); color:var(--orange); }
.footer-col-title { font-size:12px; font-weight:700; color:var(--charcoal); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:14px; }
.footer-links a { display:block; font-size:13px; color:var(--text-muted); padding:4px 0; transition:var(--transition); }
.footer-links a:hover { color:var(--orange); }
.footer-newsletter p { font-size:12px; color:var(--text-muted); line-height:1.6; margin-bottom:10px; }
.footer-newsletter-form { display:flex; gap:6px; }
.footer-newsletter-form input { flex:1; padding:9px 14px; border-radius:10px; border:1.5px solid var(--border); font-size:13px; outline:none; background:var(--white); transition:var(--transition); }
.footer-newsletter-form input:focus { border-color:var(--orange); }
.footer-newsletter-form button { width:36px; height:36px; border-radius:10px; background:var(--orange); color:white; border:none; font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--transition); box-shadow:0 2px 6px rgba(232,101,43,0.2); }
.footer-newsletter-form button:hover { background:var(--orange-hover); }
.footer-apps { display:flex; gap:8px; margin-top:12px; }
.footer-app-badge { height:36px; border-radius:8px; background:var(--charcoal); color:white; padding:0 12px; display:flex; align-items:center; gap:6px; font-size:10px; cursor:pointer; transition:var(--transition); }
.footer-app-badge:hover { background:#2a3a5a; }
.footer-app-badge-label { display:flex; flex-direction:column; line-height:1.2; }
.footer-app-badge-small { font-size:7px; opacity:0.7; }
.footer-app-badge-name { font-size:11px; font-weight:700; }
.footer-bottom { display:flex; align-items:center; justify-content:center; gap:24px; padding-top:24px; border-top:1px solid var(--border-light); }
.footer-bottom a { font-size:12px; color:var(--text-muted); transition:var(--transition); }
.footer-bottom a:hover { color:var(--orange); }
.footer-bottom span { font-size:12px; color:var(--border); }

/* ═══ ABOUT PAGE ═══ */
.about-hero { padding:140px 0 60px; text-align:center; background:linear-gradient(180deg,var(--cream),var(--cream-dark)); }
.about-avatar { width:120px; height:120px; border-radius:50%; margin:0 auto 24px; background:linear-gradient(135deg,var(--orange-light),#FDE4D2); display:flex; align-items:center; justify-content:center; font-size:48px; font-weight:900; color:var(--orange); border:4px solid var(--white); box-shadow:var(--shadow-warm-md); }
.about-name { font-size:36px; font-weight:900; color:var(--charcoal); letter-spacing:-0.03em; margin-bottom:8px; }
.about-role { font-size:16px; color:var(--text-muted); margin-bottom:32px; }
.about-content { max-width:680px; margin:0 auto; }
.about-content p { font-size:17px; color:var(--text); line-height:1.85; margin-bottom:24px; }
.about-content strong { color:var(--charcoal); }
.about-values { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin:48px 0; }

/* ═══ CONTACT PAGE ═══ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-label { font-size:13px; font-weight:600; color:var(--charcoal); }
.form-input, .form-textarea { padding:12px 16px; border-radius:var(--radius); border:1.5px solid var(--border); font-size:14px; font-family:var(--font); outline:none; background:var(--white); transition:var(--transition); }
.form-input:focus, .form-textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px var(--orange-soft); }
.form-textarea { min-height:140px; resize:vertical; }
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-item-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }

/* ═══ ANIMATIONS ═══ */
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.anim { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity:1; transform:translateY(0); }
.anim-d1 { transition-delay:0.1s; }
.anim-d2 { transition-delay:0.2s; }
.anim-d3 { transition-delay:0.3s; }
.anim-d4 { transition-delay:0.4s; }

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero { padding:120px 0 60px; }
  .features-grid { grid-template-columns:repeat(3,1fr); }
  .paths-grid { grid-template-columns:1fr; }
  .path-card { grid-template-columns:200px 1fr; }
  .lesson-grid { grid-template-columns:1fr; }
  .lesson-features { margin-top:32px; }
  .test-grid { grid-template-columns:1fr 1fr; }
  .test-nav { display:none; }
  .pricing-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .price-card--featured { transform:none; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
  .contact-grid { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .container { padding:0 20px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .nav-right .btn-login { display:none; }
  .section { padding:64px 0; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .path-card { grid-template-columns:1fr; }
  .path-img-placeholder { min-height:160px; }
  .lesson-mockup-inner { grid-template-columns:1fr; }
  .lm-sidebar { flex-direction:row; padding:10px 16px; overflow-x:auto; }
  .lm-content { grid-template-columns:1fr; }
  .lm-speak { flex-direction:row; text-align:left; }
  .test-grid { grid-template-columns:1fr; max-width:360px; margin:0 auto; }
  .hero-headline { font-size:32px; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .footer-grid { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .hero-trust { flex-direction:column; align-items:flex-start; }
  .features-grid { grid-template-columns:1fr 1fr; gap:8px; }
}
