:root {
  --sand: #e9dfd3;
  --sand-strong: #d8cbbf;
  --taupe: #4b4034;
  --taupe-soft: #5b4e42;
  --clay: #f4eee6;
  --mint: #c1d7c4;
  --gold: #f2d86d;
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--sand);
  color: var(--taupe);
  line-height: 1.7;
}

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

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

header,
main section,
footer {
  padding: 72px 7vw;
}

.hero {
  background: var(--taupe);
  color: #f5f0e7;
  display: grid;
  gap: 36px;
  padding-top: 88px;
}

.hero__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero__title {
  display: grid;
  gap: 18px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
}

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 32ch;
  color: #f0e7dc;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow);
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  background: #f7f1e7;
  color: var(--taupe);
}

.button--ghost {
  background: transparent;
  color: #f7f1e7;
  border: 2px solid #f7f1e7;
  box-shadow: none;
}

.hero__visual {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero__visual-inner {
  background: #f7f1e7;
  color: var(--taupe);
  border-radius: var(--radius-md);
  padding: 22px;
  display: grid;
  gap: 18px;
}

.hero__quote {
  font-weight: 600;
  font-size: 1.05rem;
  background: #f0e7dc;
  padding: 14px 16px;
  border-radius: 16px;
}

.hero__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 14px;
}

.hero__pillar {
  display: grid;
  gap: 6px;
  align-items: start;
}

.pillar-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--taupe);
  font-weight: 800;
}

.section {
  background: var(--clay);
}

.section--sand {
  background: var(--sand);
}

.section--reverse {
  background: #f8f3eb;
}

.section__title {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 32px;
  text-align: center;
}

.section__title h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.section__title p {
  color: #6c6155;
}

.narrative {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
  background: #f7f1e7;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e3d6c8;
}

.narrative__quote {
  font-weight: 700;
  color: var(--taupe);
  font-size: 1.1rem;
}

.duerr {
  font-style: italic;
  color: #857a6f;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.card--tall {
  padding: 28px;
}

.badge-stack {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-stack img {
  width: 84px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.commitment-card h3 {
  margin-bottom: 10px;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  table-layout: fixed;
  max-width: 100%;
}

.table thead th {
  background: #4b4034;
  color: #f7f1e7;
  padding: 12px;
  font-weight: 700;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  max-width: 0;
}

.table tbody td {
  background: #fff;
  padding: 12px 14px;
  border-top: 1px solid #e0d3c4;
  border-bottom: 1px solid #e0d3c4;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  max-width: 0;
}

.table tbody tr td:first-child {
  border-left: 1px solid #e0d3c4;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  font-weight: 700;
}

.table tbody tr td:last-child {
  border-right: 1px solid #e0d3c4;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.table__highlight {
  background: #fdf3c8;
  border-color: #f5e19b;
}

.flow-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid #e2d6c8;
  box-shadow: var(--shadow);
}
.flow-card img {
  display: block;
  width: 100%;
  height: auto;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.section--taupe {
  background: var(--taupe);
  color: #f6ede1;
}

.section--taupe .section__title p {
  color: #e7dccf;
}

.section--taupe .benefit-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.faq-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 18px;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.step-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.avatar-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(145deg, #d0b5a2, #f7e9de);
  display: grid;
  place-items: center;
  color: #4b4034;
  font-weight: 800;
  font-size: 1.8rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr);
  gap: 20px;
  border: 1px solid #e0d3c4;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d2c3b4;
  background: #f9f4ee;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  background: #3f352c;
  color: #f6ede1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer img {
  width: 64px;
}

.footer a {
  color: #f6ede1;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr 360px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: 0;
  }
}

@media (max-width: 640px) {
  header,
  main section,
  footer {
    padding: 56px 6vw;
  }

  .hero {
    padding-top: 64px;
  }
  .table {
    border-spacing: 0 8px;
  }
    
  .table thead th,
  .table tbody td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}
