:root {
  --primary: #1a3a52;
  --secondary: #2d5a7b;
  --accent: #4a90e2;
  --light: #f0f4f8;
  --lighter: #f8fafc;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --error: #ef4444;
  --white: #ffffff;
  --text: #1e293b;
  --bg: #ffffff;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --spacing: 1rem;
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

.disclosure-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.logo {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.logo:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  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-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

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

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

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

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2eef9 100%);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary);
}

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

.hero-text {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media {
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background-color: #2e7fd4;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section-accent {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f9 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Grid Layouts */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.pillar-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.pillar-item p {
  color: var(--muted);
  line-height: 1.7;
}

/* Split Block (Two Column) */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.split-reverse > .media {
  order: -1;
}

.split-block h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.split-block p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Timeline */
.timeline-v {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.tl-step {
  display: flex;
  gap: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  padding-bottom: 1rem;
}

.tl-dot {
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: -24px;
  margin-top: -8px;
}

.tl-step > div:last-child {
  flex: 1;
}

.tl-step strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-zz {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.tl-left .tl-box {
  order: -1;
}

.tl-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.tl-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.tl-box p {
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.tl-box strong {
  color: var(--text);
}

/* Quiz */
.lf-quiz {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.lf-q:last-of-type {
  margin-bottom: 0;
}

.lf-q-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.lf-opt {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lf-opt:hover {
  border-color: var(--accent);
  background-color: var(--light);
}

.lf-opt.active {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--white);
}

.lf-outcome {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  margin-top: 1.5rem;
}

.lf-outcome p {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.lf-outcome p:last-child {
  margin-bottom: 0;
}

.lf-outcome strong {
  color: var(--primary);
}

/* Carousel */
.lf-carousel {
  position: relative;
  background-color: var(--white);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lf-track {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.lf-slide {
  flex: 0 0 100%;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.testimonial {
  text-align: center;
  max-width: 600px;
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.lf-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lf-car-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.lf-prev {
  left: 1rem;
}

.lf-next {
  right: 1rem;
}

.testimonial-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Daily Rhythm / Table */
.daily-rhythm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.rhythm-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.rhythm-item:last-child {
  border-bottom: none;
}

.rhythm-time {
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.rhythm-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.rhythm-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.framework-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* Pricing Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -0.5rem 0 0.5rem 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.price-features li {
  color: var(--text);
  font-size: 0.95rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Trust Panel */
.trust-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.trust-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.trust-card i.fa-check-circle {
  color: var(--success);
}

.trust-card i.fa-times-circle {
  color: var(--error);
}

.trust-card i.fa-briefcase {
  color: var(--accent);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-list li {
  color: var(--text);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.trust-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.5rem;
}

.trust-notice {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--error);
}

.trust-notice p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Band */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-question:hover {
  background-color: var(--light);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

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

.faq-answer[aria-hidden="false"] {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.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;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

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

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

.form-checkbox label {
  font-weight: normal;
  font-size: 0.95rem;
}

.form-error {
  color: var(--error);
  font-size: 0.85rem;
  display: none;
}

.form-error[data-error]:not(:empty) {
  display: block;
}

.contact-info-panel {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  height: fit-content;
}

.contact-info-panel h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

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

.contact-info-item i {
  color: var(--accent);
  font-size: 1.3rem;
  min-width: 30px;
  text-align: center;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-info-item p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-info-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Activity List */
.activity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  line-height: 1.7;
}

.activity-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Weekly Grid */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.day-box {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.day-box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.day-box p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.day-box p:last-child {
  margin-bottom: 0;
}

/* Recovery List */
.recovery-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recovery-list li {
  padding: 1rem;
  background-color: var(--light);
  border-radius: var(--radius);
  color: var(--text);
  line-height: 1.7;
  border-left: 4px solid var(--accent);
}

.recovery-list strong {
  color: var(--primary);
}

/* Environment Grid */
.environment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.env-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.env-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.env-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.env-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.env-card p:last-child {
  margin-bottom: 0;
}

/* Adjustment Phases */
.adjustment-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.phase-box {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.phase-box p:first-child {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.phase-box p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Tables */
.tracking-table {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead {
  background-color: var(--light);
}

.data-table th {
  text-align: left;
  padding: 1rem;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tbody tr:hover {
  background-color: var(--lighter);
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-brand a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-brand a:hover {
  opacity: 0.8;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-col p {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  animation: slideUp 0.3s ease;
}

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

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-banner-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  animation: fadeIn 0.2s ease;
}

.cookie-modal[aria-hidden="true"] {
  display: none;
}

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

.cookie-modal-panel {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cookie-modal-panel p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.cookie-toggle div h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.cookie-toggle div p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
}

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

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

.slider::before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: var(--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: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cookie-modal-actions .btn {
  flex: 1;
  min-width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--shadow);
    padding: 1rem 0;
  }

  .main-nav[aria-hidden="false"] {
    max-height: 400px;
  }

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

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

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

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

  .split-reverse > .media {
    order: 0;
  }

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

  .tl-item {
    grid-template-columns: 1fr;
  }

  .tl-left .tl-box {
    order: 0;
  }

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

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

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }

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

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

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

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

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

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

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

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

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

/* 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}
