/* 
Theme Name: Vouch Mobile
Theme URI: https://wecodeexist.com/
Description: Custom WordPress theme for Vouch Mobile.
Author: wecodeexist
Author URI: https://wecodeexist.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: vouch-mobile
*/

.balance {
	 text-wrap: balance;
}
.fit-content {
	width: fit-content;
}
body .bullets ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}
body .bullets ul li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	font-size: 0.9375rem;
	color: var(--color-text);
}
body .bullets ul li::before {
	content:"";
	background-color: var(--color-primary); 
	-webkit-mask: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%2013l4%204L19%207%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
	mask: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%2013l4%204L19%207%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
	-webkit-mask-size: contain;
	mask-size: contain;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}
.home-value__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.home-value__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 181, 160, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.dark .home-value__card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.home-value__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 181, 160, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
}
.home-value__card--featured .home-value__card-icon {
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}
.home-value__card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.home-value__card--featured .home-value__card-icon svg {
  color: white;
}
.plans-faq__list .e-n-accordion-item {
	border: 1px solid var(--color-border);
	border-radius: 16px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}
.plans-faq__list .e-n-accordion-item:hover {
	border-color: rgba(0, 181, 160, 0.3);
}
.plans-faq__list .e-n-accordion-item:has(.e-n-accordion-item-title[aria-expanded="true"]) {
	border-color: #00b5a0;
}
.plans-faq__list .e-n-accordion-item-title-icon .e-closed {
	display: flex!important;
}
.plans-faq__list .e-n-accordion-item-title-icon .e-opened {
	display: none!important;
}
.plans-faq__list .e-n-accordion-item-title .e-n-accordion-item-title-icon .e-closed svg {
	transition: all 0.3s ease;
	fill: var(--color-text-secondary);
}
.plans-faq__list .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-icon .e-closed svg {
	transform: rotate(45deg);
	fill: var(--color-primary)!important;;
}
.plans-faq__list .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-icon .e-closed svg g {
	fill: var(--color-primary);
}
/** Single State Page **/
/* Cities Grid V2 */
.cities-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-4);
}
.city-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
  padding: var(--spacing-5);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}
