/* ============================================================
   JIGEWI HULUCI — CUSTOM CSS
   Design Concept: Layered Depth
   ============================================================ */


:root {
  --color-bg: #0f1117;
  --color-bg-2: #161a24;
  --color-bg-3: #1c2130;
  --color-surface: #1e2436;
  --color-surface-2: #242b3d;
  --color-surface-3: #2a3249;

  --color-primary: #4f7cff;
  --color-primary-light: #7099ff;
  --color-primary-dark: #3460e0;
  --color-primary-glow: rgba(79, 124, 255, 0.25);

  --color-accent: #7c5cfc;
  --color-accent-light: #9b7ffe;
  --color-accent-glow: rgba(124, 92, 252, 0.25);

  --color-teal: #3dd9c0;
  --color-teal-glow: rgba(61, 217, 192, 0.2);

  --color-text: #e8ecf5;
  --color-text-muted: #8a95b0;
  --color-text-faint: #4a5570;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.18);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-primary: 0 8px 32px rgba(79, 124, 255, 0.3), 0 2px 8px rgba(79, 124, 255, 0.15);
  --shadow-accent: 0 8px 32px rgba(124, 92, 252, 0.3), 0 2px 8px rgba(124, 92, 252, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --header-h: 72px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 7rem);

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Red Hat Text', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-teal); }

ul { list-style: none; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--color-text-muted);
}



.global-eyebrow {
  display: inline-block;
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.global-cta--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.global-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 124, 255, 0.45), 0 4px 12px rgba(124, 92, 252, 0.25);
  color: #fff;
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border-strong);
}

.global-cta--ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  transform: translateY(-2px);
}

.global-cta--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.global-cta--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}


.global-cta-section {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-2), var(--color-bg-3));
  border-top: 1px solid var(--color-border);
}

.global-cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}

.global-cta-section h2 {
  margin-bottom: var(--space-sm);
}

.global-cta-section p {
  margin-bottom: var(--space-lg);
}


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.global-header.scrolled {
  background: rgba(15, 17, 23, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.global-header--solid {
  background: rgba(15, 17, 23, 0.95);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--color-border);
}

.global-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.global-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.global-header__brand {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.global-header__logo:hover .global-header__brand {
  color: var(--color-primary-light);
}

.global-header__nav {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .global-header__nav { display: flex; }
}

.global-header__pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.global-header__pill:hover {
  color: var(--color-text);
  background: var(--color-surface);
}

.global-header__pill--active {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.global-header__pill--cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  box-shadow: var(--shadow-primary);
}

.global-header__pill--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 124, 255, 0.4);
}


.global-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

@media (min-width: 1024px) {
  .global-header__hamburger { display: none; }
}

.global-header__hamburger:hover {
  background: var(--color-surface);
}

.global-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.global-mobile-menu.is-open {
  pointer-events: all;
}

.global-mobile-menu__circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-3), var(--color-surface));
  transform: translate(50%, -50%);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1), height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width, height;
}

.global-mobile-menu.is-open .global-mobile-menu__circle {
  width: 300vmax;
  height: 300vmax;
}

.global-mobile-menu__nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.35s;
}

.global-mobile-menu.is-open .global-mobile-menu__nav {
  opacity: 1;
}

.global-mobile-menu__link {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.global-mobile-menu__link:hover {
  color: var(--color-primary-light);
  background: var(--color-surface);
}

.global-mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease 0.5s, background var(--transition-fast);
  z-index: 1;
}

.global-mobile-menu.is-open .global-mobile-menu__close {
  opacity: 1;
}

.global-mobile-menu__close:hover {
  background: var(--color-surface-3);
}


.global-footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.global-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .global-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .global-footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.global-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.global-footer__brand span {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.global-footer__brand p {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  line-height: 1.5;
}

.global-footer__nav,
.global-footer__legal,
.global-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.global-footer__nav h4,
.global-footer__legal h4,
.global-footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 0.25rem;
}

