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

:root {
  --clr-brand: #C0392B;
  --clr-brand-dark: #96281B;
  --clr-brand-light: #E74C3C;
  --clr-accent: #E8C170;
  --clr-bg: #FDFAF5;
  --clr-bg-warm: #F7F0E6;
  --clr-bg-dark: #1A1008;
  --clr-text: #2C1A0E;
  --clr-text-mid: #5C3D2E;
  --clr-text-light: #8B6A57;
  --clr-border: #E8D5C4;
  --clr-white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 4px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 26, 14, 0.12);
  --shadow-lg: 0 12px 48px rgba(44, 26, 14, 0.16);

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

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

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

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

a {
  color: var(--clr-brand);
  text-decoration: none;
  transition: color 0.2s;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

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

.text-center { text-align: center; }
.text-brand { color: var(--clr-brand); }

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

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

.section-intro {
  font-size: 1.1rem;
  color: var(--clr-text-mid);
  max-width: 620px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--clr-brand);
  color: var(--clr-white);
  border-color: var(--clr-brand);
}

.btn-primary:hover {
  background: var(--clr-brand-dark);
  border-color: var(--clr-brand-dark);
  color: var(--clr-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--clr-brand);
  border-color: var(--clr-brand);
}

.btn-outline:hover {
  background: var(--clr-brand);
  color: var(--clr-white);
}

.btn-large {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-brand);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--clr-text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-mid);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--clr-brand);
}

.nav-cta {
  background: var(--clr-brand);
  color: var(--clr-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--clr-brand-dark);
  color: var(--clr-white) !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.25s;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-warm);
  padding: 80px 0 0;
}

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

.hero-content {
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-brand);
  border-radius: 2px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--clr-text);
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-brand);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--clr-text-mid);
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -24px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.hero-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
}

.hero-badge-text small {
  font-weight: 400;
  color: var(--clr-text-light);
  display: block;
}

.trust-strip {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 28px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-mid);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item-icon {
  font-size: 1.25rem;
  color: var(--clr-brand);
}

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

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

.value-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.value-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-point-text h4 {
  margin-bottom: 4px;
  color: var(--clr-text);
}

.value-point-text p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  margin: 0;
}

.for-whom-section {
  padding: var(--section-gap) 0;
  background: var(--clr-bg-warm);
}

.for-whom-header {
  text-align: center;
  margin-bottom: 56px;
}

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

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

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

.for-whom-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.for-whom-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.for-whom-card p {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  margin: 0;
}

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

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--clr-brand), var(--clr-accent));
  z-index: 0;
}

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

.how-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-brand);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.how-step h4 {
  margin-bottom: 8px;
  color: var(--clr-text);
}

.how-step p {
  font-size: 0.88rem;
  color: var(--clr-text-mid);
  margin: 0;
}

.format-section {
  padding: var(--section-gap) 0;
  background: var(--clr-bg-warm);
}

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

.format-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.format-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text-mid);
}

.format-list li::before {
  content: '✓';
  color: var(--clr-brand);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

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

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

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--clr-brand);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}

.faq-section {
  padding: var(--section-gap) 0;
  background: var(--clr-bg-warm);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

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

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

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

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

.faq-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.25s;
  color: var(--clr-brand);
  font-size: 0.75rem;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--clr-brand);
  color: white;
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
}

.form-section {
  padding: var(--section-gap) 0;
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192, 57, 43, 0.25) 0%, transparent 65%);
}

.form-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.form-content h2 {
  color: var(--clr-white);
  margin-bottom: 16px;
}

.form-content .section-label {
  color: var(--clr-accent);
}

.form-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

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

.form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.form-perks li span {
  color: var(--clr-accent);
  font-size: 1rem;
}

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

.lead-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--clr-text);
}

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

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

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

.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-brand);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
}

.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
}

.form-group input.error ~ .form-error-msg,
.form-group select.error ~ .form-error-msg {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-top: 12px;
  text-align: center;
}

.form-note a {
  color: var(--clr-text-light);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
  font-size: 1.05rem;
  padding: 15px;
}

.site-footer {
  background: #0F0A04;
  color: rgba(255, 255, 255, 0.65);
  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.08);
}

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

.footer-brand .logo span {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-legal-text strong {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
}

.cookie-text a {
  color: var(--clr-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.btn-cookie-accept {
  background: var(--clr-brand);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.btn-cookie-accept:hover {
  background: var(--clr-brand-dark);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--clr-text-mid);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-cookie-decline:hover {
  border-color: var(--clr-text-light);
}

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

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

.legal-hero .legal-date {
  font-size: 0.87rem;
  color: var(--clr-text-light);
}

.legal-body {
  padding: 64px 0 80px;
}

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

.legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
  color: var(--clr-text);
}

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

.legal-content p {
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--clr-text-mid);
  margin-bottom: 8px;
  line-height: 1.65;
}

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

.legal-company-block {
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 40px;
}

.legal-company-block h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.legal-company-block p {
  margin: 0;
  font-size: 0.9rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.success-card {
  text-align: center;
  max-width: 560px;
}

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

.success-card h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 1.05rem;
  color: var(--clr-text-mid);
  margin-bottom: 24px;
}

.success-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.success-next-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--clr-bg-warm);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
}

.success-next-item span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-image-wrap {
    order: -1;
    margin: -80px -24px 0;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 340px;
    border-radius: 0;
    object-position: center 20%;
  }

  .hero-badge {
    left: 16px;
    bottom: 20px;
  }

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

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

  .value-grid,
  .format-grid,
  .form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-image-wrap img,
  .format-image-wrap img {
    height: 320px;
  }

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

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

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

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

@media (max-width: 600px) {
  :root { --section-gap: 56px; }

  .site-nav .nav-links {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: var(--clr-bg);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    z-index: 99;
  }

  .site-nav .nav-links.open {
    display: flex;
  }

  .site-nav a:not(.hamburger) {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .trust-items {
    gap: 24px;
    justify-content: flex-start;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-large {
    width: 100%;
    text-align: center;
  }
}