.dark .city-card-v2 {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}
.city-card-v2:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.city-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}
.dark .city-icon {
  background: rgba(45, 212, 191, 0.1);
}
.city-content {
  flex: 1;
  min-width: 0;
}
.city-content h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-1);
}
.city-content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}
.city-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  padding: var(--spacing-1) var(--spacing-2);
  background: var(--color-success);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.city-badge .status-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .cities-grid-v2 {
    grid-template-columns: 1fr;
  }
}
/* Benefits Grid V2 */
.benefits-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.benefit-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-4);
  padding: var(--spacing-4);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.dark .benefit-item-v2 {
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}
.benefit-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  border-radius: var(--radius-full);
  color: white;
  flex-shrink: 0;
}
.benefit-item-v2 p {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  padding-top: var(--spacing-1);
}
/* Faqs */
.faq-grid-v2 {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}
.faq-card-v2 {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-card-v2:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.dark .faq-card-v2 {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
  padding: var(--spacing-5) var(--spacing-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-trigger .faq-question-text {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
}
.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition);
}
.dark .faq-icon {
  background: rgba(45, 212, 191, 0.1);
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}
.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item-content p {
  padding: 0 var(--spacing-6) var(--spacing-5);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors - Clean & Professional Light Theme */
  --color-primary: #00B5A0;
  --color-primary-hover: #009D8B;
  --color-primary-glow: rgba(0, 181, 160, 0.3);
  --color-primary-light: rgba(0, 181, 160, 0.08);

  --color-accent: #FF6B4A;
  --color-accent-light: rgba(255, 107, 74, 0.1);
  --color-accent-glow: rgba(255, 107, 74, 0.2);

  --color-dark: #1F2937;
  --color-dark-light: #F8FAFC;
  --color-dark-lighter: #F1F5F9;

  --color-text: #1F2937;
  --color-text-light: #64748B;
  --color-text-muted: #94A3B8;
  --color-text-secondary: #64748B;

  --color-white: #FFFFFF;
  --color-off-white: #F8FAFC;

  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-dark: #1F2937;
  --color-surface: #F8FAFC;

  --color-border: #E2E8F0;
  --color-border-dark: rgba(0, 0, 0, 0.08);

  --color-success: #10B981;
  --color-danger: #EF4444;

  /* Glassmorphism - Light Theme */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-dark-bg: rgba(255, 255, 255, 0.95);
  --glass-dark-border: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Clash Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  --font-size-7xl: 6rem;

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 2rem;
  --header-height: 80px;

  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px var(--color-primary-glow);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Theme Variables */
.dark {
  --color-bg: #0F172A;
  --color-bg-alt: #1E293B;
  --color-bg-dark: #020617;

  --color-text: #F8FAFC;
  --color-text-light: #CBD5E1;
  --color-text-muted: #64748B;

  --color-border: #334155;
  --color-border-dark: rgba(255, 255, 255, 0.1);

  --color-primary: #2DD4BF;
  --color-primary-hover: #14B8A6;
  --color-primary-glow: rgba(45, 212, 191, 0.4);
  --color-primary-light: rgba(45, 212, 191, 0.1);

  --glass-bg: rgba(15, 23, 42, 0.9);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-dark-bg: rgba(15, 23, 42, 0.95);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: var(--font-size-4xl); /* 2.5rem - explicit size prevents deprecated UA font-size reduction in sections */
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-xs {
  font-size: var(--font-size-xs);
}

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

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

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

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

.text-2xl {
  font-size: var(--font-size-2xl);
}

.text-3xl {
  font-size: var(--font-size-3xl);
}

.text-4xl {
  font-size: var(--font-size-4xl);
}

.text-5xl {
  font-size: var(--font-size-5xl);
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-light {
  color: var(--color-text-light);
}

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

.text-white {
  color: var(--color-white);
}

.mb-4 {
  margin-bottom: var(--spacing-4);
}

.mb-8 {
  margin-bottom: var(--spacing-8);
}

.mb-12 {
  margin-bottom: var(--spacing-12);
}

.mt-4 {
  margin-top: var(--spacing-4);
}

.mt-8 {
  margin-top: var(--spacing-8);
}

.mt-12 {
  margin-top: var(--spacing-12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 40px var(--color-primary-glow);
  }

  50% {
    box-shadow: 0 0 80px var(--color-primary-glow);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}
.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  transition: all var(--transition);
  display: inline-block;
}
.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 0;
  height: 1.5px;
  background: var(--color-primary)!important;
  transform: translateY(-50%);
  transition: width var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(8px);
}
.footer-links a:hover::before {
  width: 8px;
}
.footer-divider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 20px;
  margin: var(--spacing-8) 0;
  opacity: 0.4;
}
.signal-bar {
  width: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: signal-pulse 1.5s ease-in-out infinite;
}
.signal-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.signal-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.signal-bar:nth-child(4) { height: 10px; animation-delay: 0.3s; }
.signal-bar:nth-child(5) { height: 6px; animation-delay: 0.4s; }
@keyframes signal-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --font-size-6xl: 3.5rem;
    --font-size-7xl: 5rem;
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-6xl: 3rem;
    --font-size-7xl: 4rem;
    --container-padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.25rem;
    --container-padding: 1.25rem;
  }
}

/* ==========================================================================
   Accessibility: Reduced Motion Support
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable specific background animations */
  .home-hero__particles,
  .home-hero__signal,
  .home-hero__glow,
  .hero-mesh span,
  .hero-orb {
    animation: none !important;
  }

  /* Keep static but visible */
  .home-hero__particle {
    animation: none !important;
    opacity: 0.2;
  }

  .home-hero__signal-ring {
    animation: none !important;
    opacity: 0.3;
  }

  /* Remove parallax/scroll effects */
  html {
    scroll-behavior: auto;
  }
}

