:root {
  --ink: #151719;
  --muted: #626b75;
  --line: #dde3e8;
  --paper: #ffffff;
  --soft: #f6f7f6;
  --teal: #0c6f68;
  --teal-dark: #074c47;
  --mint: #e8f4ef;
  --gold: #c79a45;
  --gold-soft: #fbf4e8;
  --charcoal: #111315;
  --danger: #b42318;
  --shadow: 0 18px 48px rgba(17, 19, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 56px);
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(199, 154, 69, 0.22);
  backdrop-filter: blur(14px);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #f4f1e9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  padding: 7px 9px;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.language-switch button.active {
  color: white;
  background: var(--charcoal);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  color: var(--gold);
  background: var(--charcoal);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: #6b5d43;
  font-size: 12px;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 14px;
  color: white;
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(38px, 7vw, 82px) clamp(18px, 4vw, 56px) 48px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 246, 239, 0.96) 52%, rgba(232, 244, 239, 0.96) 100%),
    radial-gradient(circle at 82% 18%, rgba(199, 154, 69, 0.18), transparent 30%);
}

.hero > *,
.service-grid,
.criteria-grid,
.proof-grid,
.checker > *,
.faq-list,
.privacy-panel {
  max-width: 1180px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #9a6f25;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  padding: 9px 11px;
  color: #2b2418;
  background: rgba(251, 244, 232, 0.96);
  border: 1px solid rgba(199, 154, 69, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

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

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 19, 21, 0.16);
}

.button.primary {
  color: #171717;
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: rgba(199, 154, 69, 0.34);
}

.button.full {
  width: 100%;
}

.button.whatsapp {
  width: 100%;
  margin-top: 18px;
  color: white;
  background: #128c7e;
}

.note,
.small-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.note {
  max-width: 560px;
  margin: 18px 0 0;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 69, 0.22);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.services-band,
.video-band,
.criteria-band,
.proof-band,
.faq-band,
.privacy-band,
.checker {
  padding: 76px clamp(18px, 4vw, 56px);
}

.services-band {
  background: #fbfcfb;
}

.video-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.98), rgba(25, 31, 34, 0.98)),
    radial-gradient(circle at 10% 10%, rgba(199, 154, 69, 0.22), transparent 26%);
  color: white;
}

.video-copy {
  max-width: 620px;
}

.video-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.video-frame {
  overflow: hidden;
  background: #05080c;
  border: 1px solid rgba(199, 154, 69, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.video-frame video {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 680px;
  background: #05080c;
}

.video-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: white;
  color: #161616;
  background: var(--gold);
  font-weight: 800;
}

.criteria-band {
  background: var(--paper);
}

.proof-band {
  background: var(--gold-soft);
}

.faq-band {
  background: var(--paper);
}

.privacy-band {
  background: #eef4f2;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.compact p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid,
.criteria-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-inline: auto;
}

.service-grid article {
  min-height: 180px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(221, 227, 232, 0.92);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17, 19, 21, 0.05);
}

.service-grid span {
  display: inline-flex;
  width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #151515;
  background: var(--gold);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.service-grid p,
.criteria-panel.language p,
.proof-band .section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(199, 154, 69, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(21, 32, 43, 0.1);
}

.proof-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: white;
  background: #090909;
  border: 0;
  cursor: zoom-in;
}

.proof-image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.proof-image-button span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: #171717;
  background: rgba(199, 154, 69, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.proof-grid figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.criteria-panel {
  padding: 26px;
  background: #fbfcfb;
  border: 1px solid rgba(221, 227, 232, 0.94);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(17, 19, 21, 0.04);
}

.criteria-panel.positive {
  border-left: 5px solid var(--teal);
}

.criteria-panel.caution {
  border-left: 5px solid var(--gold);
}

.criteria-panel.language {
  border-left: 5px solid #5d7f8c;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.checker {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: start;
  background: #eef4f2;
}

.checker {
  justify-content: center;
}

.form-panel,
.result-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid rgba(221, 227, 232, 0.94);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17, 19, 21, 0.08);
}

.result-panel {
  position: sticky;
  top: 92px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #30363c;
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ccd5dd;
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(199, 154, 69, 0.22);
  border-color: var(--gold);
}

form .button {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.score-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--mint), #fff8ed);
  border-radius: 8px;
}

.score-box span {
  color: var(--muted);
  font-weight: 700;
}

.score-box strong {
  font-size: 38px;
}

.hidden {
  display: none;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(5, 8, 12, 0.92);
}

.image-viewer.hidden {
  display: none;
}

.viewer-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(5, 8, 12, 0.84);
}

.viewer-toolbar button {
  min-width: 48px;
  min-height: 42px;
  padding: 9px 13px;
  color: white;
  background: #15202b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.viewer-stage {
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 18px;
}

.viewer-stage img {
  max-width: min(92vw, 1120px);
  max-height: 82vh;
  transform-origin: center;
  transition: transform 140ms ease;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

details {
  background: #fbfcfb;
  border: 1px solid rgba(221, 227, 232, 0.94);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 19, 21, 0.04);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.privacy-panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.privacy-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.result-good {
  border-color: rgba(15, 118, 110, 0.45);
}

.result-watch {
  border-color: rgba(184, 135, 34, 0.45);
}

.result-stop {
  border-color: rgba(180, 35, 24, 0.35);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--charcoal);
}

footer strong {
  color: white;
}

@media (max-width: 920px) {
  .hero,
  .video-band,
  .checker {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual img {
    min-height: 300px;
  }

  .result-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .language-switch {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .service-grid,
  .criteria-grid,
  .proof-grid,
  form {
    grid-template-columns: 1fr;
  }

  .services-band,
  .video-band,
  .criteria-band,
  .proof-band,
  .faq-band,
  .privacy-band,
  .checker {
    padding: 48px 16px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
