/* ============================================================
   AdsOvercharge — Component Styles
   Header, Hero, Buttons, Cards, Trust Bar, Stats, Steps, FAQ, Blockquote
   ============================================================ */

/* -------------------------------------------------------
   4. Header & Navigation
   ------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: 0 1px 30px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), .05);
}
.nav-link.active,
.current-menu-item > a.nav-link {
  color: var(--color-primary);
  font-weight: var(--fw-semi);
}
.nav-link.active::after,
.current-menu-item > a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .6875rem 1.75rem;
  margin-left: .75rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-bold);
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-accent) 0%, #357ABD 50%, #2B5EA7 100%);
  border-radius: var(--radius-full);
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              filter var(--t-fast) var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 3px 16px rgba(var(--color-accent-rgb), .3), 0 1px 3px rgba(0,0,0,.1);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--color-accent-rgb), .4), 0 2px 8px rgba(0,0,0,.1);
  filter: brightness(1.08);
}
.nav-cta::after { content: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast) var(--ease-out);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* -------------------------------------------------------
   5. Hero
   ------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  margin-top: var(--header-height);
}

.hero-green {
  background: linear-gradient(160deg, #1E293B 0%, #334155 30%, #3D4F65 60%, #475569 100%);
  color: #fff;
}
.hero-green h1, .hero-green h2, .hero-green h3, .hero-green h4 { color: #fff; }
.hero-green p, .hero-green .lead { color: rgba(255,255,255,.78); }

/* Layered background: dramatic ambient glow */
.hero-green::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(154,52,18,.2) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 15% 20%, rgba(124,45,18,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(6,182,212,.06) 0%, transparent 50%),
    radial-gradient(circle 500px at 80% 20%, rgba(245,158,11,.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Subtle grid lines */
.hero-green::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero.text-center .hero-content { margin: 0 auto; }

/* Staggered hero entrance animations */
.hero-headline {
  animation: hero-fade-up .8s var(--ease-out) .2s both;
}
.hero-subheadline {
  animation: hero-fade-up .8s var(--ease-out) .45s both;
}
.hero-ctas {
  animation: hero-fade-up .8s var(--ease-out) .6s both;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: var(--space-xl);
  text-shadow: 0 4px 80px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.15);
}
.hero-headline .accent {
  display: inline;
  background: linear-gradient(135deg, #7CB8F2 0%, var(--color-accent) 40%, #F0D078 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}

/* Decorative gold accent line */
.hero-accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(232,198,106,.3), transparent);
  border-radius: 2px;
  margin-bottom: var(--space-xl);
  animation: accent-line-grow .8s var(--ease-out) .3s both;
}
@keyframes accent-line-grow {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}
.hero.text-center .hero-accent-line { margin-left: auto; margin-right: auto; }

.hero-subheadline {
  font-size: clamp(1.125rem, 2.2vw, 1.45rem);
  font-weight: var(--fw-light);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: var(--space-2xl);
  color: rgba(255,255,255,.7);
  letter-spacing: 0.005em;
}
.hero.text-center .hero-subheadline { margin-left: auto; margin-right: auto; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.hero.text-center .hero-ctas { justify-content: center; }

/* Hero badge with glassmorphism */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: .5rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,.92);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 30px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.05);
  animation: badge-fade-in .6s var(--ease-out) .1s both;
}
@keyframes badge-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 12px rgba(74, 222, 128, .4);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

/* Decorative floating elements — bokeh-style */
.hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.hero-float-1 {
  width: 650px;
  height: 650px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(74,144,226,.14) 0%, rgba(74,144,226,.04) 40%, transparent 70%);
  animation: float-slow 20s ease-in-out infinite;
  filter: blur(40px);
}
.hero-float-2 {
  width: 550px;
  height: 550px;
  bottom: -150px;
  left: -120px;
  background: radial-gradient(circle, rgba(45,106,79,.18) 0%, rgba(45,106,79,.05) 40%, transparent 70%);
  animation: float-slow 26s ease-in-out infinite reverse;
  filter: blur(40px);
}
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -30px) scale(1.06); }
  66% { transform: translate(-20px, 22px) scale(.94); }
}

