/* ════════════════════════════════════════════════════
   SubSaved — Styles
   Design tokens, layout, components, animations
════════════════════════════════════════════════════ */

/* ─── 1. CSS Variables ─── */
:root {
  --bg:              #F9FAFB;
  --surface:         #FFFFFF;
  --surface-alt:     #F3F6F9;
  --text-primary:    #111827;
  --text-secondary:  #5C6570;
  --text-muted:      #9CA3AF;
  --accent:          #4F6FAE;
  --accent-dark:     #3D5A8C;
  --accent-light:    #E4E9F4;
  --accent-xlight:   #F4F6FA;
  --success:         #0D9488;
  --success-mid:     #14B8A6;
  --success-light:   #CCFBF1;
  --success-xlight:  #F0FDFA;
  --warning:         #CA8A04;
  --warning-light:   #FEF9C3;
  --border:          #E8EAEE;
  --border-focus:    #A5B4D4;
  --shadow-xs:       0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:       0 1px 3px rgba(15,23,42,0.05);
  --shadow-md:       0 4px 14px rgba(15,23,42,0.06);
  --shadow-lg:       0 10px 28px rgba(15,23,42,0.07);
  --shadow-xl:       0 16px 40px rgba(15,23,42,0.08);
  --shadow-accent:   0 6px 20px rgba(79,111,174,0.15);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-2xl:      36px;
  --max-w:           1200px;
  --nav-h:           68px;
  --font-head:       'Sora', sans-serif;
  --font-body:       'Inter', sans-serif;
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:     cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, button, textarea, select { font-family: inherit; }

/* ─── 3. Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── 4. Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.18s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.01em;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 11px 20px;
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: #C4CADB;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}

.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-chevron {
  margin-left: 6px;
  flex-shrink: 0;
  opacity: 0.75;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-full { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 20px;
}

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

/* ─── 5. Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(247,248,252,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

/* logo.png lockup ~220×44: height-driven */
.logo-img {
  display: block;
  width: auto;
  height: min(36px, calc(var(--nav-h) - 20px));
  object-fit: contain;
  object-position: left center;
}

/* Footer: dark bg — icon (PNG) + light text wordmark (avoids dark serif raster on #111827) */
.logo--footer-lockup {
  gap: 14px;
  line-height: 1;
  text-decoration: none;
}

.logo--footer-lockup:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-img--footer-mark {
  display: block;
  width: auto;
  height: clamp(40px, 5vw, 48px);
  aspect-ratio: 1;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 11px;
}

.logo-footer-wordmark {
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  font-size: clamp(1.125rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-link:hover { color: var(--text-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── 6. Hero ─── */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FAFBFC 0%, #F4F6F8 50%, #F9FAFB 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,233,244,0.45) 0%, rgba(244,246,250,0.2) 55%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success-mid);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--success-light);
  animation: pulse-dot 2.4s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--success-light); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-text-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92,101,112,0.35);
}

.hero-text-link:hover {
  color: var(--accent);
  text-decoration-color: rgba(79,111,174,0.45);
}

.trust-chips {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-chip svg {
  color: var(--success-mid);
  flex-shrink: 0;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 320px;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card--preview {
    animation: float 7s ease-in-out infinite;
  }
}

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

.hero-card-shadow {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 28px;
  background: rgba(15,23,42,0.06);
  filter: blur(16px);
  border-radius: 50%;
  z-index: 1;
}

.hero-card-shadow--soft {
  background: rgba(15,23,42,0.04);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--accent-light);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.hero-card-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

/* Hero preview: before → after monthly (illustration) */
.hero-card-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hero-card-swap-old {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-card-swap-arrow {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.85;
}

.hero-card-swap-new {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-card-savings {
  margin: 0 0 18px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--success);
  letter-spacing: -0.02em;
}

.hero-card-period {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--success-mid);
  opacity: 0.7;
}

.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.hero-card-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px 6px 6px;
  color: var(--text-secondary);
}

.hero-service-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.hero-service-chip-name {
  min-width: 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.hero-card-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── 7. Calculator Section ─── */
.calculator-section {
  padding: 96px 0;
  background: var(--bg);
}

.calculator-card {
  background: var(--surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.calc-step {
  padding: 40px 48px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.calc-step:last-child { border-bottom: none; }

.calc-step--hidden {
  display: none;
}

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Service selection — A–Z grid */
.service-grid {
  display: block;
}

.service-grid-row--flat {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.service-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  gap: 10px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px 16px;
  min-height: 128px;
  cursor: pointer;
  transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s var(--ease-out);
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  border-color: #D5DAE3;
  box-shadow: var(--shadow-sm);
}

.service-card:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

.service-card.selected {
  border-color: rgba(91, 110, 174, 0.45);
  background: rgba(244, 246, 250, 0.95);
  box-shadow: none;
}

.service-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.18s var(--ease-out);
}

.service-card.selected .service-card-check {
  opacity: 1;
  transform: scale(1);
}

.service-card-check svg {
  color: #fff;
}

/* Calculator service marks (raster tiles in service-logos/) */
.service-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  box-sizing: border-box;
}

.service-logo-wrap--reco {
  margin: 0;
}

.service-logo-wrap--sm {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 10px;
}

/* Step 1 picker: larger mark, no inset frame (border/surface) */
.service-logo-wrap--grid {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.service-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card.selected .service-logo-wrap:not(.service-logo-wrap--grid) {
  border-color: rgba(91, 110, 174, 0.45);
  box-shadow: 0 0 0 1px rgba(91, 110, 174, 0.12);
}

/* Service initials (no logos / emoji) — recommendations */
.service-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 6px;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  line-height: 1;
  box-sizing: border-box;
}

.service-card.selected .service-badge {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.service-card.selected .service-badge--grid {
  background: transparent;
  border: none;
  color: var(--accent);
}

.service-card.selected .service-avatar {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

/* Neutral monogram badges (no third-party logos) */
.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  line-height: 1;
  box-sizing: border-box;
}

.service-badge--grid {
  min-width: 64px;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 0;
}

.service-badge--sm {
  min-width: 40px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  font-size: 0.6875rem;
  border-radius: 10px;
}

.service-badge--xs {
  min-width: 28px;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 0.625rem;
  border-radius: 8px;
}

.service-badge--reco {
  min-width: 48px;
  width: 48px;
  height: 48px;
  margin: 0;
  font-size: 0.8125rem;
}

.service-avatar--sm {
  min-width: 36px;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.6875rem;
  border-radius: 8px;
}

.service-avatar--xs {
  min-width: 26px;
  width: 26px;
  height: 26px;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.5625rem;
  border-radius: 6px;
}

.service-avatar--reco {
  min-width: 50px;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
}

.service-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

#step-1 .service-card {
  padding: 14px 10px 12px;
  min-height: 118px;
}

#step-1 .service-card-check {
  top: 8px;
  right: 8px;
}

#step-1 .service-card-name {
  font-size: 0.8125rem;
  line-height: 1.3;
}

.no-selection-hint {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 20px;
  text-align: center;
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px dashed #D5DAE3;
}

.no-selection-hint.visible {
  display: block;
}

.calc-pricing-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.calc-range-hint {
  font-size: 0.8125rem;
  color: #B45309;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}

/* Price Input Rows */
.price-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
  animation: slideInRow 0.22s var(--ease-out) both;
}

@keyframes slideInRow {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.price-input-row:last-child { margin-bottom: 0; }

.price-input-row:hover {
  border-color: #C4CADB;
}

.price-input-service {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}


.price-input-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.price-input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.price-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(79,111,174,0.12);
}

.price-input-field--invalid {
  outline: 2px solid #F87171 !important;
  outline-offset: 0;
}

.price-currency {
  padding: 0 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  border-right: 1.5px solid var(--border);
  height: 42px;
  display: flex;
  align-items: center;
}

.price-input-field {
  border: none;
  outline: none;
  background: transparent;
  width: 80px;
  padding: 0 12px;
  height: 42px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  -moz-appearance: textfield;
}

.price-input-field::-webkit-outer-spin-button,
.price-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-per-month {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-left: 6px;
  flex-shrink: 0;
}

.price-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: none;
  border: none;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.15s;
}

.price-remove-btn:hover {
  background: #FEE2E2;
  color: #EF4444;
}

.price-error {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

/* Calculate CTA */
.calc-cta {
  padding: 32px 48px 36px;
  background: var(--surface-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}

.calc-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── 8. Results Section ─── */
.results-section {
  margin-top: 48px;
}

.results-intro {
  text-align: center;
  margin-bottom: 36px;
}

.results-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.results-summary {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.results-summary strong {
  color: var(--success);
  font-weight: 700;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px 22px;
  box-shadow: none;
  transition: box-shadow 0.2s;
  animation: fadeUpIn 0.35s var(--ease-out) both;
  animation-delay: var(--metric-delay, 0ms);
}

.metric-card:hover { box-shadow: var(--shadow-sm); }

.metric-card--savings {
  border-color: rgba(20,184,166,0.35);
  background: var(--success-xlight);
  position: relative;
  overflow: hidden;
}

.metric-card--savings::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--success-mid), var(--success));
}

.metric-card--savings:hover {
  box-shadow: var(--shadow-sm);
}

.metric-card--annual {
  border-color: rgba(20,184,166,0.35);
  background: var(--success-xlight);
  position: relative;
  overflow: hidden;
}

.metric-card--annual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--success), var(--success-mid));
}

