@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #FDFAF6;
  --cream-warm: #F5EFE6;
  --cream-dark: #E8D9C8;
  --brown-deep: #2A1F14;
  --brown-mid: #6B5744;
  --brown-light: #9A7F68;
  --terracotta: #B05E2A;
  --terracotta-hover: #934F22;
  --terracotta-light: #E8C4A0;
  --sage: #7D9470;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(42, 31, 20, 0.08);
  --shadow-md: 0 8px 32px rgba(42, 31, 20, 0.12);
  --shadow-lg: 0 16px 48px rgba(42, 31, 20, 0.16);
  --radius: 4px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--brown-deep);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--brown-deep);
}

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

a:hover {
  color: var(--terracotta-hover);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
}

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

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

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

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--brown-mid);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── HEADER ─── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  border-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
}

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

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--brown-deep);
}

.nav .btn {
  padding: 10px 24px;
  font-size: 13px;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

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

.mobile-menu a {
  font-size: 16px;
  color: var(--brown-deep);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-menu .btn {
  margin-top: 8px;
  text-align: center;
}

/* ─── HERO ─── */

.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 50%, var(--cream-warm) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--terracotta);
}

.hero-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brown-deep);
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--brown-mid);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-note {
  font-size: 13px;
  color: var(--brown-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.hero-badge-text {
  font-size: 12px;
  color: var(--brown-mid);
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.4;
}

/* ─── BENEFITS ─── */

.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-header .section-subtitle {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefit-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.3s ease;
}

.benefit-card:hover {
  background: var(--cream);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--terracotta);
}

.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--brown-deep);
}

.benefit-text {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.7;
}

/* ─── HOW IT WORKS ─── */

.how {
  padding: 100px 0;
  background: var(--cream);
}

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

.how-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.how-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--terracotta);
}

.step-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ─── PORTFOLIO ─── */

.portfolio {
  padding: 100px 0;
  background: var(--cream-warm);
}

.portfolio-header {
  margin-bottom: 56px;
}

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

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(42,31,20,0.75), transparent);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-item-label {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--brown-light);
}

/* ─── AUDIENCE ─── */

.audience {
  padding: 100px 0;
  background: var(--white);
}

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

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

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--terracotta-light);
}

.audience-list li .li-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-list li .li-text {
  font-size: 15px;
  color: var(--brown-deep);
  line-height: 1.5;
}

.audience-list li .li-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.audience-aside {
  padding: 40px;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--terracotta);
}

.audience-aside h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.audience-aside p {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.audience-aside-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--terracotta-light);
  color: var(--terracotta);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin: 4px;
}

/* ─── FORM ─── */

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

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lead-form-text h2 {
  margin-bottom: 20px;
}

.lead-form-text p {
  font-size: 16px;
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.form-promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--brown-mid);
}

.form-promise-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--terracotta);
  flex-shrink: 0;
  line-height: 20px;
  text-align: center;
}

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

.lead-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.lead-form-sub {
  font-size: 14px;
  color: var(--brown-mid);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--brown-deep);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(176, 94, 42, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--brown-light);
}

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

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

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

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--terracotta);
  margin-top: 1px;
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.5;
  cursor: pointer;
}

.form-check label a {
  color: var(--terracotta);
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-submit:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.form-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}

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

.form-group.error .form-error {
  display: block;
}

/* ─── FAQ ─── */

.faq {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-header .section-subtitle {
  margin: 0 auto;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--brown-deep);
  gap: 16px;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--brown-light);
  font-size: 16px;
  font-weight: 300;
}

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

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

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.75;
}

/* ─── TRUST ─── */

.trust {
  padding: 80px 0;
  background: var(--cream-warm);
}

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

.trust-item {
  padding: 32px 24px;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.5;
}

/* ─── CTA BLOCK ─── */

.cta-block {
  padding: 80px 0;
  background: var(--brown-deep);
  text-align: center;
}

.cta-block h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .btn-primary {
  background: var(--terracotta);
  font-size: 15px;
  padding: 18px 48px;
}

.cta-block .btn-primary:hover {
  background: var(--terracotta-hover);
}

/* ─── FOOTER ─── */

.footer {
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

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

.footer-brand .logo {
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom p {
  font-size: 13px;
}

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

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─── COOKIE BANNER ─── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--brown-deep);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: 10px 24px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

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

.cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ─── SUCCESS PAGE ─── */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream);
}

.success-card {
  max-width: 560px;
  text-align: center;
  padding: 64px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #e8f5e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
}

.success-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─── LEGAL PAGES ─── */

.legal-page {
  padding-top: 68px;
}

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

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.legal-hero p {
  color: var(--brown-mid);
  font-size: 15px;
}

.legal-body {
  padding: 64px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 22px;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.legal-body p {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 16px 20px;
}

.legal-body ul li {
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

  .hero-desc {
    margin: 0 auto 40px;
  }

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

  .hero-badge {
    bottom: -12px;
    left: 12px;
  }

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

  .how-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

@media (max-width: 680px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid {
    padding: 48px 0;
  }

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

  .form-group-row {
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    padding: 24px 16px;
  }

  .trust-num {
    font-size: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-form {
    padding: 32px 24px;
  }

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

  .benefit-card {
    padding: 36px 28px;
  }
}

/* ─── ANIMATIONS ─── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  animation: fadeUp 0.6s ease both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
