/* ============================================================
   XcelWash – PREMIUM CAR WASH & DETAILING
   style.css – Luxury Design System
   ============================================================ */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary:       #E01F6C;
  --primary-dark:  #B01855;
  --primary-light: #F5A3C7;
  --black:         #000000;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-50:       #F5F5F5;
  --gray-100:      #EDEDED;
  --gray-200:      #CCCCCC;
  --gray-300:      #B3B3B3;
  --gray-400:      #999999;
  --gray-500:      #757575;
  --gray-600:      #555555;
  --gray-700:      #333333;
  --gray-800:      #1A1A1A;
  --gray-900:      #0D0D0D;
  --text-dark:     #000000;
  --text-mid:      #555555;
  --text-light:    #999999;
  --border:        #E5E5E5;
  --border-light:  #F0F0F0;

  --shadow-xs:     0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl:     0 24px 60px rgba(0,0,0,0.1);
  --shadow-card:   0 2px 8px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-btn:    0 4px 14px rgba(224,31,108,0.25);

  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-full:   9999px;

  --font:          'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt:      'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.19, 1, 0.22, 1);

  --nav-h:         80px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--primary);
  color: var(--white);
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 400;
}

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

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  animation: shine 3s infinite 1s;
  pointer-events: none;
}

@keyframes shine {
  0%   { left: -100%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(224,31,108,0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 14px 32px;
  border: 1.5px solid var(--border);
}

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

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 14px 32px;
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* Store badge buttons */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: left;
}

.store-badge div { display: flex; flex-direction: column; line-height: 1.2; }

.store-badge small {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.store-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.store-badge-ic { flex-shrink: 0; }

.store-badge-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--gray-800);
}

.store-badge-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.store-badge-glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.store-badge-glass:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled::before {
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.navbar.light::before {
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-alt);
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.scrolled .nav-logo img,
.light .nav-logo img {
  filter: none;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.3s ease;
}

.scrolled .logo-text,
.light .logo-text {
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.scrolled .nav-link,
.light .nav-link {
  color: var(--text-mid);
}

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

.scrolled .nav-link:hover,
.light .nav-link:hover {
  color: var(--black);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.nav-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

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

.scrolled .hamburger span,
.light .hamburger span {
  background: var(--black);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(300px, 85vw);
  background: var(--black);
  padding: calc(var(--nav-h) + 16px) 16px 24px;
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  z-index: 1000;
}

.mobile-menu-backdrop {
  display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 80px 24px 120px;
  flex: 1;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}

.hero-badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.4s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.5s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero Visual (right side) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.3s forwards;
}

.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mock {
  position: relative;
  width: 320px;
  height: 640px;
  border-radius: 48px;
  background: #0d0d0d;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(255,255,255,0.08);
  z-index: 1;
}

.hero-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: #0d0d0d;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}

.hero-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.hero-phone-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

.hero-phone-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--primary);
}

/* Floating cards */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 2;
}

.float-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-badge-icon svg {
  width: 20px;
  height: 20px;
}

.float-badge div { display: flex; flex-direction: column; }

.float-badge strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.float-badge span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.float-badge-1 {
  top: 60px;
  right: -30px;
  animation: floatAnim 6s var(--ease-out) infinite;
}

.float-badge-1 .float-badge-icon {
  background: rgba(224,31,108,0.1);
  color: var(--primary);
}

.float-badge-3 {
  bottom: 40px;
  left: -40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  animation: floatAnim 6s var(--ease-out) infinite 1.5s;
}

.rating-stars {
  color: #FFB300;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--white);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.services-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.services-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.services-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.catalog-panel {
  display: none;
}

.catalog-panel.is-active {
  display: block;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: rgba(224,31,108,0.08);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gray-600);
  transition: var(--transition);
}

.service-card:hover .service-card-icon svg {
  stroke: var(--primary);
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-card-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 24px;
}

.service-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.service-card-price small {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--text-mid);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SERVICE TYPES SECTION
   ============================================================ */
.service-types-section {
  background: var(--white);
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-type-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.service-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-type-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-type-card:hover .service-type-icon {
  background: rgba(224,31,108,0.08);
}

.service-type-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-600);
  transition: var(--transition);
}

.service-type-card:hover .service-type-icon svg {
  stroke: var(--primary);
}

.service-type-content {
  flex: 1;
  min-width: 0;
}

.service-type-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-type-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.service-type-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gray-50);
  transition: var(--transition);
  align-self: center;
}

.service-type-card:hover .service-type-arrow {
  background: var(--primary);
}

.service-type-arrow svg {
  stroke: var(--gray-500);
  transition: var(--transition);
}

