:root {
  --accent: #72ae69;
  --accent-light: #a8d5a3;
  --accent-dark: #5a8c54;
  --text: #2c3e2f;
  --text-light: #667369;
  --bg: #fafaf8;
  --bg-alt: #f3f2f0;
  --border: #e5e3e0;
  --primary: #72ae69;
  --secondary: #ce5464;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.disclosure-bar {
  background: #fff8f0;
  border-bottom: 1px solid #ffe0cc;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8b5a3c;
  font-weight: 500;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.logo-text {
  display: inline-block;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

main {
  min-height: calc(100vh - 200px);
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: #3d5038;
  color: #fff;
}

.section-dark .section-title,
.section-dark > .container > h2,
.section-dark > .container > p:not(.testimonial-disclaimer) {
  color: #fff;
}

.section-dark .pillar-item,
.section-dark .testimonial,
.section-dark .price-card,
.section-dark .faq-item,
.section-dark .lf-quiz,
.section-dark .lf-tabs {
  color: var(--text);
}

.section-dark .pillar-item h3,
.section-dark .testimonial cite {
  color: var(--text);
}

.section-alt {
  background: var(--bg-alt);
}

.section-accent {
  background: var(--accent);
  color: #fff;
}

.section-accent > .container > h2,
.section-accent > .container > p {
  color: #fff;
}

.section-accent .price-card,
.section-accent .pillar-item,
.section-accent .faq-item {
  color: var(--text);
}

.section-accent .price-card h3 {
  color: var(--text);
}

.section-accent .price-card .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}

.section-accent .price-card .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-dark .section-title::after,
.section-accent .section-title::after {
  background: #fff;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(114, 174, 105, 0.05) 0%, rgba(206, 84, 100, 0.02) 100%);
}

.hero-grid-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .hl {
  color: var(--accent);
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: linear-gradient(135deg, rgba(114, 174, 105, 0.06) 0%, rgba(206, 84, 100, 0.03) 100%);
}

.media {
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fafaf8 0%, #eef2eb 100%);
  border: 1px solid var(--border);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-3x4 {
  aspect-ratio: 3/4;
}

.media-4x3 {
  aspect-ratio: 4/3;
}

.media-16x9 {
  aspect-ratio: 16/9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.pillars-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.pillar-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pillar-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.pillar-item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.pillar-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

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

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

.split-content {
  order: 0;
}

.split-content + .media {
  order: 1;
}

.timeline-v {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.tl-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  left: -23px;
  flex-shrink: 0;
}

.timeline-h {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.tl-node {
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-left: 3px solid rgba(255,255,255,0.3);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.notice {
  margin-bottom: 2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.price-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.price-card--featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.price-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  flex-grow: 1;
}

.price-features li::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

.data-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.data-table thead {
  background: var(--accent);
  color: #fff;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:hover {
  background: var(--bg-alt);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.lf-quiz {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lf-q {
  margin-bottom: 2rem;
  display: none;
}

.lf-q.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.lf-q-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.lf-opts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lf-opt {
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-weight: 500;
  font-size: 0.95rem;
}

.lf-opt:hover {
  border-color: var(--accent);
  background: rgba(114, 174, 105, 0.04);
}

.lf-opt[data-selected="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.lf-outcome {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(114, 174, 105, 0.08);
  border-radius: 0.75rem;
  border-left: 4px solid var(--accent);
}

.lf-outcome p {
  margin: 0;
}

.lf-outcome p:first-child {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.lf-tabs {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lf-tablist {
  display: flex;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}

.lf-tab {
  flex: 1;
  min-width: 150px;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lf-tab:hover {
  color: var(--text);
}

.lf-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.lf-panel {
  display: none;
  padding: 2rem;
}

.lf-panel.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(114, 174, 105, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  margin: 0;
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-error {
  font-size: 0.8rem;
  color: #ce5464;
  display: none;
}

.form-error.is-active {
  display: block;
}

.contact-info-panel {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 1rem;
  height: fit-content;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.map-container {
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 90;
  animation: slideUp 0.3s ease;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-banner-text {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner-text a {
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 91;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-panel {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cookie-modal-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle h4 {
  margin: 0 0 0.4rem 0;
  font-size: 0.95rem;
}

.cookie-toggle p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.site-footer {
  background: #2c3e2f;
  color: #fff;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand h4,
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-grid-asymmetric {
    grid-template-columns: 1fr;
  }

  .split-block {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .main-nav a {
    padding: 0.75rem 1.5rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .price-card--featured {
    transform: scale(1);
  }

  .cookie-modal-panel {
    max-width: 90%;
  }

  .data-table {
    font-size: 0.9rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .pillars-wrap {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.cookie-banner{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.cookie-banner.is-visible,.cookie-banner--visible,.cookie-banner.show,.cookie-banner.active{transform:none !important}
.cookie-banner a{color:inherit;text-decoration:underline}
.cookie-banner button{cursor:pointer}
.cookie-modal{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.cookie-modal.is-visible,.cookie-modal--visible,.cookie-modal.show,.cookie-modal.active{display:flex !important}
.cookie-modal-panel,.cookie-modal>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.section-dark .lf-quiz,.section-dark .lf-calc,.section-dark .lf-tabs,.section-dark .lf-carousel,.section-accent .lf-quiz,.section-accent .lf-calc,.section-accent .lf-tabs,.section-accent .lf-carousel{background:#fff !important;color:#1a1a1a !important}
.lf-quiz,.lf-calc{color:#1a1a1a !important}
.lf-quiz label,.lf-calc label,.lf-quiz p,.lf-calc p,.lf-quiz .lf-q-title,.lf-quiz span,.lf-calc span,.lf-out,.lf-result,.lf-tabs .lf-panel,.lf-tabs .lf-panel *{color:#1a1a1a !important}
.lf-out,.lf-result{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.lf-quiz .lf-opt{color:#1a1a1a !important}
.lf-quiz .lf-opt.is-sel{color:#fff !important}
