:root {
  --bg: #f7f1e6;
  --bg-accent: #ead9bc;
  --ink: #1d1a17;
  --muted: #5f5a53;
  --brand: #d84a05;
  --brand-dark: #ab3a04;
  --card: #fffdf9;
  --line: #dbc7a6;
  --ok: #0d7a36;
  --shadow: 0 10px 30px rgba(29, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #ffe3b8 0%, transparent 40%),
    radial-gradient(circle at 90% 15%, #ffd4a8 0%, transparent 35%),
    linear-gradient(180deg, var(--bg) 0%, #f4e8d4 100%);
  line-height: 1.5;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.thankyou-card {
  width: min(680px, 100%);
  background: linear-gradient(130deg, #fffaf1 0%, #fff 100%);
  border: 1px solid #e8d4b4;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.thankyou-card h1 {
  margin: 0.3rem 0 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.thankyou-card p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 241, 230, 0.86);
  border-bottom: 1px solid rgba(219, 199, 166, 0.8);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.3rem 0 2.2rem;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.shape-1 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -70px;
  background: linear-gradient(145deg, rgba(216, 74, 5, 0.2), rgba(255, 200, 127, 0.18));
}

.shape-2 {
  width: 320px;
  height: 320px;
  left: -100px;
  bottom: -80px;
  background: linear-gradient(145deg, rgba(255, 210, 147, 0.45), rgba(255, 246, 226, 0.3));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #f0ad79;
  background: #ffe7ce;
  color: #7d2f02;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.85rem 0 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5.3vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 56ch;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.55rem;
}

.benefits li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 600;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.52rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(216, 74, 5, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(216, 74, 5, 0.34);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: #fff6ea;
  color: #6d2f11;
  border: 1px solid #f2b88c;
}

.btn-phone {
  background: #fff;
  color: #492210;
  border: 1px solid var(--line);
}

.microcopy {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #6e675f;
}

.form-card {
  background: linear-gradient(180deg, #fffefb 0%, var(--card) 100%);
  border: 1px solid #f0dbc0;
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.form-card p {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
}

form {
  display: grid;
  gap: 0.6rem;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(216, 74, 5, 0.2);
  border-color: #df9a67;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: #5f5b55;
}

.consent input {
  width: auto;
  margin-top: 0.24rem;
}

.full {
  width: 100%;
  margin-top: 0.2rem;
}

.form-message {
  min-height: 1.3rem;
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--ok);
}

.proof {
  padding: 1.4rem 0 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof article {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e7d5b8;
  border-radius: 16px;
  padding: 1rem;
}

.proof h3 {
  margin: 0;
  font-size: 1.06rem;
}

.proof p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.benefit-aid {
  padding: 0.2rem 0 2.2rem;
}

.benefit-aid-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(120deg, #fffaf1 0%, #fff 100%);
  border: 1px solid #ead6b8;
  border-radius: 20px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.benefit-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.55rem);
  line-height: 1;
}

.benefit-copy p {
  margin: 0.62rem 0;
  color: var(--muted);
}

.benefit-copy .btn {
  margin-top: 0.5rem;
}

.benefit-visual {
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(216, 74, 5, 0.18) 0%, rgba(216, 74, 5, 0) 65%);
  display: grid;
  place-items: center;
  padding: 0.6rem;
}

.benefit-visual img {
  width: 100%;
  max-width: 360px;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.benefit-equation {
  margin-top: 1rem;
  text-align: center;
}

.benefit-equation h3 {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
}

.benefit-equation img {
  width: min(840px, 100%);
  border-radius: 14px;
  border: 1px solid #d8e9a7;
  background: #fff;
  padding: 0.3rem;
}

.machines {
  padding: 0.4rem 0 2.2rem;
}

.machines h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.machines-lead {
  margin: 0.45rem 0 1.1rem;
  color: var(--muted);
}

.machines-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.machine-card {
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, #fff4df 100%);
  border: 1px solid #e8d4b4;
  border-radius: 16px;
  padding: 0.8rem;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.machine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(29, 26, 23, 0.16);
}

.machine-card h3 {
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}

.machine-card img {
  width: 100%;
  max-width: 170px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.coverage {
  padding: 0.7rem 0 2.4rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
  background: linear-gradient(120deg, #fff7e9 0%, #fff 100%);
  border: 1px solid #ecd8b8;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.coverage h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3.7vw, 2.35rem);
  line-height: 1.05;
}

.coverage p {
  margin: 0.65rem 0;
  color: var(--muted);
}

.coverage img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #ead6b8;
}

.text-link {
  color: #7d2f02;
  font-weight: 800;
}

.footer {
  border-top: 1px solid #dfc9a8;
  background: rgba(247, 241, 230, 0.75);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #693012;
  text-decoration: none;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-content {
  width: min(980px, 100%);
  margin: 0 auto;
  background: rgba(29, 26, 23, 0.96);
  color: #f6efe5;
  border: 1px solid rgba(255, 208, 158, 0.35);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.7rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: #ffd39a;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.cookie-actions .btn {
  width: auto;
}

@media (max-width: 980px) {
  .hero-grid,
  .coverage-grid,
  .benefit-aid-grid {
    grid-template-columns: 1fr;
  }

  .machines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .benefit-visual img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .topbar-inner {
    min-height: 66px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .machines-grid {
    grid-template-columns: 1fr;
  }

  .machine-card img {
    height: 220px;
  }

  .cookie-banner-content {
    padding: 0.85rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
