/* Design Tokens */
/* ============================================
   DESIGN TOKENS
   Generated by Smooth Builder Pro v3.7 (Inspired Packs)
   ============================================ */

:root {
  /* Preset Meta */
  --preset: "signature";
  --density: "balanced";
  --sp-scale: 1;

  /* Brand Colors */
  --c-primary: #3b661e;
  --c-primary-light: #477a24;
  --c-primary-dark: #2f5218;
  --c-accent: #000000;
  --c-accent-light: #000000;

  /* RGB for modern alpha colors */
  --c-primary-rgb: 59 102 30;
  --c-accent-rgb: 0 0 0;

  /* Neutral Colors (Elite) */
  --c-white: #ffffff;
  --c-white-rgb: 255 255 255;
  --c-black: #000000;
  --c-black-rgb: 0 0 0;
  --c-bg: #faf9f7;
  --c-bg-alt: #f5f4f2;
  --c-text: #18181b;
  --c-text-light: #52525b;
  --c-text-muted: #a8a29e;
  --c-border: #e7e5e4;
  --c-border-light: #f5f5f4;

  /* Surfaces */
  --c-surface: rgba(var(--c-white-rgb, 255 255 255) / 0.75);
  --c-surface-strong: rgba(var(--c-white-rgb, 255 255 255) / 0.92);

  /* Effects */
  --fx-ambient-opacity: 0.85;

  /* Signature Frame (optional) */
  --edge-width: 0px;
  --edge-color-a: transparent;
  --edge-color-b: transparent;

  /* Typography */
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: clamp(calc(0.75rem * var(--sp-scale)), 1vw, calc(0.8rem * var(--sp-scale)));
  --text-sm: clamp(calc(0.875rem * var(--sp-scale)), 1.2vw, calc(0.95rem * var(--sp-scale)));
  --text-base: clamp(calc(1rem * var(--sp-scale)), 1.4vw, calc(1.05rem * var(--sp-scale)));
  --text-lg: clamp(calc(1.125rem * var(--sp-scale)), 1.8vw, calc(1.25rem * var(--sp-scale)));
  --text-xl: clamp(calc(1.25rem * var(--sp-scale)), 2vw, calc(1.5rem * var(--sp-scale)));
  --text-2xl: clamp(calc(1.5rem * var(--sp-scale)), 3vw, calc(2rem * var(--sp-scale)));
  --text-3xl: clamp(calc(1.875rem * var(--sp-scale)), 4vw, calc(2.5rem * var(--sp-scale)));
  --text-4xl: clamp(calc(2rem * var(--sp-scale)), 5vw, calc(3rem * var(--sp-scale)));
  --text-5xl: clamp(calc(2.5rem * var(--sp-scale)), 6vw, calc(3.5rem * var(--sp-scale)));

  --leading-tight: 1.15;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  --tracking-tight: -0.02em;

  /* Spacing (4px baseline) */
  --sp-1: calc(0.25rem * var(--sp-scale));
  --sp-2: calc(0.5rem * var(--sp-scale));
  --sp-3: calc(0.75rem * var(--sp-scale));
  --sp-4: calc(1rem * var(--sp-scale));
  --sp-5: calc(1.25rem * var(--sp-scale));
  --sp-6: calc(1.5rem * var(--sp-scale));
  --sp-8: calc(2rem * var(--sp-scale));
  --sp-10: calc(2.5rem * var(--sp-scale));
  --sp-12: calc(3rem * var(--sp-scale));
  --sp-16: calc(4rem * var(--sp-scale));
  --sp-20: calc(5rem * var(--sp-scale));
  --sp-24: calc(6rem * var(--sp-scale));
  --sp-32: calc(8rem * var(--sp-scale));

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.14);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;

  /* Container */
  --container-max: 720px;
  --container-padding: var(--sp-6);
}

/* Dark Mode helpers: keep tokens stable, but adjust surfaces */
.dark {
  --c-surface: rgba(17, 17, 24, 0.45);
  --c-surface-strong: rgba(17, 17, 24, 0.70);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0.01ms;
    --duration-normal: 0.01ms;
    --duration-slow: 0.01ms;
  }
}

