:root {
  --primary: #0052cc;
  --primary-dark: #003d99;
  --primary-light: #4d94ff;
  --accent: #e63946;
  --accent-light: #ff6b7a;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fb;
  --bg-white: #ffffff;
  --border: #e0e0e0;
  --success: #2ecc71;
  --warning: #f39c12;
  --error: #e74c3c;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.disclosure-bar {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.logo:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.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 {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

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

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

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

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

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

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

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

  .main-nav a:hover {
    background: var(--bg-light);
  }
}

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

.section {
  padding: 60px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hl {
  color: var(--accent);
  font-weight: 700;
}

.hero {
  padding: 80px 0;
}

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

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

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 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-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: 12px 32px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

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

.pillar-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.pillar-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pillar-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.bento-span-4 { grid-column: span 4; }
.bento-span-5 { grid-column: span 5; }
.bento-span-7 { grid-column: span 7; }
.bento-span-8 { grid-column: span 8; }

.bento-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.bento-accent i {
  color: var(--accent-light);
}

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

.bento-inner i {
  font-size: 2rem;
  color: var(--primary);
}

.bento-item h3 {
  margin-bottom: 0.5rem;
}

.bento-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.bento-accent p {
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .bento-span-4,
  .bento-span-5,
  .bento-span-7,
  .bento-span-8 {
    grid-column: span 12;
  }
}

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

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

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

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .split-block,
  .split-reverse {
    grid-template-columns: 1fr;
  }

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

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

.feature-list {
  list-style: none;
  margin-left: 0;
}

.feature-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--success);
  font-weight: bold;
  font-size: 1.25rem;
}

.checklist {
  list-style: none;
  margin-left: 0;
}

.checklist li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.checklist li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.timeline-v {
  position: relative;
  padding: 2rem 0;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-1px);
}

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

.tl-step:nth-child(even) {
  grid-template-columns: 1fr auto 1fr;
}

.tl-step:nth-child(even) .tl-content {
  order: -1;
}

.tl-dot {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px var(--bg-light);
}

.tl-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.tl-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .timeline-v::before {
    left: 0;
  }

  .tl-step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .tl-step:nth-child(even) {
    grid-template-columns: 60px 1fr;
  }

  .tl-step:nth-child(even) .tl-content {
    order: 0;
  }

  .tl-dot {
    width: 40px;
    height: 40px;
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

.stats-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2rem;
  font-style: italic;
}

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

.testimonial {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

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

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

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

.faq {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.faq-question i {
  transition: transform var(--transition);
  margin-left: 1rem;
  color: var(--primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.faq-answer-inner a {
  font-weight: 500;
}

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

.price-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.15);
  transform: scale(1.05);
}

.price-card--featured:hover {
  box-shadow: 0 12px 48px rgba(0, 82, 204, 0.25);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.price-features li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

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

.price-card .btn {
  width: 100%;
  margin-top: 1rem;
}

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

.trust-panel {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.trust-list {
  list-style: none;
  margin: 0;
}

.trust-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.trust-panel:nth-child(2) .trust-list li::before {
  content: '✗';
  color: var(--error);
}

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

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

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

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

.form-checkbox input {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

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

.form-error.show {
  display: block;
}

.contact-info-panel {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.contact-info-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item div {
  font-size: 0.95rem;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-info-item a {
  color: var(--primary);
  font-weight: 500;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.map-container iframe {
  display: block;
}

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

  .contact-info-panel {
    height: auto;
  }
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-band .btn {
  margin-top: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.data-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

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

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

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

.element-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.element-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.element-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.element-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.element-box {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.element-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.element-box h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.element-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.ritual-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.ritual-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

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

.ritual-list .ritual-item {
  margin-bottom: 0;
}

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

.obstacle-block {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.obstacle-block h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.work-type-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.work-type-card h3 {
  margin-bottom: 1rem;
}

.work-type-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.balance-note {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.balance-note p {
  margin-bottom: 0;
  font-size: 1rem;
}

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

.template-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.template-item:hover {
  border-color: var(--primary);
}

.template-item h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.template-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  font-size: 0.95rem;
}

.legal-content li {
  line-height: 1.8;
}

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

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

.footer-brand h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-contact {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--primary-light);
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

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

.footer-col a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 1.5rem 0;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 1.5rem;
}

.cookie-banner.hide {
  display: none;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

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

.cookie-modal-panel {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

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

.cookie-modal-panel > p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cookie-toggle > div {
  flex: 1;
}

.cookie-toggle h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

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

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  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: #ccc;
  transition: 0.4s;
  border-radius: 28px;
}

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

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

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

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

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

.lf-calc {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.calc-group {
  margin-bottom: 1.5rem;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.calc-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
  text-align: right;
}

.slider-input {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: background var(--transition);
}

.slider-input::-webkit-slider-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 0 6px rgba(0, 82, 204, 0.1);
}

.slider-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.slider-input::-moz-range-thumb:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 0 6px rgba(0, 82, 204, 0.1);
}

.calc-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 0.5rem;
}

.lf-out {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

.lf-counter {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

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

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

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

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

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

  .footer-grid {
    gap: 2rem;
  }

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

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