/* Hero particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}


/* -------------------------------------------------------
   6. Buttons
   ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: .8125rem 2rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semi);
  line-height: 1.4;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .65s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent) 0%, #357ABD 50%, #2B5EA7 100%);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  filter: brightness(1.08);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), .25);
  transition-duration: 80ms;
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.2);
  font-weight: var(--fw-medium);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-secondary-dark {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}
.btn-secondary-dark:hover {
  color: #fff;
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), .2);
}

.btn-large { padding: 1.0625rem 2.75rem; font-size: var(--font-size-lg); }
.btn-small { padding: .5rem 1.25rem; font-size: var(--font-size-sm); }
.btn-block { width: 100%; }


/* -------------------------------------------------------
   7. Cards
   ------------------------------------------------------- */
.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(var(--color-primary-rgb), .08), 0 12px 24px rgba(0,0,0,.04);
  border-color: rgba(var(--color-accent-rgb), .15);
}
.card h3, .card h4 { margin-bottom: var(--space-sm); color: var(--color-primary-dark); }
.card p { color: var(--color-text-muted); }

/* Animated accent top bar on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }

/* Featured card variant */
.card-featured {
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-bg-white) 100%);
  border-left: 3px solid var(--color-accent);
}
.card-featured::before { display: none; }


/* -------------------------------------------------------
   8. Trust Bar
   ------------------------------------------------------- */
.trust-bar {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
  background: linear-gradient(to right, var(--color-bg-white), var(--color-surface-warm), var(--color-bg-white));
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: .5;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semi);
  color: var(--color-text);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.trust-icon { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: linear-gradient(to bottom, transparent, var(--color-border), transparent); }


/* -------------------------------------------------------
   9. Stats
   ------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #1A4080 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(var(--color-accent-rgb), .1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--color-accent-rgb), .08) 0%, transparent 50%);
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  transition: transform var(--t-base) var(--ease-out);
}
.stat-card:hover { transform: translateY(-4px); }

/* Dividers between stats */
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.12), transparent);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.stat-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}


/* -------------------------------------------------------
   10. Process Steps
   ------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.step-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(var(--color-primary-rgb), .1), 0 12px 24px rgba(0,0,0,.04);
  border-color: rgba(var(--color-accent-rgb), .15);
}
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  margin: 0 auto var(--space-xl);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), .25), 0 2px 8px rgba(0,0,0,.1);
  line-height: 1;
}
.step-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}
.step-text { color: var(--color-text-muted); }

/* Connected vertical steps (how-it-works page) */
.process-steps-connected { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: var(--space-2xl);
  position: relative;
  padding: var(--space-2xl) 0;
  padding-left: 80px;
}
.process-step .step-number {
  position: absolute;
  left: 0;
  top: var(--space-2xl);
  margin: 0;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: calc(var(--space-2xl) + 56px + 8px);
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-border-light));
}
.process-step-content h3 { margin-bottom: var(--space-sm); }


/* -------------------------------------------------------
   11. FAQ Accordion
   ------------------------------------------------------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-xl) 0;
  font-size: var(--font-size-lg);
  font-weight: var(--fw-semi);
  color: var(--color-text);
  text-align: left;
  gap: var(--space-lg);
  transition: color var(--t-fast) var(--ease-out);
  cursor: pointer;
}
.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; }

.faq-item.active .faq-icon {
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: rotate(45deg);
}
.faq-item.active .faq-icon::before { background: #fff; }
.faq-item.active .faq-icon::after { background: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer p {
  padding-bottom: var(--space-xl);
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-right: calc(28px + var(--space-lg));
}


/* -------------------------------------------------------
   12. Blockquote
   ------------------------------------------------------- */
blockquote, .styled-quote {
  position: relative;
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-3xl);
  margin: var(--space-3xl) auto 0;
  max-width: 700px;
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-bg-white) 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.03);
}
blockquote::before {
  content: '\201C';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-lg);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-display);
  opacity: .2;
}
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: normal;
  font-weight: 400;
  color: var(--color-primary-dark);
  line-height: 1.6;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--color-text-light);
  margin-top: var(--space-md);
  letter-spacing: 0.01em;
}