.metric-card--neutral-alt {
  border-color: var(--accent-light);
  background: var(--accent-xlight);
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-label-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.metric-label-text {
  line-height: 1.2;
}

.metric-card--savings .metric-label-icon-wrap,
.metric-card--annual .metric-label-icon-wrap {
  color: var(--success);
}

.metric-card--warn .metric-label-icon-wrap {
  color: var(--warning);
}

.metric-card--neutral-alt .metric-label-icon-wrap {
  color: var(--accent);
}

.uicon {
  display: block;
  flex-shrink: 0;
}

.metric-value {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card--savings .metric-value,
.metric-card--annual .metric-value {
  color: var(--success);
}

.metric-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.metric-card--annual .metric-sub { color: var(--success); opacity: 0.75; }
.metric-card--savings .metric-sub { color: var(--success); opacity: 0.75; }

/* Neutral / warning savings state */
.metric-card--warn {
  border-color: var(--warning);
  background: var(--warning-light);
}

.metric-card--warn .metric-value { color: var(--warning); }

/* ─── 9. Email Gate ─── */
.email-gate {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 48px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.email-gate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--success-light), var(--accent-light));
}

.email-gate-inner { max-width: 520px; margin: 0 auto; }

.email-gate-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-xlight);
  color: var(--accent);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.3s var(--ease-out);
}