/* Components */
/* ============================================
   COMPONENT STYLES
   Generated by Smooth Builder Pro v3.7 (Inspired Packs)
   ============================================ */

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

/* Signature Frame (optional: set --edge-width > 0) */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: var(--edge-width, 0px);
  background: linear-gradient(
    180deg,
    var(--edge-color-a, transparent) 0%,
    var(--edge-color-b, transparent) 50%,
    var(--edge-color-a, transparent) 100%
  );
  z-index: 999;
  pointer-events: none;
}
body::before { left: 0; }
body::after { right: 0; }



img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: var(--sp-4); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 calc(var(--container-padding) + var(--edge-width, 0px));
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.section-header p {
  color: var(--c-text-light);
  font-size: var(--text-lg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn--primary:hover {
  background: var(--c-primary-light);
  border-color: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--secondary:hover {
  border-color: var(--c-text);
  transform: translateY(-2px);
}

.btn--secondary-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.3);
}
.btn--secondary-light:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--c-accent-rgb), 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--c-bg-alt);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: background 0.15s, border-color 0.15s;
  }
  .btn:hover {
    transform: none;
  }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(var(--c-white-rgb, 255 255 255) / 0.92);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-3) 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

/* Mobile: Fixed 56px height */
@media (max-width: 768px) {
  .header {
    height: 56px;
    padding: 0;
  }
  .header__inner {
    height: 56px;
  }
}

/* Partially Persistent Header States */
.header--hidden {
  transform: translateY(-100%);
}
.header--visible {
  transform: translateY(0);
}
.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dark .header {
  background: rgba(var(--c-black-rgb, 0 0 0) / 0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header__logo {
  width: 36px;
  height: 36px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

@media (min-width: 769px) {
  .header__logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
  }
}
.header__logo img { width: 100%; height: 100%; object-fit: contain; }

.header__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.header__nav-link {
  font-size: var(--text-sm);
  color: var(--c-text-light);
  transition: color var(--duration-fast);
}
.header__nav-link:hover { color: var(--c-text); }

.header__cta {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm);
}

.header__dark-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  padding: 0;
  background: #e2e8f0;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: -8px;
  padding: 8px;
  box-sizing: content-box;
}
.header__dark-toggle::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.header__dark-toggle::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 14px;
  height: 14px;
  background: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fbbf24;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.dark .header__dark-toggle { background: var(--c-primary); }
.dark .header__dark-toggle::before { transform: translateX(24px); }
.dark .header__dark-toggle::after {
  transform: translateX(24px);
  background: #fcd34d;
  box-shadow: inset 4px -2px 0 0 #fbbf24;
  width: 12px;
  height: 12px;
  top: 15px;
  left: 15px;
}
.header__dark-toggle:focus-visible {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.3);
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header__toggle:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-text);
}
.header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  transition: all var(--duration-fast);
}
.header__toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
.header__toggle.open span:nth-child(2) { opacity: 0; }
.header__toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-5px); }

.header__mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 99;
  padding: calc(var(--sp-20) + var(--sp-8)) var(--sp-6) var(--sp-6);
  flex-direction: column;
  gap: var(--sp-4);
}
.header__mobile-nav.open { display: flex; }
.header__mobile-link {
  display: block;
  padding: var(--sp-4);
  font-size: var(--text-xl);
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  /* Account for fixed header: 56px mobile, ~64px desktop */
  padding: calc(56px + var(--sp-12)) 0 var(--sp-20);
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
}

/* Gradient Orbs / Ambient Light */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--c-accent-rgb), 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--c-primary-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none;
  }
}

@media (min-width: 769px) {
  .hero {
    padding: calc(64px + var(--sp-16)) 0 var(--sp-24);
  }

  .hero::before {
    width: 600px;
    height: 600px;
  }

  .hero::after {
    width: 500px;
    height: 500px;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.hero__content { flex: 1; min-width: 280px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--sp-4);
}

.hero__text {
  font-size: var(--text-lg);
  color: var(--c-text-light);
  margin-bottom: var(--sp-8);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hero__image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}
.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__image {
    order: -1;
    max-width: 100%;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust {
  background: var(--c-primary);
  color: var(--c-white);
  padding: var(--sp-6) 0;
}

.trust__inner {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

.trust__item {
  text-align: center;
}

.trust__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
}

.trust__label {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* ============================================
   AUTHORITY STRIP
   ============================================ */

.authority {
  padding: var(--sp-12) 0;
  background: var(--c-bg-alt);
}

.authority__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--sp-6);
}

.authority__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.authority__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
}

