:root {
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-soft: #eef4ec;
  --surface-dark: #0d1f1b;
  --surface-dark-2: #102925;
  --text: #13211f;
  --muted: #5c6e68;
  --line: #d7e2dc;
  --primary: #0f9d72;
  --primary-strong: #0a7a58;
  --primary-bright: #19c78e;
  --accent: #ffb938;
  --danger: #a93737;
  --shadow: 0 24px 70px rgba(15, 33, 31, 0.13);
  --shadow-soft: 0 10px 30px rgba(15, 33, 31, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 157, 114, 0.18), transparent 26rem),
    linear-gradient(180deg, #f8faf6 0%, var(--bg) 40%, #eef4ec 100%);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 185, 56, 0.8);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface-dark);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(19, 33, 31, 0.07);
  background: rgba(245, 247, 242, 0.88);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-bright));
  box-shadow: var(--shadow-soft);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.18rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions,
.main-nav,
.locale-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  min-width: 0;
  gap: 18px;
}

.main-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.locale-switch a {
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.locale-switch a:hover {
  color: var(--primary-strong);
}

.locale-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.locale-switch a {
  display: grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.locale-switch a.active {
  color: #fff;
  background: var(--surface-dark);
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.breadcrumb {
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #9aaba5;
}

.breadcrumb a:hover {
  color: var(--primary-strong);
}

.hero {
  padding: 46px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(15, 157, 114, 0.11);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", Arial, sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-size: clamp(2.65rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #11b984);
  box-shadow: 0 14px 34px rgba(15, 157, 114, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.button-dark {
  color: #fff;
  background: var(--surface-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.9rem;
}

.trust-row li {
  position: relative;
  padding-left: 19px;
}

.trust-row li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.product-stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 31, 0.06);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 25%, rgba(25, 199, 142, 0.26), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #dce9df 100%);
  box-shadow: var(--shadow);
}

.product-stage::after {
  position: absolute;
  right: -25%;
  bottom: -42%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 185, 56, 0.25);
  content: "";
  filter: blur(2px);
}

.product-stage img {
  position: absolute;
  z-index: 2;
  bottom: -7%;
  left: 50%;
  width: min(76%, 390px);
  height: 94%;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 24px rgba(13, 31, 27, 0.24));
}

.product-stage.duo img {
  width: min(58%, 320px);
  height: 88%;
}

.product-stage.duo img:first-child {
  left: 35%;
  transform: translateX(-50%) rotate(-4deg);
}

.product-stage.duo img:nth-child(2) {
  left: 66%;
  bottom: -10%;
  transform: translateX(-50%) rotate(4deg);
}

.stage-badge {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: grid;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  line-height: 1.15;
}

.stage-badge span {
  color: var(--muted);
  font-size: 0.76rem;
}

.stage-badge strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.25rem;
}

.old-price {
  color: var(--muted);
  font-weight: 700;
  text-decoration: line-through;
}

.country-chooser,
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.country-card,
.product-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(19, 33, 31, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.country-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.country-card strong,
.product-card strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.3rem;
}

.country-card span,
.product-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-section {
  padding: 54px 0;
}

.article-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.46);
}

.section-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
}

.section-body {
  min-width: 0;
}

.section-intro,
.content-card,
.plain-copy {
  color: var(--muted);
}

.section-intro {
  margin: 0 0 22px;
  font-size: 1.04rem;
}

.section-intro p:first-child,
.content-card p:first-child,
.plain-copy p:first-child {
  margin-top: 0;
}

.section-intro p:last-child,
.content-card p:last-child,
.plain-copy p:last-child {
  margin-bottom: 0;
}

.plain-copy {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(19, 33, 31, 0.06);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.content-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(19, 33, 31, 0.07);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.content-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.15;
}

.content-card.featured {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at top right, rgba(25, 199, 142, 0.24), transparent 40%),
    var(--surface-dark);
}

.content-card.featured h3 {
  color: #fff;
}

.price-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(25, 199, 142, 0.25), transparent 40%),
    var(--surface-dark);
}

