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

:root {
  --clr-bg: #faf8f5;
  --clr-bg-warm: #f4f0ea;
  --clr-bg-section: #f0ebe3;
  --clr-text: #2a231c;
  --clr-text-secondary: #5c4d3e;
  --clr-text-muted: #8a7060;
  --clr-accent: #8b5e3c;
  --clr-accent-light: #c49672;
  --clr-accent-hover: #7a5031;
  --clr-border: #d9cfc3;
  --clr-border-light: #ede6db;
  --clr-white: #ffffff;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(42,35,28,0.08);
  --shadow-md: 0 4px 16px rgba(42,35,28,0.10);
  --transition: 0.2s ease;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--clr-accent); text-decoration: none; }
a:hover { color: var(--clr-accent-hover); }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--clr-text);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-accent-hover);
  color: var(--clr-white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.btn-full { width: 100%; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--clr-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--clr-accent); }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-bg);
  flex-direction: column;
  padding: 32px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--clr-text);
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 0;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
}

/* ===== HERO ===== */
.hero {
  padding: 72px 0 64px;
  overflow: hidden;
}

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

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

.hero-headline {
  margin-bottom: 24px;
}

.hero-subline {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--clr-text-secondary);
  font-weight: 500;
}
.badge::before { content: '✓'; color: var(--clr-accent); font-weight: 700; }

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

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
}

.hero-image-badge strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--clr-accent);
  line-height: 1;
}

/* ===== VALUE PROPOSITION ===== */
.value-section {
  padding: 56px 0;
  background: var(--clr-bg-warm);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
}

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

.value-item {}
.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--clr-accent);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 0; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }

/* ===== FOR WHOM ===== */
.for-whom-section { background: var(--clr-bg); }

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.for-whom-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.for-whom-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.for-whom-card p {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

/* ===== PROGRAM ===== */
.program-section { background: var(--clr-bg-section); }

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

.program-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border-light);
}

.program-card-num {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.program-card-body { padding: 24px; }

.program-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.program-card-body p {
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process-section { background: var(--clr-bg); }

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

.process-steps { display: flex; flex-direction: column; gap: 32px; }

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.step-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.step-text p {
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESULTS ===== */
.results-section { background: var(--clr-bg-section); }

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

.results-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  order: 1;
}

.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-content { order: 2; }

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

.results-list li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--clr-text-secondary);
}

.results-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: var(--clr-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--clr-bg); }

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

.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 12px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: var(--clr-text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ===== TRUST ===== */
.trust-section { background: var(--clr-bg-warm); }

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

.trust-item { text-align: center; }

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-section { background: var(--clr-bg); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border-light);
}

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

.faq-question:hover { color: var(--clr-accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.93rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

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

/* ===== LEAD FORM ===== */
.lead-section {
  background: var(--clr-accent);
  padding: 80px 0;
  color: var(--clr-white);
}

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

.lead-content .section-label { color: rgba(255,255,255,0.6); }

.lead-content h2 { color: var(--clr-white); }

.lead-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.7;
}

.lead-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.lead-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--clr-accent);
  background: var(--clr-white);
}

.form-input::placeholder { color: var(--clr-text-muted); }

.form-select { cursor: pointer; }

.form-consent {
  margin: 16px 0 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

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

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

.form-consent a { color: var(--clr-accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--clr-white);
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-legal-info {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 16px;
}

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

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

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

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: var(--clr-text);
  color: var(--clr-white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-banner a { color: var(--clr-accent-light); }

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 9px 20px;
  background: var(--clr-accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--clr-accent-hover); }

.cookie-dismiss {
  padding: 9px 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-dismiss:hover { background: rgba(255,255,255,0.18); }

.cookie-banner.hidden { display: none; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--clr-bg-warm);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--clr-border-light);
}

.legal-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.legal-hero p { color: var(--clr-text-muted); font-size: 0.9rem; }

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

.legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 12px;
}

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

.legal-content p {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.success-card {
  max-width: 540px;
  margin: 0 auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clr-bg-warm);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
}

.success-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.success-card p {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-steps {
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0 32px;
  text-align: left;
}

.success-steps h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 12px;
}

.success-steps ol {
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

.success-steps ol li { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: none; order: 2; }
  .hero-image-wrap { order: 1; }

  .value-grid { grid-template-columns: 1fr; gap: 24px; }

  .for-whom-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr 1fr; }

  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-image { order: -1; }

  .results-layout { grid-template-columns: 1fr; gap: 40px; }
  .results-image { order: -1; }

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

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .lead-inner { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  section { padding: 56px 0; }

  .program-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .lead-form-wrap { padding: 24px; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

