/* ==========================================
   UkeStart — Main Stylesheet
   ========================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #2A9D8F;
  --teal-dark: #1e7a6e;
  --teal-light: #e0f4f1;
  --teal-xlight: #f2faf9;
  --coral: #E76F51;
  --coral-dark: #c85a3d;
  --sand: #F4A261;
  --cream: #FAFAF7;
  --off-white: #F5F5F0;
  --dark: #264653;
  --dark-mid: #3d6370;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-xlight: #F9FAFB;
  --white: #FFFFFF;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(38, 70, 83, 0.08), 0 1px 2px rgba(38, 70, 83, 0.04);
  --shadow: 0 4px 16px rgba(38, 70, 83, 0.10), 0 1px 4px rgba(38, 70, 83, 0.06);
  --shadow-lg: 0 12px 40px rgba(38, 70, 83, 0.14), 0 4px 12px rgba(38, 70, 83, 0.08);

  --transition: 0.22s ease;
  --max-w: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.2) 0%, rgba(38, 70, 83, 0.0) 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(42, 157, 143, 0.25);
  border: 1px solid rgba(42, 157, 143, 0.5);
  color: #7ECFC8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: #7ECFC8;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.hero-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hero-input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.12);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.hero-stats {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
}

.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7ECFC8;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.section-problem {
  padding: 80px 0;
  background: var(--off-white);
}

.section-problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--dark);
}

.problem-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.problem-image-wrap {
  position: relative;
}

.problem-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
  position: absolute;
}

.pill-badge.bottom-left {
  bottom: -18px;
  left: 24px;
}

.pill-icon {
  font-size: 1.1rem;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */

.section-steps {
  padding: 88px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  line-height: 1.2;
}

.section-header p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num::before {
  content: attr(data-num);
  background: var(--teal-light);
  color: var(--teal-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================
   COURSE FORMAT
   ========================================== */

.section-format {
  padding: 88px 0;
  background: var(--teal-xlight);
}

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.format-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.format-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-mid);
}

.feature-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='white'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ==========================================
   CURRICULUM
   ========================================== */

.section-curriculum {
  padding: 88px 0;
  background: var(--off-white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.curriculum-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.curriculum-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.curriculum-week {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 2px;
}

.curriculum-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.curriculum-item p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ==========================================
   FOR WHOM
   ========================================== */

.section-forwhom {
  padding: 88px 0;
  background: var(--cream);
}

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

.forwhom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-light);
  text-align: center;
}

.forwhom-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.forwhom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.forwhom-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ==========================================
   TEACHER
   ========================================== */

.section-teacher {
  padding: 88px 0;
  background: var(--dark);
  color: var(--white);
}

.teacher-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.teacher-image-wrap {
  flex-shrink: 0;
}

.teacher-image {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(42, 157, 143, 0.4);
}

.teacher-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ECFC8;
  margin-bottom: 14px;
}

.teacher-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.teacher-title {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.teacher-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 560px;
}

.teacher-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.teacher-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.teacher-fact-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #7ECFC8;
  letter-spacing: -0.5px;
}

.teacher-fact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ==========================================
   RESULTS
   ========================================== */

.section-results {
  padding: 88px 0;
  background: var(--off-white);
}

.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--dark);
}

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--dark-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.result-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 1px;
}

.results-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   FAQ
   ========================================== */

.section-faq {
  padding: 88px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--gray-xlight);
}

.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%232A9D8F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 4px 24px 22px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ==========================================
   LEAD FORM SECTION
   ========================================== */

.section-form {
  padding: 96px 0;
  background: linear-gradient(135deg, #1e3a44 0%, var(--dark) 50%, #1a4a42 100%);
  color: var(--white);
}

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.form-wrap .form-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.form-input {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.1);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

select.form-input option {
  background: var(--dark);
  color: var(--white);
}

.btn-submit {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  width: 100%;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.35);
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.4);
}

.form-privacy {
  text-align: center;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  line-height: 1.6;
}

.form-privacy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: #1a2e36;
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--teal);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-company {
  font-size: 0.77rem;
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.77rem;
  text-align: right;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 46, 54, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.cookie-text a {
  color: #7ECFC8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-cookie {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cookie:hover {
  background: var(--teal-dark);
}

/* ==========================================
   SUCCESS PAGE
   ========================================== */

.success-page {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--white);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(42, 157, 143, 0.2);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-icon svg {
  stroke: var(--teal);
}

.success-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-page p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}

.btn-back:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.legal-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--dark);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    gap: 40px;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .section-problem .container,
  .format-inner,
  .results-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-image-wrap {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .forwhom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .teacher-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teacher-image {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }

  .teacher-facts {
    justify-content: center;
  }

  .teacher-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-cta {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-stats-inner {
    gap: 28px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-row {
    flex-direction: column;
  }

  .hero-input {
    min-width: unset;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
