/* =============================================
   SmartSolve Bookkeeping Solutions
   styles.css — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Variables ── */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* Brand Palette */
  --teal-50:  #E8F5F2;
  --teal-100: #C2E8DE;
  --teal-300: #4DB89A;
  --teal-500: #1D9E75;
  --teal-700: #0F6E56;
  --teal-900: #063D30;

  --warm-50:  #FAF8F4;
  --warm-100: #F2EDE5;
  --warm-200: #E8DFD0;
  --warm-400: #C9B89A;
  --warm-600: #8C7660;

  --dark-900: #0E1A17;
  --dark-800: #142219;
  --dark-700: #1C2E24;
  --dark-600: #243830;
  --dark-500: #2E4A3C;

  --gold-400: #D4A853;
  --gold-300: #E8C27A;

  /* Light Mode */
  --bg-primary:   #FAF8F4;
  --bg-secondary: #F2EDE5;
  --bg-card:      #FFFFFF;
  --bg-dark:      #0E1A17;

  --text-primary:   #142219;
  --text-secondary: #3D5248;
  --text-muted:     #7A9186;
  --text-inverse:   #F0F7F4;

  --border-light: rgba(29, 158, 117, 0.12);
  --border-mid:   rgba(29, 158, 117, 0.25);

  --accent:       #1D9E75;
  --accent-hover: #0F6E56;
  --accent-light: #E8F5F2;
  --gold:         #D4A853;

  --shadow-sm: 0 2px 8px rgba(14, 26, 23, 0.06);
  --shadow-md: 0 4px 24px rgba(14, 26, 23, 0.10);
  --shadow-lg: 0 12px 48px rgba(14, 26, 23, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-primary:   #0E1A17;
  --bg-secondary: #142219;
  --bg-card:      #1C2E24;
  --bg-dark:      #060F0C;

  --text-primary:   #EDF5F0;
  --text-secondary: #9EC4B0;
  --text-muted:     #5E8A76;
  --text-inverse:   #0E1A17;

  --border-light: rgba(77, 184, 154, 0.10);
  --border-mid:   rgba(77, 184, 154, 0.20);

  --accent:       #4DB89A;
  --accent-hover: #6FCFB5;
  --accent-light: rgba(77, 184, 154, 0.12);
  --gold:         #E8C27A;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.serif-italic { font-family: var(--font-serif); font-style: italic; }

p { color: var(--text-secondary); line-height: 1.8; }

/* ── Layout ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(var(--bg-primary-rgb, 250, 248, 244), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] #navbar.scrolled {
  background: rgba(14, 26, 23, 0.92);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-self: start;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  justify-self: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-mid);
  position: relative;
  transition: background var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  top: 2px;
  left: 2px;
  transition: transform var(--transition);
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(20px);
}

/* Mobile Nav Toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid transparent;
  padding-left: 0;
}

.btn-ghost:hover { color: var(--accent-hover); gap: 0.75rem; }

.btn svg, .btn i { font-size: 1rem; }

/* ── Hero Section ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(29, 158, 117, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .hero-bg-pattern {
  background-image:
    radial-gradient(circle at 75% 50%, rgba(77, 184, 154, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.07) 0%, transparent 50%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-mid);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .accent-text {
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

.hero-qb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.qb-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2CA01C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qb-dot span {
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}

/* Hero Image Side */
.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
  aspect-ratio: 3/4;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% top;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--teal-50) 100%);
}

[data-theme="dark"] .hero-photo-placeholder {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

.hero-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.hero-photo-placeholder p {
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.6;
}

.hero-signature {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-primary);
  background: var(--bg-card);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.hero-card-float {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 180px;
  animation: float 4s ease-in-out infinite;
}

.hero-card-float .card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
}

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

/* ── Stat Bar ── */
.stat-bar {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  background: var(--bg-secondary);
}

.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 1.25rem 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.trust-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Services Section ── */
#services { background: var(--bg-secondary); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-light) 100%);
}

.service-card.featured::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--accent);
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  min-height: 3.5rem;
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.service-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231D9E75' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Who We Serve ── */
#who-we-serve { background: var(--bg-primary); }

.audience-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.audience-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}

.audience-tab:hover,
.audience-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.audience-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.audience-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

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

.audience-pains h3 { margin-bottom: 1.25rem; }

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.audience-visual {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
}