.global-footer__nav a,
.global-footer__legal a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.global-footer__nav a:hover,
.global-footer__legal a:hover {
  color: var(--color-primary-light);
}

.global-footer__contact p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.global-footer__contact i {
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

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

.global-footer__contact a:hover {
  color: var(--color-primary-light);
}

.global-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--space-lg);
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.global-footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-faint);
}

.global-footer__bottom a {
  color: var(--color-text-faint);
}

.global-footer__bottom a:hover {
  color: var(--color-primary-light);
}

/* ============================================================
   HOME PAGE
   ============================================================ */


.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.home-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.home-hero__bg-shape--1 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(79,124,255,0.18) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.home-hero__bg-shape--2 {
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(124,92,252,0.14) 0%, transparent 70%);
  bottom: 10%;
  left: -8%;
}

.home-hero__bg-shape--3 {
  width: clamp(150px, 25vw, 350px);
  height: clamp(150px, 25vw, 350px);
  background: radial-gradient(circle, rgba(61,217,192,0.1) 0%, transparent 70%);
  top: 30%;
  left: 35%;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .home-hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.home-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 8px var(--color-teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.home-hero__heading {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.home-hero__heading-accent {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__subtext {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.home-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
}

.home-hero__card--back {
  width: 100%;
  max-width: 520px;
  background: var(--color-surface);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.home-hero__card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .home-hero__card-img { height: 380px; }
}

.home-hero__card--front {
  position: absolute;
  bottom: -24px;
  left: -16px;
  z-index: 2;
  background: var(--color-surface-2);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}

@media (max-width: 600px) {
  .home-hero__card--front {
    left: 0;
    bottom: -16px;
  }
}

.home-hero__stat-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.home-hero__stat-badge i {
  font-size: 1.2rem;
  color: var(--color-primary-light);
  width: 32px;
  text-align: center;
}

.home-hero__stat-badge--alt i {
  color: var(--color-teal);
}

.home-hero__stat-badge strong {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.home-hero__stat-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.home-hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  z-index: 1;
  animation: bounce 2.5s infinite;
}

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


.home-intro {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-lg);
}

.home-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-intro__statement {
  font-family: 'Red Hat Display', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
}


.home-features {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.home-features__bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.08) 0%, transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-features__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-features__heading {
  max-width: 640px;
  margin: 0 auto;
}

.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-features__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .home-features__card--tall {
    grid-row: span 2;
  }

  .home-features__card--wide {
    grid-column: span 2;
  }
}

.home-features__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.home-features__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79,124,255,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.home-features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(79,124,255,0.15);
  border-color: rgba(79,124,255,0.2);
}

.home-features__card:hover::before { opacity: 1; }

.home-features__card--accent {
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-surface));
  border-color: rgba(124,92,252,0.2);
}

.home-features__card--accent:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,92,252,0.25);
  border-color: rgba(124,92,252,0.35);
}

.home-features__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-primary);
}

.home-features__card-icon i {
  font-size: 1.1rem;
  color: #fff;
}

.home-features__card h3 {
  margin-bottom: var(--space-xs);
}

.home-features__card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.home-features__card-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  object-fit: cover;
  height: 180px;
}

.home-features__card-img--small {
  height: 120px;
}


.home-how {
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-how__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.home-how__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-how__heading {
  margin-bottom: var(--space-sm);
}

.home-how__subtext {
  max-width: 520px;
  margin: 0 auto;
}

.home-how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .home-how__steps {
    flex-direction: row;
    align-items: flex-start;
  }
}

.home-how__step {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.home-how__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  margin: 0 auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .home-how__connector {
    width: 40px;
    height: 2px;
    margin: auto 0;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    align-self: center;
    margin-top: -40px;
  }
}

.home-how__step-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.home-how__step-body h3 {
  margin-bottom: var(--space-xs);
}

