:root {
  --bg: #f4efe4;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #fffdf8;
  --ink: #1e1d1a;
  --muted: #5c5a54;
  --line: rgba(30, 29, 26, 0.08);
  --accent: #bd3a1f;
  --accent-dark: #982c16;
  --accent-soft: #ffe0d2;
  --secondary: #173248;
  --secondary-soft: #dbeaf2;
  --success: #176b46;
  --shadow: 0 20px 70px rgba(23, 50, 72, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(135deg, #f4efe4 0%, #f0e4cf 42%, #dbeaf2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 20px 0 48px;
  position: relative;
  z-index: 1;
}

.topbar,
.stats,
.product-card,
.trust-grid article,
.timeline article,
.lead-form,
.contact-card,
.faq-list details,
.footer,
.hero-card {
  backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 999px;
  position: sticky;
  top: 20px;
  z-index: 10;
}

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

.brand-logo {
  width: 148px;
  height: auto;
  display: block;
  border-radius: 16px;
}

.brand-text {
  display: grid;
}

.brand-text strong,
.nav a,
.button,
h1,
h2,
h3,
summary {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
}

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

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 50, 72, 0.1);
  color: var(--secondary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.lang-switch select {
  border: 0;
  background: transparent;
  color: var(--secondary);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch select:focus {
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #f16f3a);
  color: #fff;
  box-shadow: 0 18px 36px rgba(189, 58, 31, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--secondary);
  border: 1px solid rgba(23, 50, 72, 0.1);
}

.button-inline {
  padding: 12px 18px;
  background: var(--secondary-soft);
  color: var(--secondary);
}

.button-block {
  width: 100%;
}

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--accent-dark);
  border: 1px solid rgba(189, 58, 31, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.product-card p,
.trust-grid p,
.timeline p,
.form-copy p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.hero-actions .button {
  flex: 1 1 220px;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.highlights li {
  position: relative;
  padding-left: 24px;
  color: var(--secondary);
  font-weight: 600;
}

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

.brand-ribbon {
  margin-top: 28px;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 50, 72, 0.08);
  box-shadow: 0 16px 36px rgba(23, 50, 72, 0.09);
}

.brand-ribbon img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 16px;
}

.brand-ribbon strong,
.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.brand-ribbon span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.hero-card-main {
  background:
    linear-gradient(160deg, rgba(23, 50, 72, 0.9), rgba(10, 17, 24, 0.92)),
    var(--surface);
  color: #f9f6ef;
}

.hero-card-main p {
  color: rgba(249, 246, 239, 0.8);
}

.hero-card-accent {
  background:
    linear-gradient(135deg, rgba(255, 224, 210, 0.92), rgba(255, 255, 255, 0.72)),
    var(--surface);
}

.card-kicker {
  margin: 0 0 10px;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-card h2,
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-tag-button {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--secondary), #28597c);
  color: #fff;
  border-color: rgba(23, 50, 72, 0.2);
  box-shadow: 0 16px 32px rgba(23, 50, 72, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.price-tag-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(23, 50, 72, 0.28);
}

.stats {
  margin: 10px 0 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats article {
  padding: 10px 14px;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 640px;
}

.product-grid,
.trust-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 16px;
}

.product-image {
  width: 100%;
  max-width: 220px;
  justify-self: center;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(23, 50, 72, 0.12);
}

.product-card-rds {
  background: linear-gradient(160deg, rgba(23, 50, 72, 0.9), rgba(28, 63, 90, 0.88));
  color: #fff;
}

.product-card-rds p,
.product-card-rds .product-meta {
  color: rgba(255, 255, 255, 0.85);
}

.product-card-rds .product-price {
  color: #fff;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 50, 72, 0.08);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-card-rds .product-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.product-card h3,
.trust-grid h3,
.timeline h3,
.form-copy h2 {
  margin: 0;
  font-size: 1.45rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.product-price {
  color: var(--accent-dark);
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article,
.timeline article,
.contact-card,
.faq-list details {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.process-section {
  position: relative;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  background: rgba(23, 50, 72, 0.92);
  color: #f8f5ef;
}

.contact-card a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.lead-form {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 50, 72, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(189, 58, 31, 0.18);
  border-color: rgba(189, 58, 31, 0.35);
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-note.success {
  color: var(--success);
}

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

.faq-list summary {
  cursor: pointer;
  font-size: 1.05rem;
}

.faq-list p {
  margin: 14px 0 0;
}

.footer {
  margin-top: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 16px;
}

.footer-brand p {
  margin: 6px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.footer-links a,
.footer-contact a:not(.button) {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-contact a:not(.button):hover {
  color: var(--secondary);
}

.footer-contact .button {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .hero,
  .form-section,
  .product-grid,
  .trust-grid,
  .timeline,
  .stats,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid .product-card:last-child,
  .trust-grid article:last-child,
  .timeline article:last-child {
    grid-column: span 2;
  }

  .stats article:last-child,
  .footer > :first-child {
    grid-column: span 2;
  }

  .topbar {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 12px;
  }

  .topbar,
  .hero,
  .form-section,
  .product-grid,
  .trust-grid,
  .timeline,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    border-radius: 24px;
  }

  .topbar {
    position: static;
    padding: 16px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .footer {
    gap: 20px;
  }

  .footer-contact .button {
    width: 100%;
  }

  .brand-logo {
    width: 132px;
  }

  .brand-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-ribbon img,
  .footer-brand img {
    width: 180px;
  }

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

  .nav {
    justify-content: flex-start;
    gap: 12px 16px;
    font-size: 0.95rem;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switch {
    justify-content: space-between;
  }

  .nav-cta {
    width: 100%;
  }

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

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-card,
  .product-card,
  .lead-form,
  .contact-card,
  .faq-list details,
  .footer {
    padding: 20px;
  }

  .stats {
    padding: 16px;
  }

  .stats article:last-child,
  .footer > :first-child {
    grid-column: auto;
  }

  .product-meta {
    gap: 8px;
  }

  .product-grid .product-card:last-child,
  .trust-grid article:last-child,
  .timeline article:last-child {
    grid-column: auto;
  }

  .footer {
    align-items: flex-start;
  }

  .footer .button {
    width: 100%;
  }
}