.audience-icon-big {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.audience-icon-big svg {
  width: 38px;
  height: 38px;
  stroke: var(--accent);
}

.audience-visual h4 { margin-bottom: 0.5rem; }
.audience-visual p { font-size: 0.9rem; }

.pain-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pain-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.audience-tab svg {
  flex-shrink: 0;
  transition: stroke var(--transition);
}

.audience-tab.active svg,
.audience-tab:hover svg {
  stroke: white;
}

/* ── About Section ── */
#about { background: var(--bg-secondary); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  border-radius: var(--radius-xl) var(--radius-sm) var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--teal-50) 100%);
}

[data-theme="dark"] .about-photo-placeholder {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

.about-photo-placeholder svg { width: 56px; height: 56px; opacity: 0.35; }

.about-certs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.cert-badge .cert-img-slot {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.about-content { padding-top: 1rem; }

.about-content .section-label { margin-bottom: 0.5rem; }
.about-content h2 { margin-bottom: 1.25rem; }

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.6;
}

.about-content p { margin-bottom: 1rem; font-size: 0.95rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.about-stat-item {
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Pricing Section ── */
#pricing { background: var(--bg-primary); }

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }

.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-body); }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-icon svg { width: 10px; height: 10px; }

.pricing-cta { margin-top: auto; }