.service-type-card:hover .service-type-arrow svg {
  stroke: var(--white);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Grid pattern */
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Animated border rectangle - light travels around perimeter */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stats-grid::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 16px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg,
    transparent 300deg,
    var(--primary) 300deg,
    var(--primary) 330deg,
    transparent 330deg
  );
  animation: borderSpin 4s linear infinite;
}

.stats-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: var(--black);
}

@keyframes borderSpin {
  to { --border-angle: 360deg; }
}

.stat-card {
  text-align: center;
  color: var(--white);
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-size: 60%;
  vertical-align: super;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--off-white);
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

/* === Traveling Pink Border Highlight === */
@keyframes stepHighlight {
  0%, 15% { border-color: var(--primary); }
  18%, 100% { border-color: var(--border-light); }
}

@keyframes arrowHighlight {
  0%, 6% { opacity: 1; }
  9%, 100% { opacity: 0.15; }
}

.process-step:nth-child(1) { animation: stepHighlight 10s ease infinite; animation-delay: 0s; }
.process-arrow:nth-child(2) .curved-arrow { animation: arrowHighlight 10s ease infinite; animation-delay: 1.5s; }
.process-step:nth-child(3) { animation: stepHighlight 10s ease infinite; animation-delay: 2.5s; }
.process-arrow:nth-child(4) .curved-arrow { animation: arrowHighlight 10s ease infinite; animation-delay: 4s; }
.process-step:nth-child(5) { animation: stepHighlight 10s ease infinite; animation-delay: 5s; }
.process-arrow:nth-child(6) .curved-arrow { animation: arrowHighlight 10s ease infinite; animation-delay: 6.5s; }
.process-step:nth-child(7) { animation: stepHighlight 10s ease infinite; animation-delay: 7.5s; }

.process-step:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* === Curved Dashed Arrow Connectors === */
.process-arrow {
  flex-shrink: 0;
  width: 60px;
  padding: 52px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.curved-arrow {
  width: 100%;
  height: auto;
  opacity: 0.15;
  filter: drop-shadow(0 1px 2px rgba(224,31,108,0.15));
}

/* === Step internals === */
.step-number-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-alt);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--primary);
  transform: scale(1.05);
}

.step-line {
  height: 1px;
  flex: 1;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 0.8s ease;
}

.reveal.revealed .step-line::after {
  width: 100%;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-600);
  transition: stroke 0.3s ease;
}

.process-step:hover .step-icon svg {
  stroke: var(--primary);
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(224,31,108,0.08);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-600);
  transition: var(--transition);
}

.why-card:hover .why-icon svg {
  stroke: var(--primary);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   GALLERY / SHOWCASE
   ============================================================ */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
}

.gallery-item-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   SERVICE CATALOG SECTION
   ============================================================ */
.catalog-section {
  background: var(--white);
}

.catalog-category {
  margin-bottom: 48px;
}

.catalog-category:last-child {
  margin-bottom: 0;
}

.catalog-cat-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 4px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-cat-title::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Matches the app's "POPULAR" badge (black pill, white text). */
.cat-popular-badge {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  height: 22px;
  border-radius: 20px;
  background: #000;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.cat-note {
  font-size: .8rem;
  color: var(--text-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.catalog-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.catalog-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.catalog-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-50);
}

.catalog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-item:hover .catalog-item-img img {
  transform: scale(1.08);
}

.catalog-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

.catalog-item-info {
  padding: 10px 12px 12px;
}

.catalog-item-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.catalog-item-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-weight: 700;
  color: var(--primary);
}

.catalog-currency {
  font-size: 0.7rem;
}

.catalog-amount {
  font-size: 0.92rem;
}

