:root {
  --bg: #fff6f5;
  --surface: #ffffff;
  --line: #efd9db;
  --text: #101b33;
  --muted: #4a566e;
  --brand: #c61b25;
  --brand-2: #e1313c;
  --blue: #b4232d;
  --dark: #2f0d13;
  --dark-2: #471019;
  --shadow: 0 16px 36px rgba(98, 17, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.45;
}

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

.container {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 245, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-main {
  width: clamp(172px, 16vw, 210px);
  height: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 2rem;
}

.menu a {
  color: #3d4357;
  font-weight: 600;
}

.menu a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  display: block;
  background: #2d2f38;
}

.grid-bg {
  background:
    linear-gradient(180deg, #ffe8ea 0%, #ffd8dc 45%, #fff6f5 100%),
    repeating-linear-gradient(90deg, rgba(165, 29, 39, 0.05) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(165, 29, 39, 0.05) 0 1px, transparent 1px 56px);
  position: relative;
  overflow: hidden;
}

.grid-bg-soft {
  background:
    linear-gradient(180deg, #fff8f9 0%, #fff8f9 100%),
    repeating-linear-gradient(90deg, rgba(165, 29, 39, 0.05) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(165, 29, 39, 0.05) 0 1px, transparent 1px 56px);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 44%);
  pointer-events: none;
}

.hero-inner {
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: clamp(1rem, 5vh, 3rem);
  padding-bottom: 4rem;
}

.hero-logo {
  width: clamp(170px, 14vw, 230px);
  padding: 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.22);
}

.eyebrow {
  color: #c61b25;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.93rem;
}

.hero h1 {
  font-size: clamp(1.95rem, 5.2vw, 4.4rem);
  color: #1f1f2b;
}

.hero h1 span {
  color: var(--brand);
}

.hero-text {
  max-width: 800px;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  color: #5f6b69;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(198, 27, 37, 0.28);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(135deg, #d84b55, #c9343f);
  box-shadow: 0 10px 22px rgba(198, 27, 37, 0.18);
}

.btn-dark {
  color: #fff;
  background: #222631;
}

.btn.small {
  padding: 0.62rem 1rem;
}

.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.dialog-overlay[hidden] {
  display: none;
}

.card-dialog {
  width: min(760px, 100%);
  background: #f3f3f4;
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  position: relative;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.card-dialog h3 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-bottom: 0.75rem;
}

.card-dialog > p {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  max-width: 28ch;
  margin-bottom: 1.2rem;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: #5f6677;
  background: transparent;
  cursor: pointer;
}

.dialog-form {
  display: grid;
  gap: 0.9rem;
}

.dialog-form label {
  font-weight: 700;
  font-size: 1.02rem;
  color: #1b2233;
}

.dialog-form input {
  margin-top: 0.45rem;
  width: 100%;
  border: 1px solid #cfd3da;
  border-radius: 16px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  background: #fff;
}

.dialog-form select,
.dialog-form textarea {
  margin-top: 0.45rem;
  width: 100%;
  border: 1px solid #cfd3da;
  border-radius: 16px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  background: #fff;
}

.dialog-form input:focus {
  outline: none;
  border-color: #8a95ab;
  box-shadow: 0 0 0 3px rgba(138, 149, 171, 0.18);
}

.dialog-form select:focus,
.dialog-form textarea:focus {
  outline: none;
  border-color: #8a95ab;
  box-shadow: 0 0 0 3px rgba(138, 149, 171, 0.18);
}

.dialog-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.dialog-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: #4c566b;
}

.dialog-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.dialog-note {
  text-align: center;
  margin-top: 0.4rem;
  color: #667084;
}

.dialog-feedback {
  min-height: 1.2rem;
  margin: 0;
  text-align: center;
  color: #1b4dd7;
  font-weight: 600;
}

.title-center,
.subtitle-center,
.red-center,
.center {
  text-align: center;
}

.title-center {
  font-size: clamp(1.75rem, 3.3vw, 3rem);
}

.subtitle-center {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  max-width: 900px;
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #fceff0;
  color: #991a22;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.muted {
  text-align: center;
  color: #8a94a9;
  margin-bottom: 1.6rem;
}

