:root {
  --bg: #f7f2e8;
  --bg-soft: #fffaf0;
  --text: #17231f;
  --muted: #5d6b64;
  --brand: #244138;
  --brand-2: #6d8a53;
  --accent: #c7804f;
  --line: rgba(36, 65, 56, 0.16);
  --card: rgba(255, 250, 240, 0.88);
  --shadow: 0 24px 60px rgba(23, 35, 31, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(199, 128, 79, 0.16),
      transparent 28%
    ),
    var(--bg);
  line-height: 1.6;
}
body.nav-open {
  overflow: hidden;
}
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  overflow-wrap: anywhere;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}
.section {
  padding: 92px 0;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  color: var(--brand);
}
.brand span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a,
.footer-link {
  text-decoration: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 13px;
  border-radius: 999px;
  cursor: pointer;
}
.primary-nav a:hover,
.footer-link:hover {
  background: rgba(36, 65, 56, 0.08);
  color: var(--brand);
}
.primary-nav .nav-cta {
  background: var(--brand);
  color: #fff;
  margin-left: 8px;
  box-shadow: 0 12px 24px rgba(36, 65, 56, 0.18);
}
.primary-nav .nav-cta:hover {
  background: #162d26;
  color: #fff;
}
.nav-toggle {
  display: none;
}
.hero {
  padding-top: 74px;
}
.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 62px;
  align-items: center;
}
.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}
.hero-grid > *,
.split-grid > *,
.contact-grid > *,
.cards > *,
.feature-grid > *,
.trust-grid > *,
.footer-grid > * {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand);
}
h1 {
  font-size: 62px;
  margin: 0 0 24px;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 0 0 18px;
}
h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}
p {
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}
.button {
  display: inline-flex;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 34px rgba(36, 65, 56, 0.22);
}
.button-primary:hover {
  background: #162d26;
}
.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand);
  border-color: var(--line);
}
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.hero-checks li {
  position: relative;
  padding-left: 30px;
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(109, 138, 83, 0.18);
  color: var(--brand-2);
  font-weight: 900;
}
.hero-media {
  position: relative;
}
.hero-media img,
.visual-frame img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.floating-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(270px, 80%);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(23, 35, 31, 0.16);
  padding: 18px;
}
.floating-card strong {
  display: block;
  color: var(--brand);
  margin-bottom: 4px;
}
.floating-card span {
  color: var(--muted);
  font-size: 0.94rem;
}
.trust-strip {
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(36, 65, 56, 0.94);
  color: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.trust-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}
