:root {
  --ink: #292927;
  --muted: #6c6962;
  --paper: #f4efe5;
  --white: #ffffff;
  --teal: #a98020;
  --teal-dark: #3e3d39;
  --coral: #b88a2d;
  --gold: #d6b45c;
  --soft-gray: #e4e1da;
  --line: rgba(41, 41, 39, 0.14);
  --shadow: 0 22px 60px rgba(41, 41, 39, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Tahoma", Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 132px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.language-toggle {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  color: var(--teal-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--coral);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(43, 42, 38, 0.93) 0%, rgba(64, 61, 55, 0.77) 42%, rgba(76, 71, 62, 0.26) 100%),
    linear-gradient(180deg, rgba(80, 75, 65, 0.12), rgba(38, 37, 34, 0.54));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 112px 0 58px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5.55vw, 5.05rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(217, 118, 90, 0.3);
}

.button-secondary,
.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  margin-top: 30px;
  color: var(--white);
  background: var(--teal-dark);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.lead-form {
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  font-size: 1.42rem;
  line-height: 1.15;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form fieldset {
  padding: 0;
  border: 0;
}

.lead-form legend {
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 12px 13px;
  color: var(--ink);
  background: #faf8f1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
select:focus,
summary:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 118, 90, 0.38);
  outline-offset: 3px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segmented label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f1;
  cursor: pointer;
}

.segmented input {
  width: 16px;
  min-height: auto;
  margin: 0 7px 0 0;
}

[dir="rtl"] .segmented input {
  margin: 0 0 0 7px;
}

.form-submit {
  width: 100%;
  margin-top: 14px;
}

.form-note,
.form-status {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.success {
  color: var(--teal);
  font-weight: 800;
}

.section {
  padding: clamp(68px, 10vw, 116px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.case-slider {
  position: relative;
}

.case-track {
  position: relative;
  min-height: 380px;
}

.case-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
}

.case-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.case-slide figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--soft-gray);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(41, 41, 39, 0.12);
}

.case-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-slide span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(62, 61, 57, 0.88);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

[dir="rtl"] .case-slide span {
  right: 14px;
  left: auto;
}

.case-slide figure:nth-child(2) span {
  background: rgba(184, 138, 45, 0.92);
}

.case-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.case-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7c2b8;
  cursor: pointer;
}

.case-dot.is-active {
  width: 32px;
  background: var(--coral);
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.problem {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.reason-grid article {
  min-height: 176px;
  padding: 24px;
  background: #faf8f1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-grid p {
  margin-bottom: 0;
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.faq {
  background: #efebe2;
}

.narrow {
  max-width: 840px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  min-height: 58px;
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 16px;
  color: var(--white);
  background: #1fae63;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(31, 174, 99, 0.34);
  font-weight: 800;
}

.whatsapp-float > span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #1fae63;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
}

.whatsapp-float > span:last-child {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand img {
    width: 104px;
  }

  .header-tools {
    gap: 10px;
  }

  .hero-inner,
  .split,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 96px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(47, 45, 41, 0.55) 0%, rgba(47, 45, 41, 0.88) 48%, rgba(47, 45, 41, 0.96) 100%),
      linear-gradient(90deg, rgba(58, 55, 48, 0.3), rgba(58, 55, 48, 0.2));
  }

  .hero-copy {
    padding-top: 18vh;
  }

  .lead-form {
    padding: 20px;
  }

  .cta-inner {
    display: block;
  }
}

@media (max-width: 560px) {
  .header-action {
    font-size: 0.8rem;
  }

  .language-toggle {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .case-track {
    min-height: 640px;
  }

  .case-slide {
    grid-template-columns: 1fr;
  }

  .case-slide figure {
    min-height: 300px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