.pricing-footer-note {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-footer-note strong { color: var(--text-primary); }
.pricing-footer-note p { font-size: 0.9rem; margin: 0; }

/* ── Testimonials ── */
#testimonials { background: var(--bg-secondary); }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 1.5rem; line-height: 0; vertical-align: -0.35rem; margin-right: 2px; font-family: var(--font-display); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* ── Final CTA ── */
#contact {
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] #contact { background: var(--dark-800); }

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(29, 158, 117, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner .section-label { color: var(--teal-300); }

.contact-inner h2 {
  color: #EDF5F0;
  margin-bottom: 1.25rem;
}

.contact-inner > p {
  color: rgba(237, 245, 240, 0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn-white {
  background: white;
  color: var(--dark-900);
  border: 2px solid white;
}

.btn-white:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn-teal-outline {
  background: transparent;
  color: var(--teal-300);
  border: 2px solid rgba(77, 184, 154, 0.5);
}

.btn-teal-outline:hover {
  border-color: var(--teal-300);
  background: rgba(77, 184, 154, 0.1);
  transform: translateY(-2px);
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: rgba(237, 245, 240, 0.7);
  transition: all var(--transition);
}

.channel-pill:hover {
  background: rgba(255,255,255,0.12);
  color: #EDF5F0;
}

/* ── Footer ── */
footer {
  background: var(--dark-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-name { color: #EDF5F0; font-size: 1.4rem; margin-bottom: 0.75rem; display: block; }
.footer-brand .nav-logo-tag { color: var(--teal-300); display: block; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(237, 245, 240, 0.5);
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 245, 240, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

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

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237, 245, 240, 0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(237, 245, 240, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--teal-300); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(237, 245, 240, 0.55);
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}

.footer-contact-item:hover { color: var(--teal-300); }

.footer-qb {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

.footer-cert-slot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(237, 245, 240, 0.5);
}

.footer-cert-slot .qb-dot { width: 24px; height: 24px; }
.footer-cert-slot .qb-dot span { font-size: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(237, 245, 240, 0.3);
}

.footer-bottom a { color: rgba(237, 245, 240, 0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--teal-300); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile Nav Overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-size: 1.25rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-menu-close:hover { background: var(--accent); color: white; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { aspect-ratio: 4/3; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right {
    grid-column: 2;
    justify-self: end;
  }
  .nav-right .btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-qb-badge { margin: 0 auto; }
  .hero-image-side { order: -1; }
  .hero-photo-frame { max-width: 280px; margin: 0 auto; }
  .hero-card-float { display: none; }

  .stat-bar-inner { grid-template-columns: repeat(3, 1fr); }

  .services-grid,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .audience-panel.active { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .stat-bar-inner { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .about-stats { grid-template-columns: 1fr; }
}


/* ── Marketing Partner Strip ── */
.partner-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.partner-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.partner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.partner-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.partner-btn {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

@media (max-width: 600px) {
  .partner-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* ── FAQ ── */
#faq { background: var(--bg-secondary); }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item.open {
  border-color: var(--border-mid);
}

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

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

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  margin: 0;
  padding-top: 1rem;
}

/* ── Audience Photo Cards ── */
.audience-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.audience-photo-placeholder-bg {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

.audience-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 61, 48, 0.92) 0%,
    rgba(6, 61, 48, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.audience-photo-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.audience-photo-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── Sticky Promo Bar ── */
.promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--dark-900);
  border-top: 1px solid rgba(77,184,154,0.25);
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

.promo-bar.visible {
  transform: translateY(0);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.promo-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.promo-bar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: rgba(77,184,154,0.12);
  border: 1px solid rgba(77,184,154,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-bar-text {
  font-size: 0.9rem;
  color: rgba(237,245,240,0.85);
  line-height: 1.4;
}

.promo-bar-text strong {
  color: white;
  font-weight: 600;
}

.promo-bar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.promo-bar-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(237,245,240,0.5);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.promo-bar-close:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

@media (max-width: 640px) {
  .promo-bar-text { font-size: 0.8rem; }
  .promo-bar-tag { display: none; }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--teal-500), var(--teal-300));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(29,158,117,0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.5);
}

/* ── How It Works ── */
#how-it-works { background: var(--bg-primary); }

.hiw-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}

.hiw-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}

.hiw-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.hiw-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(29,158,117,0.1);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.hiw-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hiw-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.hiw-step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.hiw-connector {
  color: var(--border-mid);
  padding: 0 1rem;
  flex-shrink: 0;
  margin-top: -2rem;
}

/* ── Testimonial Carousel (mobile) ── */
@media (max-width: 768px) {
  .testimonials-grid {
    display: block;
    position: relative;
  }

  .testimonial-card {
    min-width: unset;
    scroll-snap-align: unset;
    flex-shrink: unset;
    display: none;
    animation: cardIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testimonial-card.active-card {
    display: flex;
  }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border-mid);
    background: var(--bg-card);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
  }

  .testimonial-nav-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }

  .testimonial-nav-dots {
    display: flex;
    gap: 6px;
  }

  .testimonial-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-mid);
    transition: all var(--transition);
    cursor: pointer;
  }

  .testimonial-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .hiw-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .hiw-connector {
    transform: rotate(90deg);
    margin: 0;
    padding: 0;
  }
  .back-to-top { bottom: 5rem; }
}

/* ── Testimonial Card Stack Exit ── */
@media (max-width: 768px) {
  .testimonial-card.card-exit-up {
    animation: cardExitUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes cardExitUp {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-28px) scale(0.97); }
  }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* ── Corridor Ticker ── */
.corridor-ticker {
  display: inline-block;
  min-width: 120px;
  transition: opacity 0.08s ease;
  letter-spacing: 0.02em;
}

.corridor-ticker.flash {
  opacity: 0;
}

.corridor-desc {
  transition: opacity 0.4s ease;
}

.corridor-final {
  color: var(--accent);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

/* ── MODALS ───────────────────────────────────────────────────── */
.ss-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.ss-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.ss-modal-card {
  background: var(--bg-primary, #fff); border-radius: 1.25rem;
  padding: 2rem; width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(16px); transition: transform 0.25s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.ss-modal-overlay.is-open .ss-modal-card { transform: translateY(0); }
.ss-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); padding: 0.25rem;
  border-radius: 0.5rem; transition: color 0.2s;
}
.ss-modal-close:hover { color: var(--text-primary); }
.ss-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.ss-field label { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.02em; }
.ss-field input, .ss-field select, .ss-field textarea {
  border: 1.5px solid var(--border-color, #e0e0e0); border-radius: 0.65rem;
  padding: 0.7rem 0.9rem; font-size: 0.9rem; font-family: inherit;
  color: var(--text-primary); background: var(--bg-primary);
  width: 100%; transition: border-color 0.2s; resize: none;
}
.ss-field input:focus, .ss-field select:focus, .ss-field textarea:focus { outline: none; border-color: var(--accent); }
.ss-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
.ss-pkg-card { cursor: pointer; position: relative; }
.ss-pkg-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.ss-pkg-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.75rem 0.5rem; border: 1.5px solid var(--border-color, #e0e0e0);
  border-radius: 0.75rem; text-align: center; transition: border-color 0.2s, background 0.2s;
}
.ss-pkg-inner strong { font-size: 0.85rem; color: var(--text-primary); }
.ss-pkg-inner span { font-size: 0.72rem; color: var(--text-secondary); }
.ss-pkg-card input[type="radio"]:checked + .ss-pkg-inner { border-color: var(--accent); background: rgba(56,178,138,0.07); }
.ss-pkg-card:hover .ss-pkg-inner { border-color: var(--accent); }
@media (max-width: 480px) { .ss-pkg-grid { grid-template-columns: 1fr; } }