.trust-grid strong {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  opacity: 0.68;
}
.trust-grid span {
  display: block;
  font-weight: 800;
  margin-top: 4px;
}
.detail-panel,
.local-box,
.thank-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
}
.detailed-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 18px;
}
.detailed-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}
.detailed-list span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(199, 128, 79, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.detailed-list p {
  margin: 0;
  color: var(--muted);
}
.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading.narrow {
  max-width: 720px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
}
.cards {
  display: grid;
  gap: 24px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 48px rgba(23, 35, 31, 0.08);
}
.card img {
  margin-bottom: 22px;
  border-radius: 20px;
  background: #fff;
}
.card p {
  color: var(--muted);
}
.card ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--muted);
}
.card li + li {
  margin-top: 8px;
}
.method {
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 0.42),
    rgba(255, 250, 240, 0.78)
  );
}
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
}
.timeline-item > span {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.timeline-item h3 {
  margin-bottom: 6px;
}
.timeline-item p {
  color: var(--muted);
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
  border-radius: var(--radius-md);
  padding: 24px;
}
.feature h3 {
  font-size: 1.15rem;
}
.feature p {
  color: var(--muted);
  margin: 0;
}
.compact .card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}
.case-card span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
}
.price-card {
  position: relative;
}
.price {
  font-size: 2rem;
  color: var(--brand) !important;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.price-card.featured {
  border: 2px solid rgba(109, 138, 83, 0.45);
  transform: translateY(-12px);
}
.badge {
  display: inline-flex;
  background: rgba(109, 138, 83, 0.16);
  color: var(--brand-2);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.local-box ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--muted);
}
.accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.accordion-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--brand);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.accordion-button::after {
  content: "+";
  font-size: 1.2rem;
}
.accordion-button[aria-expanded="true"]::after {
  content: "−";
}
.accordion-panel {
  padding: 0 22px 20px;
  color: var(--muted);
}
.contact {
  background: var(--brand);
  color: #fff;
}
.contact h2,
.contact h3 {
  color: #fff;
}
.contact .eyebrow {
  color: #e4b282;
}
.contact p {
  color: rgba(255, 255, 255, 0.78);
}
.contact-notes {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.contact-notes p {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  margin: 0;
}
.contact-form {
  display: grid;
  gap: 12px;
  background: #fffaf0;
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form label {
  font-weight: 800;
  color: var(--brand);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 65, 56, 0.18);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(109, 138, 83, 0.16);
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 500 !important;
  color: var(--muted) !important;
  font-size: 0.94rem;
}
.consent input {
  width: auto;
  margin-top: 4px;
}
.site-footer {
  background: #17231f;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}
.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}
.site-footer h2 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
}
.site-footer a,
.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  padding: 4px 0;
  text-align: left;
}
.footer-link {
  border-radius: 0;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.policy-page {
  background: var(--bg);
}
.policy-hero {
  padding-bottom: 34px;
}
.narrow-content {
  max-width: 840px;
}
.legal-text h2 {
  margin-top: 34px;
  font-size: 1.6rem;
}
.legal-text p,
.legal-text li {
  color: var(--muted);
}
.legal-text ul {
  padding-left: 22px;
}
.legal-note {
  margin-top: 34px;
  padding: 18px;
  background: rgba(199, 128, 79, 0.12);
  border: 1px solid rgba(199, 128, 79, 0.24);
  border-radius: 18px;
}
.cookie-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 14px 32px rgba(23, 35, 31, 0.08);
  margin: 24px 0;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.cookie-table th {
  background: var(--brand);
  color: #fff;
}
.thank-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
}
.thank-card {
  text-align: center;
  max-width: 760px;
}
.center-actions {
  justify-content: center;
}
.simple-header {
  position: static;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(23, 35, 31, 0.24);
  padding: 20px;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.cookie-banner p {
  color: var(--muted);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-media,
  .visual-frame {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .cards.three,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 62px 0;
  }
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }
  .brand {
    max-width: calc(100vw - 100px);
    font-size: 1.06rem;
  }
  .brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.9);
    padding: 10px;
    border-radius: 14px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    background: var(--brand);
    border-radius: 999px;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .primary-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .primary-nav a {
    display: flex;
    justify-content: center;
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
  }
  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }
  h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.15rem);
    line-height: 1.04;
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(1.75rem, 8.6vw, 2.55rem);
  }
  h3 {
    font-size: 1.22rem;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .reverse {
    gap: 30px;
  }
  .hero-lead {
    font-size: 1.04rem;
  }
  .hero-actions {
    gap: 10px;
    margin: 24px 0 22px;
  }
  .hero-media img,
  .visual-frame img,
  .card img {
    border-radius: 20px;
  }
  .cards.three,
  .feature-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    border-radius: 20px;
    padding: 12px;
  }
  .trust-grid div {
    padding: 14px;
  }
  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 28px);
    margin: -28px auto 0;
  }
  .detail-panel,
  .local-box,
  .thank-card,
  .card,
  .feature {
    padding: 22px;
    border-radius: 22px;
  }
  .detailed-list li,
  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .detailed-list span,
  .timeline-item > span {
    width: 38px;
    height: 38px;
    font-size: 0.82rem;
  }
  .timeline-item > span {
    border-radius: 14px;
  }
  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }
  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
  .consent {
    grid-template-columns: 18px 1fr;
    gap: 9px;
  }
  .footer-bottom {
    display: grid;
  }
  .cookie-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cookie-table th,
  .cookie-table td {
    min-width: 150px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    border-radius: 20px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .section {
    padding: 54px 0;
  }
  .hero-actions,
  .cookie-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
  }
  .detail-panel,
  .local-box,
  .thank-card,
  .card,
  .feature,
  .contact-form {
    padding: 20px;
  }
  .hero-checks li {
    padding-left: 28px;
  }
  .hero-checks li::before {
    width: 21px;
    height: 21px;
  }
  .accordion-button {
    gap: 12px;
    padding: 18px;
  }
  .accordion-panel {
    padding: 0 18px 18px;
  }
  .legal-text h2 {
    font-size: 1.36rem;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .button,
  .cookie-actions button,
  .cookie-actions a {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }
  .brand {
    font-size: 0.98rem;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .primary-nav {
    left: 10px;
    right: 10px;
  }
  h1 {
    font-size: 2rem;
  }
  .detail-panel,
  .local-box,
  .thank-card,
  .card,
  .feature,
  .contact-form {
    padding: 18px;
  }
  .detailed-list li,
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .detailed-list span,
  .timeline-item > span {
    margin-bottom: 2px;
  }
}