.price-banner strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.price-banner span {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  overflow: hidden;
  border: 1px solid rgba(19, 33, 31, 0.07);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  margin: 0;
  padding: 20px 22px 10px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.order-section {
  padding: 58px 0;
  color: #f5faf7;
  background:
    radial-gradient(circle at 80% 0%, rgba(25, 199, 142, 0.22), transparent 34%),
    linear-gradient(145deg, var(--surface-dark), var(--surface-dark-2));
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.58fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.order-title {
  margin: 0 0 15px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.order-copy p {
  max-width: 660px;
  color: rgba(245, 250, 247, 0.74);
}

.order-product-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.order-product-mini img {
  width: 80px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.28));
}

.order-product-mini strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.25rem;
}

.order-card {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: var(--text);
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.order-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.order-form-title {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.form-price {
  text-align: right;
}

.form-price strong,
.form-price span {
  display: block;
}

.form-price strong {
  color: var(--primary-strong);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.55rem;
}

.form-price span {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}

.order-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(15, 157, 114, 0.15);
}

.submit-button {
  width: 100%;
  min-height: 57px;
  margin-top: 4px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #12bf89);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 157, 114, 0.24);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.privacy-check a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.lead-status.ok,
.lead-status.error {
  display: block;
}

.lead-status.ok {
  color: var(--primary-strong);
  background: rgba(15, 157, 114, 0.12);
}

.lead-status.error {
  color: var(--danger);
  background: rgba(169, 55, 55, 0.1);
}

.site-footer {
  padding: 46px 0 34px;
  border-top: 1px solid rgba(19, 33, 31, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 450px;
  color: var(--muted);
}

.footer-title {
  display: block;
  margin: 0 0 12px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 33, 31, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.mobile-order-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 13px;
    font-size: 0.85rem;
  }

  .hero-grid,
  .order-layout {
    grid-template-columns: 1fr 0.85fr;
  }

  .section-shell {
    grid-template-columns: 0.42fr 0.58fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    gap: 9px;
  }

  .main-nav {
    position: fixed;
    top: 79px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 13px 9px;
    border-bottom: 1px solid rgba(19, 33, 31, 0.07);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .order-layout,
  .section-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .product-stage {
    min-height: 460px;
  }

  .section-heading {
    position: static;
  }

  .section-heading h2 {
    max-width: 760px;
  }

  .order-copy {
    text-align: center;
  }

  .order-copy p {
    margin-inline: auto;
  }

  .order-product-mini {
    justify-content: center;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .topbar {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .locale-switch {
    display: none;
  }

  .main-nav {
    top: 71px;
  }

  .hero {
    padding: 28px 0 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-stage {
    min-height: 390px;
  }

  .product-stage.duo img {
    width: 64%;
  }

  .stage-badge {
    top: 14px;
    right: 14px;
  }

  .country-chooser,
  .product-cards,
  .subsection-grid {
    grid-template-columns: 1fr;
  }

  .article-section {
    padding: 40px 0;
  }

  .plain-copy,
  .content-card {
    padding: 20px;
  }

  .price-banner {
    grid-template-columns: 1fr;
  }

  .order-section {
    padding: 44px 0 92px;
  }

  .order-card-head {
    align-items: start;
    flex-direction: column;
  }

  .form-price {
    text-align: left;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 9px 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: #fff;
    background: rgba(13, 31, 27, 0.96);
    box-shadow: 0 18px 40px rgba(13, 31, 27, 0.3);
    backdrop-filter: blur(10px);
  }

  .mobile-order-bar strong {
    font-family: "Outfit", Arial, sans-serif;
  }

  .mobile-order-bar a {
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--primary);
    font-size: 0.84rem;
    font-weight: 800;
  }
}

@media (max-width: 390px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1.04rem;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .product-stage {
    min-height: 340px;
  }

  .trust-row {
    display: grid;
    justify-content: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .order-section,
  .mobile-order-bar,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .hero,
  .article-section {
    padding: 20px 0;
  }

  .section-shell {
    display: block;
  }

  .content-card,
  .plain-copy {
    break-inside: avoid;
    box-shadow: none;
  }
}