.authority__icon {
  font-size: var(--text-base);
}

.authority__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 600px;
  margin: 0 auto;
}

.authority__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: var(--sp-20) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.service-card {
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

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

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.service-card p {
  color: var(--c-text-light);
  font-size: var(--text-base);
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.benefits__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

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

.benefit {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}

.benefit__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(var(--c-primary-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.benefit h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.benefit p {
  color: var(--c-text-light);
  font-size: var(--text-sm);
}

/* ============================================
   TEAM
   ============================================ */

.team {
  padding: var(--sp-20) 0;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-8);
}

.team-member {
  text-align: center;
}

.team-member__image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-text-muted);
}

.team-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.team-member__role {
  color: var(--c-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.team-member__bio {
  color: var(--c-text-light);
  font-size: var(--text-sm);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-4);
}

.gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-border);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-border) 0%, var(--c-bg-alt) 100%);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: var(--sp-20) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.testimonial {
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: var(--text-lg);
  margin-bottom: var(--sp-4);
}

.testimonial__quote {
  font-size: var(--text-lg);
  font-style: italic;
  margin-bottom: var(--sp-6);
  line-height: var(--leading-relaxed);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial__name {
  font-weight: 600;
}

.testimonial__role {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

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

.faq-item summary {
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--c-text-muted);
  transition: transform var(--duration-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--c-text-light);
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: var(--sp-24) 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: var(--c-white);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.cta p {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ============================================
   STICKY CTA
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--c-surface-strong);
  border-top: 1px solid var(--c-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-4) 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.sticky-cta__text {
  flex: 1;
  min-width: 200px;
}

.sticky-cta__headline {
  font-weight: 600;
  font-size: var(--text-base);
}

.sticky-cta__note {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.sticky-cta__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .sticky-cta__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: var(--sp-20) 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
  counter-reset: process;
}

.process__card {
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
}

.process__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

.process__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.process__text {
  color: var(--c-text-light);
  font-size: var(--text-sm);
}

/* ============================================
   PROOF TABLE
   ============================================ */

.proof {
  padding: var(--sp-20) 0;
  background: var(--c-bg-alt);
}

.proof__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.proof__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.proof__table th,
.proof__table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.proof__table th {
  background: var(--c-bg-alt);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof__table th.is-highlight,
.proof__table td.is-highlight {
  background: rgba(var(--c-primary-rgb), 0.08);
  color: var(--c-primary);
  font-weight: 600;
}

.proof__table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

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

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

.footer__tagline {
  color: var(--c-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text-light);
  transition: all var(--duration-fast);
}

.footer__social a:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}

.footer__column ul {
  list-style: none;
}

.footer__column li {
  margin-bottom: var(--sp-2);
}

.footer__column a {
  color: var(--c-text-light);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer__column a:hover {
  color: var(--c-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  color: var(--c-text-muted);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: var(--c-text);
}

@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
  max-width: 480px;
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.cookie-banner p {
  color: var(--c-text-light);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.cookie-banner p a {
  color: var(--c-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cookie-banner__top-row {
  display: flex;
  gap: var(--sp-3);
}

.cookie-banner__reject,
.cookie-banner__settings,
.cookie-banner__necessary {
  flex: 1;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--c-text);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.cookie-banner__reject:hover,
.cookie-banner__settings:hover,
.cookie-banner__necessary:hover {
  border-color: var(--c-text);
}

.cookie-banner__all {
  width: 100%;
  padding: var(--sp-4);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  background: var(--c-primary);
  color: var(--c-white);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.cookie-banner__all:hover {
  background: var(--c-primary-light);
}

@media (max-width: 520px) {
  .cookie-banner {
    left: var(--sp-3);
    right: var(--sp-3);
    bottom: var(--sp-3);
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__panel {
  background: var(--c-surface-strong);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-6);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-6);
}

.cookie-modal__header h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}

.cookie-modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xl);
  cursor: pointer;
  color: var(--c-text-muted);
  transition: all var(--duration-fast);
}

.cookie-modal__close:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

.cookie-prefs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.cookie-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
}

.cookie-pref__meta {
  flex: 1;
}

.cookie-pref__meta strong {
  display: block;
  margin-bottom: var(--sp-1);
}

.cookie-pref__meta span {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 13px;
  transition: background var(--duration-fast);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--c-white);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform var(--duration-fast);
}

.cookie-toggle input:checked + .cookie-toggle::before,
.cookie-toggle:has(input:checked)::before {
  background: var(--c-primary);
}

.cookie-toggle input:checked + .cookie-toggle::after,
.cookie-toggle:has(input:checked)::after {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle::before,
.cookie-toggle:has(input:disabled)::before {
  background: var(--c-primary);
  opacity: 0.6;
}

.cookie-toggle input:disabled + .cookie-toggle::after,
.cookie-toggle:has(input:disabled)::after {
  transform: translateX(22px);
}

.cookie-modal__actions {
  display: flex;
  gap: var(--sp-3);
}

.cookie-modal__actions .btn {
  flex: 1;
}

.cookie-manage-link {
  color: var(--c-text-muted);
  text-decoration: underline;
}

.cookie-manage-link:hover {
  color: var(--c-primary);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: var(--sp-20) 0;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--sp-8);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.legal-page p {
  color: var(--c-text-light);
  margin-bottom: var(--sp-4);
  line-height: var(--leading-relaxed);
}

.legal-page a {
  color: var(--c-primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.is-consent-hidden {
  display: none !important;
}

/* Keyboard Navigation Mode */
.keyboard-nav *:focus {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}

/* ============================================
   STYLE PRESET OVERRIDES
   ============================================ */

/* Signature: baseline with warm, editorial polish */
body[data-style="signature"] { /* defaults apply */ }

/* Glass: translucent surfaces, blur effects */
body[data-style="glass"] .service-card,
body[data-style="glass"] .testimonial,
body[data-style="glass"] .benefit {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body[data-style="glass"] .header {
  background: rgba(255, 255, 255, 0.75);
}

.dark body[data-style="glass"] .service-card,
.dark body[data-style="glass"] .testimonial,
.dark body[data-style="glass"] .benefit {
  background: rgba(17, 17, 24, 0.65);
}

/* Luxe: dark-first, gold accent shine */
body[data-style="luxe"] {
  background: var(--c-bg);
}

body[data-style="luxe"] .btn--primary {
  box-shadow: 0 4px 20px rgba(var(--c-accent-rgb), 0.3);
}

/* Minimal: stripped borders, soft shadows only */
body[data-style="minimal"] .service-card,
body[data-style="minimal"] .testimonial,
body[data-style="minimal"] .benefit,
body[data-style="minimal"] .faq-item {
  border: none;
  box-shadow: var(--shadow-sm);
}

/* Editorial: newspaper-inspired grid lines */
body[data-style="editorial"] .services__grid,
body[data-style="editorial"] .team__grid {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 12px,
      rgba(100, 116, 139, 0.06) 12px,
      rgba(100, 116, 139, 0.06) 13px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 12px,
      rgba(100, 116, 139, 0.06) 12px,
      rgba(100, 116, 139, 0.06) 13px
    );
}

/* GVB editorial: subtle paper + red accents */
body[data-style="gvb"] .trust { background: var(--c-primary); }
body[data-style="gvb"] .benefit__icon { background: rgba(var(--c-accent-rgb, 212 165 116) / 0.22); }

/* Strain: minimal product feel (tighter radii + softer shadows) */
body[data-style="strain"] .service-card,
body[data-style="strain"] .testimonial {
  box-shadow: none;
}
body[data-style="strain"] .btn { border-radius: var(--radius-sm); }
body[data-style="strain"] .hero__image img { box-shadow: var(--shadow-md); border-radius: var(--radius-lg); }

/* Schwizer: dark neon accent handling */
body[data-style="schwizer"] .trust { background: var(--c-primary); }
body[data-style="schwizer"] .btn--primary { box-shadow: 0 10px 30px rgba(var(--c-primary-rgb, 79 208 226) / 0.25); }