.email-gate-icon--success {
  background: var(--success-light);
  color: var(--success);
}

.email-gate-icon svg {
  display: block;
}

.email-gate-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.email-gate-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.email-gate-email {
  color: var(--text-primary);
  font-weight: 600;
}

.email-form {
  width: 100%;
  position: relative;
}

.email-label {
  display: block;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.email-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.site-recaptcha-wrap {
  margin-bottom: 14px;
}

.site-recaptcha-wrap .site-recaptcha {
  display: flex;
  justify-content: flex-start;
}

/* v2 invisible: keep a mount point in DOM; challenge/badge handled by Google */
.site-recaptcha-wrap.site-recaptcha-wrap--invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.email-input {
  width: 100%;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 16px 0 42px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg);
  outline: none;
  transition: all 0.18s;
}

.email-input::placeholder { color: var(--text-muted); }

.email-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(79,111,174,0.15);
  background: var(--surface);
}

.email-input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  margin-bottom: 8px;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.email-error {
  font-size: 0.85rem;
  color: #EF4444;
  text-align: left;
  margin-top: 8px;
}

.email-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ─── 10. Recommendations ─── */
.recommendations-header {
  margin-bottom: 32px;
}

.recommendations-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reco-unlock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.recommendations-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.recommendations-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.reco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.reco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.reco-card:hover {
  box-shadow: var(--shadow-sm);
}

