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

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

:root {
  --cream: #FAF7F2;
  --cream-light: #F4EFE8;
  --ink: #1A1F2E;
  --ink-soft: #2D3447;
  --rust: #8B3A3A;
  --rust-hover: #7A3030;
  --gold: #B8922A;
  --stone: #6B6860;
  --border: #E4DDD3;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(26,31,46,0.08);
  --shadow-md: 0 4px 16px rgba(26,31,46,0.12);
  --shadow-lg: 0 12px 40px rgba(26,31,46,0.14);
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
}

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

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

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
}

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

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

.btn-outline:hover {
  background: var(--rust);
  color: #fff;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--stone);
  max-width: 580px;
  line-height: 1.75;
}

section {
  padding: 90px 0;
}

/* ─── HEADER ─────────────────────────────── */

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

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

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

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

.nav-links a {
  font-size: 14px;
  color: var(--stone);
  font-weight: 400;
  transition: color var(--transition);
}

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

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

.mobile-nav a {
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ───────────────────────────────── */

.hero {
  padding: 80px 0 100px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.13;
  margin-bottom: 24px;
  color: var(--ink);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

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

.hero-note {
  font-size: 13px;
  color: var(--stone);
}

.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: 4/3;
}

.hero-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.hero-accent-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.hero-accent-text {
  font-size: 11px;
  color: var(--stone);
  text-align: center;
  max-width: 80px;
  line-height: 1.4;
}

/* ─── PAIN ────────────────────────────────── */

.pain-section {
  background: var(--ink);
  padding: 90px 0;
}

.pain-section .section-title {
  color: var(--white);
}

.pain-section .section-label {
  color: var(--gold);
}

.pain-section .section-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
}

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

.pain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.pain-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── SOLUTION ───────────────────────────── */

.solution-section {
  background: var(--white);
}

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

.solution-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.solution-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.solution-text .section-desc {
  margin-bottom: 36px;
}

.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.solution-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}

.solution-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%238B3A3A'/%3E%3Cpath d='M5 9l2.5 2.5L13 7' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ─── LEARN ──────────────────────────────── */

.learn-section {
  background: var(--cream-light);
}

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

.learn-header .section-desc {
  margin: 0 auto;
}

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

.learn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.learn-icon {
  width: 42px;
  height: 42px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.learn-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.learn-card p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

/* ─── FORMAT ─────────────────────────────── */

.format-section {
  background: var(--white);
}

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

.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.format-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.format-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.format-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  color: var(--rust);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.format-item h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

.format-item p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
}

/* ─── GALLERY ────────────────────────────── */

.gallery-section {
  background: var(--cream-light);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  background: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--stone);
  border-top: 1px solid var(--border);
}

/* ─── AUTHOR ─────────────────────────────── */

.author-section {
  background: var(--white);
}

.author-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 70px;
  align-items: center;
}

.author-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.author-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.author-label {
  margin-bottom: 10px;
}

.author-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 6px;
}

.author-role {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 28px;
}

.author-bio {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.author-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--stone);
}

.author-value::before {
  content: '—';
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ─── FAQ ────────────────────────────────── */

.faq-section {
  background: var(--cream);
}

.faq-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: background var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition);
  font-size: 14px;
  color: var(--stone);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─── FORM SECTION ───────────────────────── */

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

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

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

.form-text .section-label {
  color: var(--gold);
}

.form-text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.form-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.form-perks li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184,146,42,0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.form-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.3;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(139,58,58,0.1);
  background: #fff;
}

.form-input::placeholder {
  color: var(--stone);
  opacity: 0.7;
}

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
}

.form-privacy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--stone);
  line-height: 1.5;
  text-align: center;
}

.form-privacy a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── FOOTER ─────────────────────────────── */

.site-footer {
  background: var(--ink-soft);
  padding: 60px 0 40px;
  color: rgba(255,255,255,0.7);
}

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

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

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

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

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

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

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-legal p {
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: right;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  min-width: 200px;
}

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

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

.btn-cookie-accept {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-cookie-more {
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

.btn-cookie-more:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}

/* ─── INNER PAGES ────────────────────────── */

.page-header {
  background: var(--ink);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.page-content {
  padding: 70px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

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

.page-content p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 14px;
}

.page-content ul {
  padding-left: 24px;
  margin-bottom: 14px;
}

.page-content li {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 6px;
}

.page-content a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content .company-block {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 36px 0;
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
}

.success-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.success-page p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ─── RESPONSIVE ─────────────────────────── */

@media (max-width: 900px) {
  section {
    padding: 70px 0;
  }

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

  .hero {
    padding: 60px 0 80px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-accent {
    display: none;
  }

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

  .author-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .author-photo img {
    aspect-ratio: 1/1;
  }

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

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

@media (max-width: 720px) {
  .pain-grid,
  .learn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner .btn {
    display: none;
  }

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

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

  .footer-copy {
    text-align: left;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

/* ─── ANIMATIONS ─────────────────────────── */

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

.animate {
  opacity: 0;
}

.animate.in-view {
  animation: fadeInUp 0.55s ease forwards;
}

.animate-delay-1 { animation-delay: 0.08s; }
.animate-delay-2 { animation-delay: 0.16s; }
.animate-delay-3 { animation-delay: 0.24s; }
.animate-delay-4 { animation-delay: 0.32s; }
.animate-delay-5 { animation-delay: 0.40s; }
.animate-delay-6 { animation-delay: 0.48s; }