.home-how__step-body p {
  font-size: 0.875rem;
}


.home-who {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.home-who__bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,217,192,0.07) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  pointer-events: none;
}

.home-who__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-who__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-who__heading {
  max-width: 580px;
  margin: 0 auto;
}

.home-who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .home-who__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-who__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-who__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.home-who__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.home-who__card--featured {
  border-color: rgba(79,124,255,0.25);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(79,124,255,0.1);
}

.home-who__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.home-who__card-body {
  padding: var(--space-lg);
}

.home-who__card-body h3 {
  margin-bottom: var(--space-xs);
}

.home-who__card-body p {
  font-size: 0.9rem;
}


.home-highlights {
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.home-highlights__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-highlights__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-highlights__heading {
  max-width: 480px;
  margin: 0 auto;
}

.home-highlights__swiper {
  padding-bottom: 60px !important;
}

.home-highlights__slide {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.home-highlights__slide:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.home-highlights__slide-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,124,255,0.15), rgba(124,92,252,0.15));
  border: 1px solid rgba(79,124,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.home-highlights__slide-icon i {
  font-size: 1.2rem;
  color: var(--color-primary-light);
}

.home-highlights__slide h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.05rem;
}

.home-highlights__slide p {
  font-size: 0.875rem;
}

.swiper-pagination-bullet {
  background: var(--color-text-faint) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  box-shadow: 0 0 8px var(--color-primary-glow);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
}


.home-areas {
  padding: var(--space-2xl) var(--space-lg);
}

.home-areas__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-areas__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.home-areas__heading {
  max-width: 520px;
  margin: 0 auto var(--space-sm);
}

.home-areas__subtext {
  max-width: 600px;
  margin: 0 auto;
}

.home-areas__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .home-areas__layout {
    grid-template-columns: 1fr 1fr;
  }
}

.home-areas__map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.home-areas__map-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.home-areas__map-pin {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.home-areas__map-pin i {
  color: var(--color-primary);
}

.home-areas__regions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.home-areas__region {
  display: flex;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.home-areas__region:hover {
  transform: translateX(4px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.home-areas__region-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,124,255,0.12), rgba(61,217,192,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-areas__region-icon i {
  font-size: 1rem;
  color: var(--color-teal);
}

.home-areas__region h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.home-areas__region p {
  font-size: 0.85rem;
  line-height: 1.6;
}


.home-cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.home-cta-band__bg-shape {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.home-cta-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .home-cta-band__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.home-cta-band__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: var(--space-sm);
}

.home-cta-band__text {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.home-cta-band__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  height: 300px;
  object-fit: cover;
}

/* ============================================================
   CREDENTIALS PAGE
   ============================================================ */

.credentials-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
  text-align: center;
}

.credentials-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.credentials-hero__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,124,255,0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.credentials-hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,92,252,0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

.credentials-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.credentials-hero__heading {
  margin: 0 auto var(--space-md);
  max-width: 700px;
}

.credentials-hero__subtext {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.credentials-story {
  padding: var(--space-2xl) var(--space-lg);
}

.credentials-story__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.credentials-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .credentials-story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.credentials-story__text h2 {
  margin-bottom: var(--space-md);
}

.credentials-story__text p {
  margin-bottom: var(--space-md);
}

.credentials-story__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.credentials-story__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.credentials-story__img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
}

.credentials-story__img-badge i {
  color: var(--color-teal);
  font-size: 1.1rem;
}

.credentials-story__img-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.credentials-pillars {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.credentials-pillars__bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,217,192,0.07) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.credentials-pillars__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.credentials-pillars__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.credentials-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .credentials-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.credentials-pillars__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.credentials-pillars__card--accent {
  background: var(--color-surface-2);
  border-color: rgba(124,92,252,0.15);
}

.credentials-pillars__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-primary);
}

.credentials-pillars__icon i {
  font-size: 1.2rem;
  color: #fff;
}

.credentials-pillars__card h3 {
  margin-bottom: var(--space-xs);
}

.credentials-approach {
  padding: var(--space-2xl) var(--space-lg);
}

.credentials-approach__inner {
  max-width: 900px;
  margin: 0 auto;
}

.credentials-approach__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.credentials-approach__header p {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.credentials-approach__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.credentials-approach__item {
  display: flex;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.credentials-approach__item:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}

.credentials-approach__item-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 40px;
}

.credentials-approach__item h3 {
  margin-bottom: var(--space-xs);
}

/* ============================================================
   WHAT'S COVERED PAGE
   ============================================================ */

.covered-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
  text-align: center;
}