.reco-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.reco-card-header .service-badge--reco {
  background: var(--bg);
  border: 1px solid var(--border);
}

.reco-card-header .service-logo-wrap--reco {
  background: var(--bg);
}

.reco-card-name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.reco-card-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reco-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.reco-price-col { text-align: center; }

.reco-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.reco-price-label-hint {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.9;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reco-price-value {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}

.reco-price-suffix {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.reco-price-suffix--alt {
  color: var(--success);
  opacity: 0.75;
}

.reco-cta-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  padding-top: 4px;
}

.reco-price-value--alt { color: var(--success); }

.reco-price-value--range {
  font-size: 1.125rem;
  line-height: 1.35;
  word-break: break-word;
}
.reco-price-value--strike { text-decoration: line-through; color: var(--text-muted); font-weight: 600; }

.reco-price-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.65;
}

.reco-arrow-svg {
  display: block;
}

.reco-savings-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.reco-savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.reco-savings-badge--neutral {
  background: var(--warning-light);
  color: var(--warning);
}

.reco-savings-badge--neutral .uicon {
  width: 14px;
  height: 14px;
}

.reco-value-msg {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
}

.reco-summary {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.reco-disclaimer { font-size: 0.78rem; color: var(--text-muted); }

/* ─── 11. How It Works ─── */
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.step-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg);
  border: 1.5px solid var(--border);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.step-card-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.step-card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--accent);
  opacity: 0.88;
}

.step-card-icon svg {
  display: block;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 32px 0 8px;
  border-top: 1px solid var(--border);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}

.trust-badge-icon svg {
  display: block;
}

/* ─── 12. FAQ ─── */
.faq-section { background: var(--surface); }

.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 0.9875rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

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

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-out);
  display: flex;
  align-items: center;
}

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

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding: 0 4px 20px;
  animation: faqOpen 0.25s var(--ease-out) both;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── 14. Footer ─── */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo { color: #fff; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer-link:hover { color: #fff; }

.footer-link-external {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-ext-icon {
  flex-shrink: 0;
  opacity: 0.55;
}

.footer-link-external:hover .footer-ext-icon {
  opacity: 0.9;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.34);
  line-height: 1.75;
  max-width: 720px;
}

/* ─── 15. Animations ─── */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-animate="fadeUp"] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

[data-animate="fadeUp"].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="80"] { transition-delay: 0.08s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="160"] { transition-delay: 0.16s; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── 16. Responsive ─── */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .trust-chips { justify-content: center; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease-out), opacity 0.25s;
    z-index: 99;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .btn-nav {
    margin-top: 8px;
    text-align: center;
    padding: 13px 16px;
  }

  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 72px; }
  .hero-headline { font-size: clamp(1.875rem, 9vw, 2.5rem); }

  .calc-step { padding: 28px 24px; }
  .calc-cta { padding: 24px 24px 28px; }

  .service-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .email-gate { padding: 36px 24px; }
  .email-form-row { flex-direction: column; }
  .email-input { height: 48px; }

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

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric-card { padding: 18px 16px; }

  .trust-badges-row { gap: 20px; }
  .trust-badge-item { font-size: 0.8375rem; }

  .footer-nav { flex-direction: column; gap: 28px; }
}

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

  .service-grid-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; justify-content: center; }

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

  .price-input-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .price-per-month { display: none; }

  .email-form-row { gap: 10px; }
  .btn-nav { border-radius: var(--radius-md); }
}

/* ─── 17. Misc Utilities ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-success { color: var(--success); }
.text-muted { color: var(--text-muted); }

/* Smooth reveal for results */
.reveal-in {
  animation: fadeUpIn 0.4s var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-card--preview {
    animation: none !important;
  }

  .badge-dot {
    animation: none !important;
  }

  [data-animate='fadeUp'] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .metric-card,
  .price-input-row,
  .reveal-in {
    animation: none !important;
  }

  .spinner {
    animation: none;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .btn-primary:hover,
  .btn-nav:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .step-card:hover,
  .service-card:hover {
    transform: none;
  }
}