/* ── Vouch App Buttons - Deep Links ───────────── */
.reach-checkout-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reach-lines-select {
  height: 55px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid #00D4B8;
  font-size: 16px;
  font-family: "Satoshi", sans-serif;
  background: #fff;
  cursor: pointer;
}
.reach-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: "Satoshi", sans-serif;
	font-weight: 600;
	border-radius: 12px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	font-size: 18px;
	padding: 0.75em 2em;
	color: #fff;
	border: none;
	background-image: linear-gradient(135deg, var(--e-global-color-primary) 0%, #00D4B8 100%);
	box-shadow: 0px 4px 15px 0px rgba(0, 181, 160, 0.3);
}
.reach-btn:hover,
.reach-btn:focus {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 181, 160, 0.4);
	color: #fff;
}
.reach-btn--secondary {
	font-size: 1rem;
	padding: 1rem 1.5rem;
	color: #1F2937;
	fill: #1F2937;
	background-image: none;
	background-color: transparent;
	box-shadow: none;
	border: 2px solid #E2E8F0;
}
.reach-btn--secondary:hover,
.reach-btn--secondary:focus {
	color: var(--e-global-color-primary);
	border-color: var(--e-global-color-primary);
	box-shadow: none;
}
.reach-btn--fullwidth {
  width: 100%;
  justify-content: center;
}
.reach-btn__icon {
  width: .75em;
  height: .75em;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.reach-btn:hover .reach-btn__icon {
  transform: translateX(4px);
}
.reach-btn--large {
  font-size: 22px;
  padding: 1.1em 2.4em;
  border-radius: 16px;
}
/* Reach Checkout Button & Stepper Styles */
.reach-checkout-wrap { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.reach-checkout-wrap > div {
	width: 100%;
}
.reach-stepper-label { 
    font-size: 13px; 
    color: #6b7280; 
    font-weight: 500; 
    text-align: center; 
    margin-bottom: 6px; 
}
.reach-stepper-wrap { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background-color: #00B5A0; 
    border-radius: 30px; 
    padding: 8px 12px; 
    color: #ffffff; 
    font-weight: 600; 
    font-family: inherit; 
    width: 100%; 
}
.reach-stepper-btn { 
    background-color: #e2e8f0; 
    color: #1e293b; 
    border: none; 
    border-radius: 50%; 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    font-size: 20px; 
    line-height: 1; 
    padding: 0; 
    transition: background 0.2s; 
}
.reach-stepper-btn:hover { 
    background-color: #cbd5e1; 
}
/* =========================
   BROADBAND FACTS
========================= */

.broadband-facts{
    max-width:720px;
    font-family:'Satoshi',sans-serif;
    color:#1a1a1a;
    margin: 0 auto;
}
/* TOGGLE */
.broadband-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    margin-bottom:28px;
    font-family:'Clash Display',sans-serif;
    font-size:18px;
    font-weight:600;
    color:#27d8c0;
}
.broadband-toggle svg{
    width:14px;
    transition:transform .25s ease;
}
.broadband-facts.active .broadband-toggle svg{
    transform:rotate(180deg);
}
/* CONTENT */
.broadband-content{
    display:none;
}
.broadband-facts.active .broadband-content{
    display:block;
}
/* TYPOGRAPHY */
.bf-title{
    font-family:'Clash Display',sans-serif;
    font-size:24px;
    line-height:1;
    letter-spacing:-0.02em;
    margin:0 0 8px;
    font-weight: bold;
}
.bf-heading{
    font-family:'Clash Display',sans-serif;
    font-weight:600;
}
.bf-text{
    font-family:'Satoshi',sans-serif;
    line-height:1.45;
    letter-spacing:0;
    margin:0;
}
.bf-bold{
    font-weight:700;
}
/* LINKS */
.broadband-facts a{
    color:inherit;
    text-decoration:underline;
}
/* DIVIDERS */
body .bf-divider{
    border:none;
    border-top:1px solid #181818;
    margin:16px 0;
}
.bf-divider-thick{
    border-top:5px solid #000;
}
/* LAYOUT */
.bf-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}
.bf-column{
    display:flex;
    flex-direction:column;
}
.bf-indent-sm{
    padding-left:5px;
}
.bf-indent{
    padding-left:10px;
}
.bf-spacing-top-sm{
    padding-top:5px;
}
.bf-spacing-top{
    padding-top:10px;
}
.bf-spacing-bottom{
    padding-bottom:10px;
}
.bf-margin-bottom{
    margin-bottom:5px;
}
.bf-margin-top{
    margin-top:7px;
}
@media (max-width:640px){
    .bf-title{
        font-size:20px;
    }
}