.trust-wrap {
  max-width: 760px;
  margin-inline: auto;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats h3 {
  color: var(--brand);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.25rem;
}

.stats p {
  margin: 0;
}

.cards-2x2,
.cards-3,
.legal-grid,
.service-grid,
.benefits-grid {
  display: grid;
  gap: 1rem;
}

.cards-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.icon {
  font-size: 1.8rem;
}

.tile {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #e5efff;
  display: grid;
  place-items: center;
}

.link-red {
  color: var(--brand);
  font-weight: 700;
}

.ghost-link {
  display: block;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  text-align: center;
  font-weight: 700;
}

.stripe {
  background: #f8f9fb;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
}

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

.media-box {
  border-radius: 22px;
  background: linear-gradient(150deg, #d51f2a, #b4161f);
  padding: 2rem;
  border: 1px solid #ea7f86;
  box-shadow: 0 30px 60px rgba(108, 14, 22, 0.3);
}

.media-box img {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #fff;
}

.services-wrap {
  max-width: 980px;
}

.service-view {
  margin-top: 2rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
}

.service-card {
  width: min(760px, 100%);
  height: clamp(220px, 34vw, 430px);
  border-radius: 24px;
  border: 1px solid #d8deea;
  box-shadow: var(--shadow);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f6f7fa;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.service-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #b8c0d1;
  cursor: pointer;
}

.dots button.active {
  width: 30px;
  background: var(--brand);
}

.tech-band {
  background: #fff0f2;
}

.check-grid {
  max-width: 940px;
  margin: 1.6rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
}

.check-grid p {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
}

.faq-section {
  background: #fffdfd;
}

.faq-wrap {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #ebd8db;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq-item:hover {
  border-color: #e4b8be;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff8f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  text-align: left;
  color: #1e2435;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: #b4232d;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #5a6277;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-cta {
  text-align: center;
  margin-top: 1.6rem;
}

.producer-band {
  background: #fff5f6;
}

.red-center {
  color: var(--brand);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.red-checks p {
  color: #3e4558;
}

.dark-band {
  background: linear-gradient(180deg, #7d2c35 0%, #62232b 100%);
}

.dark-band .title-center,
.dark-band .subtitle-center {
  color: #fff8f9;
}

.dark-band .subtitle-center {
  max-width: 980px;
  color: #f6dde0;
}

.chips {
  margin: 1.6rem auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
}

.chips span {
  text-align: center;
  color: #fff4f5;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.final-cta {
  background: linear-gradient(180deg, #ffd7db, #ffc4cb);
}

.final-cta .dark,
.final-cta p {
  color: #212633;
}

.footer {
  background: linear-gradient(180deg, #f6ecee 0%, #f2e6e8 100%);
  border-top: 1px solid #e6cfd2;
  color: #232838;
  padding: 3.2rem 0;
}

.footer .container {
  width: min(1360px, calc(100% - 2.2rem));
}

.footer h4 {
  font-size: 1.6rem;
  color: #232838;
}

.footer p,
.footer a {
  color: #4f5a70;
  font-size: 1.08rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #ddc5c9;
}

.footer-links {
  padding-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.7rem;
}

.footer-address {
  max-width: 420px;
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5cbd0;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.social-links a:hover {
  border-color: #dca7ae;
  color: #a71f29;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu {
    position: fixed;
    inset: 78px 0 auto 0;
    display: grid;
    gap: 1rem;
    background: rgba(255, 246, 245, 0.98);
    padding: 1rem 1.3rem;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid var(--line);
  }

  .menu.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .split,
  .cards-2x2,
  .cards-3,
  .check-grid,
  .footer-top,
  .footer-links,
  .chips {
    grid-template-columns: 1fr;
  }

  .footer .container {
    width: min(1360px, calc(100% - 1.35rem));
  }

  .hero-inner {
    min-height: 78vh;
  }

  .service-card {
    border-radius: 18px;
  }

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

  .card-dialog {
    border-radius: 22px;
  }

  .dialog-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .dialog-grid-2 {
    grid-template-columns: 1fr;
  }
}