.covered-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.covered-hero__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,124,255,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.covered-hero__bg-shape--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(61,217,192,0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.covered-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.covered-hero__heading {
  margin-bottom: var(--space-md);
}

.covered-hero__subtext {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.covered-scheduling {
  padding: var(--space-2xl) var(--space-lg);
}

.covered-scheduling__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.covered-scheduling__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .covered-scheduling__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.covered-scheduling__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.covered-scheduling__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.covered-scheduling__content h2 {
  margin-bottom: var(--space-md);
}

.covered-scheduling__content p {
  margin-bottom: var(--space-md);
}

.covered-scheduling__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.covered-scheduling__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.covered-scheduling__list li i {
  color: var(--color-teal);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.covered-progress {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.covered-progress__bg-shape {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.covered-progress__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 900px) {
  .covered-progress__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.covered-progress__content h2 {
  margin-bottom: var(--space-md);
}

.covered-progress__content p {
  margin-bottom: var(--space-md);
}

.covered-progress__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .covered-progress__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.covered-progress__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

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

.covered-progress__card--accent {
  background: var(--color-surface-2);
  border-color: rgba(79,124,255,0.15);
}

.covered-progress__card i {
  font-size: 1.3rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.covered-progress__card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.covered-progress__card p {
  font-size: 0.82rem;
}

.covered-templates {
  padding: var(--space-2xl) var(--space-lg);
}

.covered-templates__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.covered-templates__heading {
  margin-bottom: var(--space-2xl);
}

.covered-templates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .covered-templates__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.covered-templates__desc p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.covered-templates__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.covered-templates__feature {
  display: flex;
  gap: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.covered-templates__feature:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}

.covered-templates__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,124,255,0.15), rgba(124,92,252,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.covered-templates__feature-icon i {
  color: var(--color-primary-light);
  font-size: 1rem;
}

.covered-templates__feature h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.covered-templates__feature p {
  font-size: 0.85rem;
}

.covered-reminders {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.covered-reminders__bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,217,192,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.covered-reminders__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.covered-reminders__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .covered-reminders__grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.covered-reminders__img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.covered-reminders__content h2 {
  margin-bottom: var(--space-md);
}

.covered-reminders__content p {
  margin-bottom: var(--space-md);
}

.covered-invoicing {
  padding: var(--space-2xl) var(--space-lg);
}

.covered-invoicing__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.covered-invoicing__heading {
  margin-bottom: var(--space-2xl);
}

.covered-invoicing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .covered-invoicing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.covered-invoicing__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.covered-invoicing__card--accent {
  background: var(--color-surface-2);
  border-color: rgba(124,92,252,0.15);
}

.covered-invoicing__card-num {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.covered-invoicing__card h3 {
  margin-bottom: var(--space-xs);
}

.covered-dashboard {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.covered-dashboard__bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,124,255,0.08) 0%, transparent 70%);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.covered-dashboard__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.covered-dashboard__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.covered-dashboard__subtext {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
}

.covered-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .covered-dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.covered-dashboard__metric {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.covered-dashboard__metric--accent {
  background: var(--color-surface-2);
  border-color: rgba(79,124,255,0.15);
}

.covered-dashboard__metric-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-primary);
}

.covered-dashboard__metric-icon i {
  font-size: 1.1rem;
  color: #fff;
}

.covered-dashboard__metric h3 {
  margin-bottom: var(--space-xs);
}

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */

.membership-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
  text-align: center;
}

.membership-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.membership-hero__bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,92,252,0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.membership-hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61,217,192,0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

.membership-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.membership-hero__heading {
  margin-bottom: var(--space-md);
}

.membership-hero__subtext {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.membership-what {
  padding: var(--space-2xl) var(--space-lg);
}

.membership-what__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.membership-what__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.membership-what__subtext {
  max-width: 680px;
  margin: var(--space-sm) auto 0;
}

.membership-what__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .membership-what__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.membership-what__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.membership-what__card--accent {
  background: var(--color-surface-2);
  border-color: rgba(124,92,252,0.15);
}

.membership-what__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-primary);
}

.membership-what__icon i {
  font-size: 1.1rem;
  color: #fff;
}

.membership-what__card h3 {
  margin-bottom: var(--space-xs);
}

.membership-enrollment {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.membership-enrollment__bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,124,255,0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.membership-enrollment__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.membership-enrollment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .membership-enrollment__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.membership-enrollment__content h2 {
  margin-bottom: var(--space-md);
}

.membership-enrollment__content p {
  margin-bottom: var(--space-md);
}

.membership-enrollment__visual {
  position: relative;
}

.membership-enrollment__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  height: 360px;
  object-fit: cover;
}

.membership-enrollment__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
}

.membership-enrollment__badge i {
  color: var(--color-accent-light);
  font-size: 1.1rem;
}

.membership-enrollment__badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.membership-retention {
  padding: var(--space-2xl) var(--space-lg);
}

.membership-retention__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.membership-retention__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.membership-retention__subtext {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.membership-retention__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .membership-retention__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.membership-retention__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.membership-retention__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,124,255,0.2);
}

.membership-retention__item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,124,255,0.15), rgba(61,217,192,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.membership-retention__item-icon i {
  font-size: 1.2rem;
  color: var(--color-teal);
}

.membership-retention__item h3 {
  margin-bottom: var(--space-xs);
}

.membership-compare {
  position: relative;
  background: var(--color-bg-2);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.membership-compare__bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.membership-compare__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.membership-compare__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.membership-compare__header p {
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.membership-compare__table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.membership-compare__col {
  display: flex;
  flex-direction: column;
}

.membership-compare__col--accent {
  background: linear-gradient(180deg, rgba(79,124,255,0.06), rgba(124,92,252,0.06));
}

.membership-compare__cell {
  padding: 0.8rem var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.membership-compare__cell:last-child {
  border-bottom: none;
}

.membership-compare__cell--label {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.membership-compare__col--header .membership-compare__cell--label {
  background: var(--color-surface-2);
}

.membership-compare__col--accent .membership-compare__cell--label {
  background: rgba(79,124,255,0.12);
  color: var(--color-primary-light);
}

.membership-compare__cell i {
  color: var(--color-teal);
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
  text-align: center;
}

.contact-hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.contact-hero__bg-shape--1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(79,124,255,0.14) 0%, transparent 70%);
  top: -80px;
  right: -80px;
}

.contact-hero__bg-shape--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(61,217,192,0.1) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
}

.contact-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero__heading {
  margin-bottom: var(--space-md);
}

.contact-hero__subtext {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form-section {
  padding: var(--space-2xl) var(--space-lg);
}

.contact-form-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .contact-form-section__grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-form-section__info h2 {
  margin-bottom: var(--space-lg);
}

.contact-form-section__info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-form-section__info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79,124,255,0.15), rgba(124,92,252,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-section__info-icon i {
  color: var(--color-primary-light);
  font-size: 1rem;
}

.contact-form-section__info-item h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.contact-form-section__info-item p {
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-form-section__hours {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.contact-form-section__hours h3 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-section__hours h3 i {
  color: var(--color-teal);
}

.contact-form-section__hours p {
  font-size: 0.875rem;
}

.contact-form-section__form-wrap h2 {
  margin-bottom: var(--space-lg);
}

.contact-form-section__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-section__field {
  margin-bottom: var(--space-md);
}

.contact-form-section__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-form-section__required {
  color: var(--color-primary-light);
}

.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  width: 100%;
  background: var(--color-bg-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.contact-form-section__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a95b0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form-section__field select option {
  background: var(--color-surface);
  color: var(--color-text);
}

.contact-form-section__field input:focus,
.contact-form-section__field select:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.contact-form-section__field input::placeholder,
.contact-form-section__field textarea::placeholder {
  color: var(--color-text-faint);
}

.contact-form-section__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-section__privacy {
  margin-bottom: var(--space-md);
}

.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form-section__checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form-section__checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--color-border-strong);
  background: var(--color-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
}

.contact-form-section__checkbox-label input:checked + .contact-form-section__checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-form-section__checkbox-label input:checked + .contact-form-section__checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.contact-form-section__submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem;
}

.contact-form-section__error {
  margin-top: var(--space-sm);
  color: #ff6b6b;
  font-size: 0.875rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}

.contact-map-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
}

.contact-map-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-map-section h2 {
  margin-bottom: var(--space-lg);
}

.contact-map-section__map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.contact-accessibility {
  padding: var(--space-2xl) var(--space-lg);
}

.contact-accessibility__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-accessibility__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .contact-accessibility__card {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

.contact-accessibility__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
}

.contact-accessibility__icon i {
  font-size: 1.8rem;
  color: #fff;
}

.contact-accessibility__content h2 {
  margin-bottom: var(--space-md);
}

.contact-accessibility__content p {
  margin-bottom: var(--space-md);
}

.contact-accessibility__content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-page__header h1 {
  margin-bottom: var(--space-xs);
}

.legal-page__date {
  font-size: 0.85rem;
  color: var(--color-text-faint);
  margin-bottom: var(--space-md);
}

.legal-page__intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.legal-page__body h2 {
  font-size: 1.2rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__body p {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-page__body a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__body a:hover {
  color: var(--color-teal);
}


.legal-page__cookie-intro {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.legal-page__cookie-intro p {
  margin: 0;
  font-size: 1rem;
}

.legal-page__cookie-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-md) 0 var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.legal-page__cookie-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__cookie-row:last-child {
  border-bottom: none;
}

.legal-page__cookie-row--header {
  background: var(--color-surface-2);
}

.legal-page__cookie-row span {
  padding: 0.7rem var(--space-sm);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-right: 1px solid var(--color-border);
}

.legal-page__cookie-row span:last-child {
  border-right: none;
}

.legal-page__cookie-row--header span {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .legal-page__cookie-row {
    grid-template-columns: 1fr 1fr;
  }
  .legal-page__cookie-row span:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid var(--color-border);
  }
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-page {
  background: var(--color-bg);
}

.thanks-main {
  min-height: calc(100vh - var(--header-h) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
}

.thanks-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thanks-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
  box-shadow: 0 0 40px var(--color-primary-glow), 0 0 80px var(--color-teal-glow);
  animation: thanksDotExpand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes thanksDotExpand {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  opacity: 0;
  animation: thanksFadeIn 0.6s ease forwards 0.7s;
}

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

.thanks-link {
  opacity: 0;
  animation: thanksFadeIn 0.6s ease forwards 1.3s;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.thanks-link:hover {
  color: var(--color-primary-light);
  border-color: var(--color-primary);
  background: var(--color-surface);
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

@media (max-width: 480px) {
  .home-hero__card--front {
    display: none;
  }

  .membership-compare__table {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .membership-compare__cell {
    padding: 0.6rem 0.5rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .home-how__connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    margin: 0 auto;
    align-self: auto;
    margin-top: 0;
  }
}