.catalog-unit {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-left: 2px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

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

.pricing-card-featured {
  background: var(--black);
  border-color: var(--gray-800);
  color: var(--white);
  padding-top: 56px;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-plan {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pricing-card-featured .pricing-plan {
  color: var(--white);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-card-featured .pricing-desc {
  color: rgba(255,255,255,0.5);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card-featured .pricing-price {
  border-bottom-color: rgba(255,255,255,0.1);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card-featured .price-currency {
  color: var(--primary);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.pricing-card-featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pricing-card-featured .price-period {
  color: rgba(255,255,255,0.4);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.75);
}

.pricing-features li.disabled {
  opacity: 0.35;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(224,31,108,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  stroke-width: 3;
}

.pricing-card-featured .pricing-check {
  background: rgba(224,31,108,0.2);
}

.pricing-cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-cross svg {
  width: 10px;
  height: 10px;
  stroke: var(--gray-300);
  stroke-width: 2;
}

.pricing-card .btn {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS SECTION (Reels)
   ============================================================ */
.testimonials-section {
  background: var(--white);
}

.reels-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reels-track {
  --reel-w: 300px;
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px 0 12px;
  animation: reelMarquee 42s linear infinite;
  will-change: transform;
}

.reels-marquee:hover .reels-track,
.reels-track.is-paused {
  animation-play-state: paused;
}

@keyframes reelMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}

@media (prefers-reduced-motion: reduce) {
  .reels-marquee { overflow-x: auto; }
  .reels-track { animation: none; }
}

.reel-card {
  flex: 0 0 auto;
  width: var(--reel-w);
}

.reel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

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

.reel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.reel-live {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px; height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.reel-play svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.reel-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.reel-video.is-playing .reel-play { opacity: 0; pointer-events: none; }

.reel-mute {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 2;
  width: 32px; height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.reel-mute svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.reel-video.is-playing .reel-mute { display: flex; }
.reel-mute.is-muted { opacity: 0.6; }

.reel-meta { padding: 16px 6px 0; }

.reel-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.author-info { flex: 1; min-width: 0; }

.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.74rem;
  color: var(--text-light);
}

.author-info strong::after {
  content: ' ✓';
  color: var(--primary);
  font-size: 0.75rem;
}

.reel-text {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-mid);
}

@media (max-width: 560px) {
  .reels-track { --reel-w: 66vw; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

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

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

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

.faq-item[open] {
  border-color: var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-500);
  stroke-width: 2;
  transition: var(--transition);
}

.faq-item[open] .faq-icon {
  background: var(--primary);
}

.faq-item[open] .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  animation: fadeUp 0.3s var(--ease-out);
}

/* FAQ CTA Card */
.faq-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  position: sticky;
  top: 100px;
}

.faq-cta-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-cta-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-contact-options {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
}

.faq-contact-item:hover {
  background: var(--gray-50);
}

.faq-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(224,31,108,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.faq-contact-item div { text-align: left; }

.faq-contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-contact-item span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   DOWNLOAD APP SECTION
   ============================================================ */
.download-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.download-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.download-info {
  max-width: 520px;
}

.download-info .section-tag {
  color: var(--primary);
}

.book-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
  color: var(--white);
}

.book-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.book-perks {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.book-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.book-perk-ic {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.book-perk-ic svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.download-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.download-rating {
  color: #FFB300;
}

.download-rating b {
  color: var(--white);
}

.download-free {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

/* Phone mockup */
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.phone-mock {
  position: relative;
  width: 250px;
  height: 510px;
  border-radius: 40px;
  background: #0d0d0d;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.06);
}

.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-overlay-card {
  position: absolute;
  left: -24px;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  animation: floatAnim 5s var(--ease-out) infinite;
  z-index: 4;
}

.phone-overlay-ic {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(224,31,108,0.1);
}

.phone-overlay-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

.phone-overlay-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.phone-overlay-card span {
  font-size: 0.74rem;
  color: var(--text-light);
}

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

.qr-box {
  display: inline-block;
  padding: 8px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.download-scan p {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-alt);
  color: var(--white);
}

.footer-logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom strong {
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 888;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.scroll-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.msc-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(224,31,108,0.08);
}

.msc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.msc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  min-width: 0;
}

.msc-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.msc-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}

.msc-book {
  margin-left: auto;
  flex-shrink: 0;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
}

.msc-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,31,108,0.35);
}

/* ============================================================
   PAGE HERO (Sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--black);
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,31,108,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .section-tag {
  color: var(--primary);
}

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-top: 24px;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-breadcrumb span {
  opacity: 0.4;
}

/* ============================================================
   PAGE BODY / CONTENT
   ============================================================ */
.page-section {
  padding: 80px 0 100px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 10px;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul.page-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.page-content ul.page-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.page-content ul.page-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.page-content .page-updated {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--gray-50);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.page-content a.inline-link {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.page-content a.inline-link:hover {
  text-decoration: underline;
}

/* Value Cards (About / Sustainability) */
.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.page-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

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

.page-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(224,31,108,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.page-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.page-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.page-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}

/* Page CTA band */
.page-cta {
  margin-top: 72px;
  text-align: center;
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 56px 32px;
  color: var(--white);
}

.page-cta h2 {
  color: var(--white) !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
}

.page-cta p {
  color: rgba(255,255,255,0.6) !important;
  max-width: 480px;
  margin: 0 auto 28px !important;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-types-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content { margin: 0 auto; }
  .hero-subtitle { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .pricing-grid { gap: 20px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-card { position: static; }

  .stats-grid { gap: 24px; }

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

  .download-grid { grid-template-columns: 1fr; gap: 44px; }
  .download-info { max-width: none; }
  .book-subtitle { max-width: none; }
  .download-visual { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE – TABLET SMALL (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
  }

  .nav-toggle:checked ~ .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    cursor: pointer;
  }

  .mobile-menu a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--off-white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .mobile-menu a:hover {
    color: var(--white);
    background: var(--gray-50);
  }

  .mobile-menu-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
    font-weight: 600 !important;
    border-radius: var(--radius-full) !important;
  }

  .mobile-menu-cta:hover {
    color: var(--white) !important;
    background: var(--primary-dark) !important;
  }

  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-types-grid { grid-template-columns: 1fr; }

  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 4px 28px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .why-grid::-webkit-scrollbar { display: none; }

  .why-card {
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: center;
  }

  .process-track {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    flex: none;
    width: 100%;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .process-step:last-child { border-bottom: none; }
  .process-arrow { display: none; }
  .step-number-wrap { width: auto; flex-shrink: 0; margin-bottom: 0; }
  .step-number { width: 36px; height: 36px; font-size: 0.78rem; }
  .step-line { display: none; }
  .step-content { padding-top: 0; }
  .step-icon { margin-bottom: 0; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-row: auto; aspect-ratio: 4/3; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(4) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .scroll-top { bottom: 20px; right: 20px; }
  .scroll-top { bottom: 88px; }
}

/* ============================================================
   SUBSCRIPTION BUILDER
   ============================================================ */
.subscription-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.subscription-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.subscription-builder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.sub-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}

.sub-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.sub-step-head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.sub-step-head p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 2px;
}

.sub-step-no {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-chip {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.sub-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.sub-chip.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.sub-services-group {
  margin-bottom: 16px;
}

.sub-services-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.sub-hscroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  min-width: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.sub-hscroll[hidden] { display: none; }

.sub-hscroll::-webkit-scrollbar { display: none; }

.sub-item {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: var(--transition);
}

.sub-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.sub-item.is-selected {
  border-color: var(--primary);
  background: #FFF0F6;
  box-shadow: 0 0 0 3px rgba(224, 31, 108, 0.12);
}

.sub-item img,
.sub-item-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--gray-50);
}

.sub-item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}

.sub-item-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  min-height: 32px;
}

.sub-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
}

.sub-item-qty {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.sub-item.is-selected .sub-item-qty {
  display: flex;
}

.sub-item-qty .sub-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
  user-select: none;
}

.sub-item-qty .sub-qty-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.sub-item-qty span {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.sub-option {
  flex: 0 0 170px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: var(--transition);
}

.sub-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.sub-option.is-selected {
  border-color: var(--primary);
  background: #FFF0F6;
  box-shadow: 0 0 0 3px rgba(224, 31, 108, 0.12);
}

.sub-option strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
}

.sub-option span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.sub-option small {
  font-size: 0.72rem;
  color: var(--text-mid);
}

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

.subscription-summary {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}

.subscription-summary h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.sum-hint {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.sum-body { margin-top: 16px; }

.sum-block { margin-bottom: 12px; }

.sum-block-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.sum-rows { display: flex; flex-direction: column; gap: 6px; }

.sum-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.sum-item-row b { font-weight: 700; }
.sum-item-row span { color: var(--text-mid); white-space: nowrap; }

.sum-item-row .sum-item-minus {
  font-size: 0.8em;
  font-weight: 700;
  color: var(--success, #16a34a);
  margin-left: 2px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  padding: 10px 0;
  border-top: 1px dashed var(--border-light);
}

.sum-row span { color: var(--text-mid); }
.sum-row b { color: var(--text-dark); font-weight: 700; }

.sum-row.sum-discount b { color: #16a34a; }

.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 16px;
  border-top: 1px solid var(--border);
}

.sum-total span {
  font-weight: 800;
  color: var(--text-dark);
}

.sum-total span small,
.sum-total strong small,
.sub-item-price small {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--text-muted);
}

.sum-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: -6px 0 14px;
  line-height: 1.5;
}

.sum-total strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.sub-cta { width: 100%; justify-content: center; }

@media (max-width: 992px) {
  .subscription-layout { grid-template-columns: 1fr; }
  .subscription-summary { position: static; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 64px 0; }

  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .hero-stat { padding: 0 16px; }

  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-types-grid { grid-template-columns: 1fr; }
  .hero-service-types { justify-content: center; flex-wrap: wrap; }
  .service-type-card { padding: 20px 16px; gap: 14px; }
  .service-type-icon { width: 44px; height: 44px; }
  .service-type-icon svg { width: 20px; height: 20px; }

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

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

  .download-store-row .store-badge { flex: 1; justify-content: center; }
  .download-visual { flex-direction: column; align-items: center; }
  .phone-overlay-card { left: 0; }
  .msc-text { display: none; }
  .msc-icon { display: none; }
  .msc-book { margin-left: 0; flex: 1; }

  .page-hero { padding: 100px 0 60px; }
  .page-section { padding: 48px 0 64px; }
  .page-cards { grid-template-columns: 1fr; }
}
