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

:root {
  --rose:       #C17B6E;
  --rose-light: #E8A99E;
  --rose-dark:  #9B5E52;
  --sage:       #8A9E85;
  --sage-light: #B4C8AF;
  --sage-dark:  #627A5D;
  --gold:       #C49A6C;
  --gold-light: #DDBF9A;
  --cream:      #FAF7F4;
  --cream-dark: #F0EAE3;
  --card:       #FFFCF9;
  --text:       #3D2F2A;
  --text-muted: #7A6560;
  --text-light: #A49590;
  --border:     #E5DDD6;
  --white:      #FFFFFF;

  --font-main:    'Georgia', 'Times New Roman', serif;
  --font-ui:      system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 4px rgba(61,47,42,0.07);
  --shadow-md:  0 4px 16px rgba(61,47,42,0.10);
  --shadow-lg:  0 8px 32px rgba(61,47,42,0.12);

  --max-w:      1100px;
  --section-py: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-main);
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 400; }

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

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(193,123,110,0.35);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,123,110,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}

.btn-outline:hover {
  background: rgba(193,123,110,0.06);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-main);
  font-size: 1.35rem;
  color: var(--rose-dark);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--sage-dark);
}

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

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

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 10px 24px;
}

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

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

.hero {
  padding: 72px 0 60px;
  overflow: hidden;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,123,110,0.1);
  color: var(--rose-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title em {
  font-style: normal;
  color: var(--rose);
}

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

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

.hero-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

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

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(193,123,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
}

.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.for-whom {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

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

.for-whom-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.for-whom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.for-whom-card .icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.for-whom-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

.learn {
  padding: var(--section-py) 0;
}

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

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

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.learn-list li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(138,158,133,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.learn-list li p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

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

.curriculum {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

.curriculum-header {
  margin-bottom: 48px;
}

.modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.module:hover {
  box-shadow: var(--shadow-sm);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.module-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(193,123,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-dark);
  font-family: var(--font-ui);
}

.module-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-ui);
}

.module-badge {
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
}

.module-arrow {
  color: var(--rose);
  font-size: 0.8rem;
  transition: transform 0.25s;
}

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

.module-body {
  display: none;
  padding: 0 24px 20px 76px;
}

.module.open .module-body {
  display: block;
}

.module-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-body li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.module-body li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--rose-light);
}

.materials {
  padding: var(--section-py) 0;
}

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

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

.materials-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.material-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.material-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(196,154,108,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.material-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 4px;
}

.material-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.process {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(to right, var(--rose-light), var(--sage-light));
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2.5px solid var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose);
  font-family: var(--font-ui);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.step:last-child .step-num {
  border-color: var(--sage-light);
  color: var(--sage-dark);
}

.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.gallery {
  padding: var(--section-py) 0;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.offer {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, rgba(193,123,110,0.08) 0%, rgba(138,158,133,0.08) 100%);
}

.offer-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.offer-header {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  padding: 40px 48px;
  text-align: center;
}

.offer-header h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.offer-header p {
  opacity: 0.85;
  font-size: 1rem;
}

.offer-price-wrap {
  padding: 40px 48px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-ui);
  color: var(--rose);
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.offer-features {
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.offer-feature .ok {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(138,158,133,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.offer-cta {
  padding: 32px 48px 40px;
  text-align: center;
}

.offer-cta .btn {
  width: 100%;
  max-width: 360px;
  justify-content: center;
}

.offer-guarantee {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lead-form-section {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

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

.form-wrap .section-subtitle {
  max-width: 100%;
  margin-bottom: 36px;
}

.lead-form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(193,123,110,0.12);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-consent {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-consent a {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-color: rgba(193,123,110,0.4);
}

.faq {
  padding: var(--section-py) 0;
}

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

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

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(193,123,110,0.03);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(193,123,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.25s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--rose);
  color: var(--white);
}

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

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

.site-footer {
  background: #2D201C;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--rose-light);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 14px;
}

.footer-brand .logo span {
  color: var(--sage-light);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.7;
  max-width: 280px;
}

.footer-company {
  margin-top: 20px;
  font-size: 0.78rem;
  opacity: 0.5;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-ui);
}

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

.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8rem;
  opacity: 0.45;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: #2D201C;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 22px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--rose-dark);
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(138,158,133,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--text);
}

.success-page p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.legal-page {
  padding: 80px 0 100px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 36px 0 12px;
  font-weight: 600;
  font-family: var(--font-ui);
  color: var(--text);
}

.legal-content p,
.legal-content li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

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

.legal-content a {
  color: var(--rose);
  text-decoration: underline;
}

.page-hero {
  padding: 56px 0 48px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  :root {
    --section-py: 60px;
  }

  .hero-inner,
  .learn-inner,
  .materials-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    display: none;
  }

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

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

  .process-steps::before {
    display: none;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .offer-price-wrap,
  .offer-features {
    padding: 28px 32px;
  }

  .offer-header {
    padding: 32px;
  }

  .offer-cta {
    padding: 24px 32px 32px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide {
    aspect-ratio: 4/3;
  }

  .offer-features {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .offer-header,
  .offer-price-wrap,
  .offer-cta {
    padding: 28px 24px;
  }

  .lead-form {
    padding: 28px 20px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

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

  .mobile-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }

  .mobile-menu a:hover {
    background: var(--cream-dark);
  }
}

.mobile-menu {
  display: none;
}

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