/* =====================================================
   Creathome — Онлайн-обучение домашнему творчеству
   styles.css
   ===================================================== */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:    #faf6f0;
  --warm-bg:  #f5ede0;
  --terracotta: #c96442;
  --terracotta-dark: #a84f32;
  --terracotta-light: #e87d58;
  --sage:     #6b8a72;
  --sage-dark: #4e6954;
  --sand:     #d4b896;
  --brown:    #5c3d2e;
  --text:     #2d1f15;
  --text-muted: #7a6155;
  --white:    #ffffff;
  --border:   #e5d5c5;
  --shadow:   rgba(92, 61, 46, 0.10);
  --shadow-md: rgba(92, 61, 46, 0.16);

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Arial', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --max-w: 1160px;
  --section-gap: 96px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

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

section {
  padding: var(--section-gap) 0;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-align: center;
  line-height: 1.3;
}

.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-md); }
.btn:active { transform: translateY(0);    box-shadow: none; }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-secondary:hover { background: var(--terracotta); color: var(--white); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-large {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 16px var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-bg) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,100,66,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,100,66,0.10);
  border: 1px solid rgba(201,100,66,0.25);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item .icon {
  font-size: 1.2rem;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px var(--shadow-md);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.float-icon {
  font-size: 2rem;
}

.float-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.float-label strong {
  display: block;
  font-size: 1rem;
  color: var(--brown);
}

/* ── Value Props ──────────────────────────────────── */
.values {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 12px;
}

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

.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Audience ─────────────────────────────────────── */
.audience {
  background: var(--warm-bg);
}

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

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.audience-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.audience-list li .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  margin-top: 1px;
}

.audience-list li .text strong {
  display: block;
  color: var(--brown);
  margin-bottom: 2px;
}

.audience-list li .text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.audience-img {
  position: relative;
}

.audience-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 20px 50px var(--shadow-md);
}

.audience-img-badge {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--sage);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(107,138,114,0.35);
}

/* ── Directions ───────────────────────────────────── */
.directions {
  background: var(--white);
}

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

.direction-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.direction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
}

.direction-cover {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.direction-cover.knit  { background: linear-gradient(135deg, #f5e6d8, #e8c9a8); }
.direction-cover.paint { background: linear-gradient(135deg, #ddf0e8, #b8dfc8); }
.direction-cover.sew   { background: linear-gradient(135deg, #f0e0f5, #d9b8e8); }
.direction-cover.decor { background: linear-gradient(135deg, #fdf0d8, #f5d8a0); }
.direction-cover.clay  { background: linear-gradient(135deg, #e8e0d5, #cdbfa8); }
.direction-cover.emb   { background: linear-gradient(135deg, #fde8e8, #f5b8b8); }

.direction-body {
  padding: 20px;
}

.direction-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.direction-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.direction-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(201,100,66,0.10);
  color: var(--terracotta);
}

/* ── Process ──────────────────────────────────────── */
.process {
  background: var(--warm-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--sage));
  pointer-events: none;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px var(--shadow);
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Results ──────────────────────────────────────── */
.results {
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.result-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.result-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.result-text h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.result-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Social Proof ─────────────────────────────────── */
.social-proof {
  background: var(--warm-bg);
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--border);
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-avatar.t1 { background: #fde8e0; }
.author-avatar.t2 { background: #e0f0e8; }
.author-avatar.t3 { background: #e8e0f5; }

.author-name {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.author-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ── Stats strip ──────────────────────────────────── */
.stats-strip {
  background: var(--brown);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta-light);
  line-height: 1;
  margin-bottom: 6px;
}

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

/* ── FAQ ──────────────────────────────────────────── */
.faq {
  background: var(--white);
}

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

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

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

.faq-question:hover { background: var(--cream); }
.faq-question.open  { background: var(--warm-bg); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--warm-bg);
}

.faq-answer.open { display: block; }

/* ── Lead Form ────────────────────────────────────── */
.lead-form-section {
  background: linear-gradient(160deg, var(--warm-bg) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(107,138,114,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.lead-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.lead-form-header {
  text-align: center;
  margin-bottom: 44px;
}

.lead-form-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: 0 16px 52px var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201,100,66,0.12);
  background: var(--white);
}

.field textarea { min-height: 100px; resize: vertical; }

.field-full { grid-column: 1 / -1; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent a {
  color: var(--terracotta);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Trust strip ──────────────────────────────────── */
.trust-strip {
  background: var(--brown);
  padding: 48px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
}

.trust-item-strip .icon {
  font-size: 2rem;
}

.trust-item-strip h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0;
}

.trust-item-strip p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ── CTA Strip ────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 32px; }

.cta-strip .btn {
  background: var(--white);
  color: var(--terracotta);
}
.cta-strip .btn:hover {
  background: var(--cream);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #1e120b;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin-right: 16px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--terracotta-light); }

.footer-company {
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: right;
  color: rgba(255,255,255,0.4);
}

/* ── Cookie Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 600px;
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 12px 44px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.cookie-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--sand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.cookie-accept:hover { background: var(--terracotta-dark); }

.cookie-dismiss {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.cookie-dismiss:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── Pages: Legal ─────────────────────────────────── */
.page-hero {
  padding-top: 108px;
  padding-bottom: 48px;
  background: var(--warm-bg);
  border-bottom: 1px solid var(--border);
}

.page-hero .label { margin-bottom: 6px; }
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }

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

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content p, .legal-content li {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 1rem;
}

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

.legal-content .company-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* ── Success Page ─────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-bg) 100%);
  padding: 40px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 52px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px var(--shadow-md);
  border: 1px solid var(--border);
}

.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.success-card p + p {
  margin-top: 8px;
}

.success-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; }
  .hero-float-card { display: none; }
  .hero-content { max-width: 100%; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-img { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-strip-grid { grid-template-columns: 1fr; }

  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-company { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 2.2rem; }
  .success-card { padding: 36px 24px; }
}
