/* ========================================
   S&I Sparenergie – Main Stylesheet
   Brand Colors:
     Blue:    #79daff
     Green:   #3cc027
     Gray:    #949494
     Anthracite:  #202020
     Anthracite gradient: #000000 → #606060
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: 'Manrope', sans-serif;
}

/* ------------------------------------------
   Glassmorphism – FIX: box-shadow statt border
   (backdrop-filter + border erzeugt Chromium-
   Render-Artefakt / sichtbare Trennlinie)
   ------------------------------------------ */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.glass-light {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55),
              0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-card {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
}

/* ------------------------------------------
   Gradients – Brand Colors
   ------------------------------------------ */
.gradient-hero {
  background: linear-gradient(135deg, #000000 0%, #303030 60%, #606060 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #79daff, #3cc027);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-green {
  background: linear-gradient(135deg, #3cc027, #2da01e);
}

.gradient-blue {
  background: linear-gradient(135deg, #79daff, #1badff);
}

/* ------------------------------------------
   Shadows & Cards
   ------------------------------------------ */
.card-shadow {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 20px 60px -10px rgba(0, 0, 0, 0.08);
}

.card-shadow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-shadow-hover:hover {
  box-shadow:
    0 8px 30px -4px rgba(0, 0, 0, 0.10),
    0 30px 80px -10px rgba(60, 192, 39, 0.12);
  transform: translateY(-4px);
}

/* ------------------------------------------
   Buttons
   ------------------------------------------ */
.btn-primary {
  background: linear-gradient(135deg, #3cc027, #2da01e);
  box-shadow: 0 4px 14px rgba(60, 192, 39, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 192, 39, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ------------------------------------------
   Navigation
   ------------------------------------------ */
.nav-scroll {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   Savings Calculator – Range Input
   ------------------------------------------ */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  outline: none;
  background: linear-gradient(
    to right,
    #3cc027 var(--val, 30%),
    rgba(255, 255, 255, 0.15) var(--val, 30%)
  );
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3cc027, #2da01e);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(60, 192, 39, 0.45);
  transition: transform 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #3cc027, #2da01e);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(60, 192, 39, 0.45);
}

/* ------------------------------------------
   Form Inputs (dunkler Hintergrund)
   ------------------------------------------ */
.input-dark {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  border: none;
}

.input-dark::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.input-dark:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 2px #3cc027, 0 0 0 4px rgba(60, 192, 39, 0.12);
}

.input-dark-prefix {
  position: relative;
}

.input-dark-prefix .prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 1.1rem;
  pointer-events: none;
}

.input-dark-prefix input {
  padding-left: 2.25rem;
}

select.input-dark option {
  background: #202020;
  color: #fff;
}

/* ------------------------------------------
   FAQ Accordion
   ------------------------------------------ */
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ------------------------------------------
   Reviews Carousel
   ------------------------------------------ */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

/* ------------------------------------------
   Stars
   ------------------------------------------ */
.star {
  color: #f59e0b;
}

/* ------------------------------------------
   WhatsApp Float Button
   ------------------------------------------ */
.whatsapp-btn {
  animation: pulse-whatsapp 2.5s ease infinite;
}

@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ------------------------------------------
   Scroll Animations
   ------------------------------------------ */
.observe-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.observe-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.observe-fade-delay-1 { transition-delay: 0.10s; }
.observe-fade-delay-2 { transition-delay: 0.20s; }
.observe-fade-delay-3 { transition-delay: 0.30s; }
.observe-fade-delay-4 { transition-delay: 0.40s; }

/* ------------------------------------------
   Hero Mockup Float
   ------------------------------------------ */
.hero-mockup {
  animation: float 4s ease-in-out infinite;
}

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

/* ------------------------------------------
   Counter
   ------------------------------------------ */
.counter {
  display: inline-block;
}

/* ------------------------------------------
   Exit Intent Modal
   ------------------------------------------ */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.exit-modal.show {
  display: flex;
}

/* ------------------------------------------
   Progress Bar
   ------------------------------------------ */
.progress-bar {
  height: 3px;
  background: linear-gradient(90deg, #3cc027, #79daff);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ------------------------------------------
   Sticky CTA (Mobile only)
   ------------------------------------------ */
@media (max-width: 767px) {
  .sticky-cta {
    display: flex !important;
  }
}

/* ------------------------------------------
   Comparison Table
   ------------------------------------------ */
.comparison-cell-divider {
  border-right: 1px solid #f1f5f9;
}

/* ------------------------------------------
   Savings Input (Calculator)
   ------------------------------------------ */
.savings-input {
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18) !important;
  border: none !important;
}

.savings-input:focus {
  box-shadow: inset 0 0 0 2px #3cc027, 0 0 0 4px rgba(60, 192, 39, 0.14) !important;
}

/* ------------------------------------------
   Energy / Person Toggle Buttons
   ------------------------------------------ */
.energy-btn,
.person-btn {
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  border: none !important;
}

.energy-btn {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.energy-btn.active-energy {
  box-shadow: inset 0 0 0 2px #3cc027;
  background: rgba(60, 192, 39, 0.18) !important;
}

.person-btn {
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
}

.person-btn.active-person {
  box-shadow: inset 0 0 0 2px #3cc027;
  background: rgba(60, 192, 39, 0.18) !important;
}

/* ------------------------------------------
   Savings Result Box
   ------------------------------------------ */
.savings-result-box {
  background: linear-gradient(135deg, rgba(60, 192, 39, 0.15), rgba(45, 160, 30, 0.08));
  box-shadow: inset 0 0 0 1.5px rgba(60, 192, 39, 0.28);
  border-radius: 1.5rem;
}

/* ------------------------------------------
   Form Radio Selection (Contact)
   ------------------------------------------ */
.radio-option input[type="radio"]:checked + div {
  background: rgba(60, 192, 39, 0.22) !important;
  box-shadow: inset 0 0 0 2px #3cc027;
}

.radio-option div {
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
  transition: background 0.2s, box-shadow 0.2s;
}

/* ------------------------------------------
   WhatsApp Checkbox Row
   ------------------------------------------ */
.whatsapp-check-row {
  background: rgba(60, 192, 39, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(60, 192, 39, 0.25);
  border-radius: 0.75rem;
}

/* ------------------------------------------
   Display Headlines – tight tracking + balance
   ------------------------------------------ */
.display-headline {
  letter-spacing: -0.03em;
  text-wrap: balance;
  line-height: 1.05;
}

/* ------------------------------------------
   Grain texture for dark sections
   ------------------------------------------ */
.grain-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
}

/* ------------------------------------------
   Counter / tabular numbers
   ------------------------------------------ */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ------------------------------------------
   Section badges – brand-consistent
   ------------------------------------------ */
.badge-green {
  display: inline-block;
  background: rgba(60, 192, 39, 0.12);
  color: #3cc027;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.badge-gray {
  display: inline-block;
  background: rgba(148, 148, 148, 0.12);
  color: #949494;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

/* ------------------------------------------
   Step cards
   ------------------------------------------ */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(60, 192, 39, 0.12);
  color: #3cc027;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ------------------------------------------
   Hero Notification & Rating Floaters
   ------------------------------------------ */
.hero-floater {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.10);
  border-radius: 1rem;
}

/* ------------------------------------------
   Team Photo Cards (About Section)
   ------------------------------------------ */
.team-photo-card {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #303030;
}

.team-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ------------------------------------------
   Redesign pass overrides
   ------------------------------------------ */
:root {
  --bg: #f7f4ee;
  --bg-soft: #ede5d8;
  --surface: rgba(255, 253, 249, 0.82);
  --surface-strong: #fffdf9;
  --ink: #101715;
  --muted: #5f675f;
  --line: rgba(16, 23, 21, 0.1);
  --green: #4fbc65;
  --green-deep: #2f8a44;
}

body {
  font-family: 'Outfit', sans-serif;
  background:
    radial-gradient(circle at top, rgba(79, 188, 101, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
  color: var(--ink);
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

::selection {
  background: rgba(79, 188, 101, 0.2);
  color: var(--ink);
}

a,
button,
input,
select {
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 188, 101, 0.2);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 18px 60px rgba(28, 37, 33, 0.08);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, #f1ece3 0%, #ebe4d9 100%);
}

.gradient-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(79, 188, 101, 0.18), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #101715 0%, #19221f 48%, #31413a 100%);
}

.hero-section {
  position: relative;
}

.hero-title {
  max-width: 11ch;
}

.hero-panel {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.16);
}

.gradient-text {
  background: linear-gradient(135deg, #d7f3dc 0%, #9fe0ac 18%, #4fbc65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-green {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.gradient-blue {
  background: linear-gradient(135deg, #8db8a1, #5f7f70);
}

.glass {
  background: rgba(255, 255, 255, 0.095);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-light {
  background: rgba(255, 253, 249, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 8px 30px rgba(16, 23, 21, 0.08);
}

.form-card {
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 2rem;
}

.card-shadow {
  box-shadow:
    0 1px 1px rgba(16, 23, 21, 0.04),
    0 10px 32px rgba(16, 23, 21, 0.06),
    0 28px 80px rgba(16, 23, 21, 0.08);
}

.card-shadow-hover:hover {
  box-shadow:
    0 18px 40px rgba(16, 23, 21, 0.08),
    0 30px 80px rgba(47, 138, 68, 0.12);
  transform: translateY(-6px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow:
    0 10px 25px rgba(47, 138, 68, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 18px 34px rgba(47, 138, 68, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-primary:active {
  transform: scale(0.985);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-scroll {
  background: rgba(255, 252, 246, 0.9);
  box-shadow:
    0 1px 0 rgba(16, 23, 21, 0.06),
    0 14px 40px rgba(16, 23, 21, 0.08);
}

.stats-band-section {
  margin-top: -4.5rem;
  position: relative;
  z-index: 2;
}

.stats-band {
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 24px 60px rgba(16, 23, 21, 0.1);
}

.process-grid::before {
  content: "";
  position: absolute;
  inset: 15% 18% auto 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 188, 101, 0.4), transparent);
}

.process-card {
  border-radius: 2rem;
}

.process-card:nth-child(2) {
  transform: translateY(1.75rem);
}

.process-card:nth-child(4) {
  transform: translateY(3.5rem);
}

.process-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
}

.comparison-shell {
  border: 1px solid rgba(16, 23, 21, 0.06);
}

.calculator-shell .form-card,
.contact-shell .form-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card {
  border: 1px solid rgba(16, 23, 21, 0.06);
  background: linear-gradient(180deg, #fffdf9 0%, #f7f3eb 100%);
}

.review-chip {
  box-shadow: inset 0 0 0 1px rgba(79, 188, 101, 0.16);
}

.faq-shell .faq-item {
  border: 1px solid rgba(16, 23, 21, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 235, 0.92));
}

.faq-item.open {
  box-shadow:
    0 16px 40px rgba(16, 23, 21, 0.08),
    0 20px 60px rgba(47, 138, 68, 0.08);
}

.founder-quote {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at top left, rgba(148, 148, 148, 0.05), transparent 20%),
    linear-gradient(180deg, #121212 0%, #1a1a1a 58%, #1f1f1f 100%);
  margin-bottom: -5.5rem;
  padding-bottom: 11rem;
  z-index: 2;
}

.founder-quote::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.76) 52%, #1f1f1f 100%);
}

.contact-shell {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02), transparent 34%),
    linear-gradient(180deg, #1f1f1f 0%, #202020 32%, #1b1b1b 100%);
  z-index: 1;
  padding-top: 5.5rem;
}

.contact-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -180px;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.82) 58%, #1f1f1f 100%);
  z-index: 0;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.social-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer-legal {
  opacity: 0.72;
}

.input-dark {
  border-radius: 1rem;
}

.input-dark:focus {
  box-shadow: inset 0 0 0 2px var(--green), 0 0 0 4px rgba(79, 188, 101, 0.12);
}

.energy-btn.active-energy,
.person-btn.active-person,
.radio-option input[type="radio"]:checked + div {
  background: rgba(79, 188, 101, 0.16) !important;
  box-shadow: inset 0 0 0 2px var(--green);
}

.badge-green {
  background: rgba(79, 188, 101, 0.12);
  color: var(--green-deep);
}

.badge-gray {
  background: rgba(16, 23, 21, 0.06);
  color: #49534d;
}

@media (max-width: 767px) {
  .stats-band-section {
    margin-top: -2.5rem;
  }

  .stats-band {
    padding: 1.35rem;
    border-radius: 1.5rem;
  }

  .process-grid::before,
  .process-card:nth-child(2),
  .process-card:nth-child(4) {
    transform: none;
    content: none;
  }
}

/* ------------------------------------------
   Feedback fixes
   ------------------------------------------ */
:root {
  --bg: #f7f4ee;
  --bg-soft: #efebe5;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #202020;
  --muted: #626262;
  --line: rgba(32, 32, 32, 0.08);
  --green: #3cc027;
  --green-deep: #2da01e;
}

body {
  color: #202020;
}

.gradient-hero {
  background: #202020;
}

.gradient-text {
  background: linear-gradient(135deg, #79daff 0%, #3cc027 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-green {
  background: linear-gradient(135deg, #3cc027, #2da01e);
}

.gradient-blue {
  background: linear-gradient(135deg, #79daff, #1badff);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, #f5f2ec 0%, #efebe5 100%);
}

.nav-scroll {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, #3cc027, #2da01e);
  box-shadow: 0 4px 14px rgba(60, 192, 39, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(60, 192, 39, 0.5);
}

.badge-green {
  background: rgba(60, 192, 39, 0.12);
  color: #3cc027;
}

.badge-gray {
  background: rgba(148, 148, 148, 0.12);
  color: #949494;
}

.process-grid::before {
  content: "";
  position: absolute;
  inset: 16% 18% auto 18%;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 192, 39, 0.25), rgba(148, 148, 148, 0.18), rgba(60, 192, 39, 0.25));
}

.process-card,
.process-card:nth-child(2),
.process-card:nth-child(4) {
  transform: none;
}

.process-card {
  min-height: 100%;
}

.hero-section {
  background: #202020;
}

.hero-logo-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-logo-mark__image {
  width: min(34rem, 52vw);
  opacity: 0.04;
  filter: grayscale(1) brightness(1.15);
  transform: translateY(4%);
}

.hero-floater {
  z-index: 3;
}

.hero-floater-top {
  transform: translateY(-0.5rem);
}

.hero-floater-bottom {
  transform: translateY(0.5rem);
}

.review-card {
  border: none;
  background: #ffffff;
  box-shadow: none;
}

.review-card:hover {
  box-shadow: none;
}

#reviewTrack {
  align-items: stretch;
}

#reviewTrack .review-card {
  border-radius: 2rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.faq-shell .faq-item {
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.96));
}

.hero-panel,
.form-card,
.glass {
  background: #4a4a4a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.founder-quote,
.contact-shell {
  background: #202020;
}

.contact-shell::before,
.founder-quote::after {
  background: none;
}

.contact-shell .absolute.inset-0 {
  display: none;
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 {
  justify-content: center;
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .flex.\-space-x-3 {
  display: none;
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .text-left {
  position: relative;
  padding-left: 2.9rem;
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .text-left p:first-child {
  color: rgba(255, 255, 255, 0.96);
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .text-left p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .text-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.85rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(121, 218, 255, 0.16), rgba(148, 148, 148, 0.24));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.contact-shell .text-center > .flex.items-center.justify-center.gap-3.mb-6 .text-left::after {
  content: "•••";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-58%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.founder-quote .flex-shrink-0.flex.gap-4.items-start > div:last-child {
  position: relative;
  z-index: 2;
  transform: translateY(0);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.14) !important;
}

.founder-quote .quote-copy {
  width: min(100%, 44rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
}

.founder-quote .quote-copy p {
  text-wrap: balance;
}

.founder-quote .quote-copy > p {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
}

.founder-quote .quote-signoff {
  width: min(100%, 44rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.25rem;
  transform: translateX(-1.75rem);
}

.founder-quote .quote-signoff p {
  margin: 0;
  text-align: center;
}

.founder-quote .quote-signoff .h-px {
  width: 100%;
  max-width: none;
}

.founder-quote .observe-fade {
  align-items: center;
}

.founder-quote .flex-shrink-0.flex.gap-4.items-start {
  align-items: center;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-chip {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 767px) {
  .process-grid::before {
    content: none;
  }

  .hero-floater-top,
  .hero-floater-bottom {
    transform: none;
  }
}
