/* ============================================================
   MILELIFY — Main Stylesheet
   styles.css · shared across all pages
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --plum:             #662456;
  --violet:           #401D68;
  --plum-light:       #8a3070;
  --violet-light:     #5a2d8a;
  --accent:           #FF6B9D;
  --accent2:          #A855F7;
  --gold:             #F5A623;
  --dark:             #0d0818;
  --dark2:            #130d25;
  --white:            #FFFFFF;
  --off-white:        #F8F5FF;
  --light-bg:         #F4F1FA;
  --text-dark:        #1a0d2e;
  --text-mid:         #4a3060;
  --text-muted-dark:  #B8A8C8;
  --text-muted-light: #7a6490;
  --border-dark:      rgba(255,255,255,0.1);
  --border-light:     #e8e0f0;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes ripple {
  from { transform: translateY(-50%) scale(1); opacity: 1; }
  to   { transform: translateY(-50%) scale(2.5); opacity: 0; }
}
@keyframes rippleLoop {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(1.7); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────
   SHARED LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, #FF6B9D 0%, #c084fc 50%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.section-label.on-dark  { color: var(--accent); }
.section-label.on-light { color: var(--plum); }

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 900;
  *letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title.on-light { color: var(--text-dark); }

.section-desc { font-size: 1rem; line-height: 1.72; font-weight: 400; }
.section-desc.on-dark  { color: var(--text-muted-dark); }
.section-desc.on-light { color: var(--text-muted-light); }

/* ─────────────────────────────────────────────────────────────
   SHARED BUTTONS
───────────────────────────────────────────────────────────── */
.btn-ghost {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-primary {
  padding: 9px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 24px rgba(102,36,86,0.4);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 36px rgba(102,36,86,0.6); }

.btn-large {
  padding: 15px 32px;
  font-size: 0.95rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 50px rgba(102,36,86,0.5);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}
.btn-large:hover { transform: translateY(-3px); box-shadow: 0 8px 60px rgba(102,36,86,0.7); }

.btn-outline-large {
  padding: 15px 32px;
  font-size: 0.95rem;
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-outline-large:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.35); }

/* ─────────────────────────────────────────────────────────────
   NAV — desktop
───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,8,24,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-muted-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

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

/* ─────────────────────────────────────────────────────────────
   NAV — hamburger button
───────────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 200;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.07); }

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   MOBILE MENU OVERLAY
───────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  background: rgba(13,8,24,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 90px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,36,86,0.5), rgba(255,107,157,0.3), transparent);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover { color: var(--white); }
.mobile-nav-links li a::after {
  content: '→';
  margin-left: auto;
  font-size: 0.9rem;
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-links li a:hover::after { opacity: 0.7; transform: translateX(4px); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.mobile-menu-cta .btn-large,
.mobile-menu-cta .btn-outline-large {
  display: block;
  text-align: center;
  padding: 15px 24px;
  font-size: 0.95rem;
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.mobile-menu-footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.15s;
}
.mobile-menu-footer a:hover { color: rgba(255,255,255,0.7); }

body.menu-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   HERO — two-column
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 5% 5%, rgba(102,36,86,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 15%, rgba(64,29,104,0.55) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(102,36,86,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,157,0.35);
  background: rgba(255,107,157,0.08);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4.5vw, 3rem);
  line-height: 1.05;
  *letter-spacing: -0.05em;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  line-height: 1.75;
  margin-top: 24px;
  font-weight: 400;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.2s;
}
.store-badge:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.store-badge svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s ease both;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.stat { text-align: left; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.stat-label { font-size: 0.73rem; color: var(--text-muted-dark); margin-top: 2px; font-weight: 400; }

/* Hero right — media card */
.hero-right {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
}

.hero-media-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.media-placeholder {
  position: relative; /* ADD THIS */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.media-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
}
.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.play-btn {
  position: relative;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(102,36,86,0.6);
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 1;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(102,36,86,0.4);
  animation: rippleLoop 2s infinite;
}
.play-btn svg { width: 26px; height: 26px; margin-left: 4px; }

.media-label {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.media-screen-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(13,8,24,0.88));
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  gap: 10px;
}
.screen-chip {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.screen-chip span {
  color: white;
  font-size: 0.95rem;
  display: block;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Floating bubbles */
.hero-float {
  position: absolute;
  background: rgba(13,8,24,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-float-1 { top: -18px; right: 24px; animation: float 3.5s ease-in-out infinite; }
.hero-float-2 { bottom: -18px; left: 20px; animation: float 4.2s 0.6s ease-in-out infinite; }
.float-val   { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.15rem; letter-spacing: -0.04em; color: var(--gold); }
.float-sub   { font-size: 0.65rem; color: var(--text-muted-dark); margin-bottom: 2px; }

/* ─────────────────────────────────────────────────────────────
   LOGOS BAR
───────────────────────────────────────────────────────────── */
.logos-section {
  background: #ffffff;
  padding: 36px 24px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.logos-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logo-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #c0b4d4;
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────────── */
.how-section {
  background: #ffffff;
  padding: 110px 0;
  color: var(--text-dark);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-number {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted-light);
  transition: all 0.3s;
}
.step:hover .step-number {
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: white;
  border-color: transparent;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}
.step p { font-size: 0.875rem; color: var(--text-muted-light); line-height: 1.65; }

/* How it works — visual card */
.visual-card {
  background: linear-gradient(145deg, #1a0f2e, #2b1650);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(64,29,104,0.22);
}
.map-mock {
  background: rgba(0,0,0,0.4);
  border-radius: 16px;
  height: 180px;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}
.map-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-route { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.route-line {
  width: 80%; height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--accent));
  border-radius: 2px;
  position: relative;
}
.route-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
  position: absolute; top: 50%; transform: translateY(-50%);
}
.route-dot.start { left: 0; background: var(--plum); box-shadow: 0 0 20px var(--plum); }
.route-dot.end   { right: 0; }
.route-pulse {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%);
  animation: ripple 1.5s infinite;
}
.trip-meta { display: flex; gap: 12px; }
.meta-chip {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.meta-chip-val {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: white;
}
.meta-chip-label { font-size: 0.68rem; color: var(--text-muted-dark); margin-top: 2px; }

/* Trip category block */
.trip-category-block { margin-top: 16px; }
.trip-category-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.trip-category-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.trip-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.trip-pill--biz {
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: white;
  box-shadow: 0 0 20px rgba(102,36,86,0.4);
}
.trip-pill--dim {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ─────────────────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────────────────── */
.features-section {
  background: var(--dark2);
  padding: 110px 0;
}
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-desc { margin: 0 auto; max-width: 520px; }

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

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 34px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.feature-card:hover {
  border-color: rgba(102,36,86,0.4);
  background: rgba(102,36,86,0.07);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(102,36,86,0.15);
}

.feature-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
/* Feature icon colour variants */
.feature-icon--plum    { background: rgba(102,36,86,0.25);  border: 1px solid rgba(102,36,86,0.4); }
.feature-icon--violet  { background: rgba(64,29,104,0.3);   border: 1px solid rgba(64,29,104,0.45); }
.feature-icon--purple  { background: rgba(147,51,234,0.2);  border: 1px solid rgba(147,51,234,0.35); }
.feature-icon--gold    { background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.3); }
.feature-icon--plum2   { background: rgba(138,48,112,0.22); border: 1px solid rgba(138,48,112,0.35); }
.feature-icon--violet2 { background: rgba(90,45,138,0.25);  border: 1px solid rgba(90,45,138,0.4); }
.feature-icon--pink    { background: rgba(255,107,157,0.15);border: 1px solid rgba(255,107,157,0.28); }

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.feature-card p { font-size: 0.85rem; color: var(--text-muted-dark); line-height: 1.65; }
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(102,36,86,0.2);
  color: var(--accent);
  border: 1px solid rgba(102,36,86,0.3);
  letter-spacing: 0.02em;
}

/* Featured (2-col span) card */
.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(102,36,86,0.15), rgba(64,29,104,0.2));
  border-color: rgba(102,36,86,0.22);
}
.feature-card-two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.feature-stats-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 140px;
}
.feature-stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.feature-stat-label { font-size: 0.68rem; color: var(--text-muted-dark); margin-bottom: 6px; }
.feature-stat-val   { font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.feature-stat-val--accent { color: var(--accent); }
.feature-stat-val--gold   { color: var(--gold); }

/* Featured-full (3-col span) card */
.feature-card.featured-full {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Dashboard preview inside featured-full */
.dashboard-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 24px;
}
.dashboard-bar-row { margin-bottom: 18px; }
.dashboard-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard-bar-label { font-size: 0.75rem; color: var(--text-muted-dark); }
.dashboard-bar-value { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 800; color: white; }
.dashboard-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.dashboard-fill {
  width: 66%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--plum), var(--accent2));
}
.dashboard-chips {
  display: flex;
  gap: 10px;
}
.dashboard-chip {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.dashboard-chip--highlight { border-color: rgba(245,166,35,0.2); background: rgba(245,166,35,0.06); }
.dashboard-chip-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 4px;
}
.dashboard-chip-num--muted { color: var(--text-muted-dark); }
.dashboard-chip-num--gold  { color: var(--gold); }
.dashboard-chip-label { font-size: 0.65rem; color: var(--text-muted-dark); }

/* ─────────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--light-bg);
  padding: 110px 0;
  color: var(--text-dark);
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-desc { max-width: 460px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.plan-card {
  border-radius: 26px;
  padding: 34px 26px;
  border: 1.5px solid var(--border-light);
  background: white;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(64,29,104,0.06);
  position: relative;
}
.plan-card:hover { box-shadow: 0 12px 48px rgba(64,29,104,0.12); transform: translateY(-3px); }

.plan-card.popular {
  background: linear-gradient(145deg, var(--plum), var(--violet));
  border-color: transparent;
  box-shadow: 0 16px 60px rgba(102,36,86,0.35);
  color: white;
}
.plan-card.popular:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(102,36,86,0.45); }

.popular-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: #1a0d2e;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: var(--text-muted-light);
}
.plan-card.popular .plan-name { color: rgba(255,255,255,0.7); }

.plan-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--text-dark);
}
.plan-card.popular .plan-price { color: white; }

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 4px;
  margin-bottom: 26px;
}
.plan-card.popular .plan-period { color: rgba(255,255,255,0.65); }

.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.plan-features li::before { content: '✓'; font-weight: 800; flex-shrink: 0; color: var(--plum); }
.plan-card.popular .plan-features li       { color: rgba(255,255,255,0.85); }
.plan-card.popular .plan-features li::before { color: rgba(255,255,255,0.7); }

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: white;
}
.plan-btn:hover { background: var(--light-bg); }
.plan-btn.filled {
  background: white;
  border-color: transparent;
  color: var(--plum);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-weight: 800;
}
.plan-btn.filled:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-section {
  background: white;
  padding: 110px 0;
  color: var(--text-dark);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }

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

.testimonial-card {
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: 22px;
  padding: 30px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(102,36,86,0.25);
  box-shadow: 0 12px 40px rgba(102,36,86,0.08);
  transform: translateY(-3px);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
/* Avatar colour variants */
.reviewer-avatar--1 { background: linear-gradient(135deg, var(--plum),   var(--violet)); }
.reviewer-avatar--2 { background: linear-gradient(135deg, #401D68, #662456); }
.reviewer-avatar--3 { background: linear-gradient(135deg, #8a3070, #5a2d8a); }

.reviewer-name  { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.reviewer-title { font-size: 0.73rem; color: var(--text-muted-light); }

/* ─────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--light-bg);
  padding: 110px 0;
  color: var(--text-dark);
}
.faq-header { text-align: center; margin-bottom: 56px; }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(102,36,86,0.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  font-weight: 700;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  letter-spacing: -0.02em;
}
.faq-q:hover { background: var(--off-white); }

.faq-icon {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
  color: var(--text-muted-light);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--plum); border-color: var(--plum); }

.faq-a {
  display: none;
  padding: 0 26px 22px;
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.72;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(102,36,86,0.25), rgba(64,29,104,0.35));
  border: 1px solid rgba(102,36,86,0.28);
  border-radius: 36px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(102,36,86,0.3) 0%, transparent 70%);
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(64,29,104,0.4) 0%, transparent 70%);
}
.cta-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  *letter-spacing: -0.05em;
  position: relative; z-index: 1;
}
.cta-inner p {
  color: var(--text-muted-dark);
  margin: 14px auto 36px;
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.cta-buttons {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer {
  background: #07040f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  *letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted-dark); line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(102,36,86,0.3); border-color: rgba(102,36,86,0.4); color: white; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤ 960px
───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  /* Nav */
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 20px 64px; }
  .hero-container { grid-template-columns: 1fr; gap: 44px; }
  .hero-right  { order: -1; }
  .hero-left   { align-items: center; text-align: center; }
  .hero-sub    { text-align: center; max-width: 520px; }
  .hero-actions { justify-content: center; }
  .store-badges { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-stats .stat { text-align: center; }

  /* How it works */
  .how-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-column: span 2; }
  .feature-card.featured-full { grid-column: span 2; grid-template-columns: 1fr; gap: 28px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Large mobile 600–768px
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .logos-inner { gap: 24px; }
  .cta-inner { padding: 52px 28px; border-radius: 28px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Small mobile ≤ 600px
───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }

  /* Hero */
  .hero { padding: 88px 16px 56px; }
  .hero-container { gap: 36px; }
  .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-large,
  .hero-actions .btn-outline-large { text-align: center; width: 100%; }
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge  { justify-content: center; }
  .hero-stats   { gap: 20px; }
  .hero-float-1, .hero-float-2 { display: none; }

  /* Logos */
  .logos-inner  { gap: 16px; }
  .logos-label  { width: 100%; text-align: center; }

  /* How it works */
  .how-section  { padding: 72px 0; }
  .visual-card  { padding: 24px 18px; }

  /* Features */
  .features-section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured,
  .feature-card.featured-full { grid-column: span 1; grid-template-columns: 1fr; gap: 20px; }
  .feature-card-two-col { grid-template-columns: 1fr; }
  .feature-stats-col    { flex-direction: row; min-width: unset; }

  /* Pricing */
  .pricing-section { padding: 72px 0; }
  .pricing-grid    { max-width: 100%; }
  .plan-card       { padding: 28px 20px; }

  /* Testimonials */
  .testimonials-section { padding: 72px 0; }

  /* FAQ */
  .faq-section { padding: 72px 0; }
  .faq-q       { font-size: 0.85rem; padding: 18px 18px; }
  .faq-a       { padding: 0 18px 18px; font-size: 0.84rem; }

  /* CTA */
  .cta-inner { padding: 44px 20px; border-radius: 22px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-large,
  .cta-buttons .btn-outline-large { text-align: center; width: 100%; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc   { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Very small ≤ 380px
───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  nav { padding: 10px 14px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .stat-number { font-size: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE — Page-level styles
   about.html
───────────────────────────────────────────────────────────── */

/* ── About Hero ── */
.about-hero {
  padding: 140px 24px 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(102,36,86,0.28) 0%, rgba(64,29,104,0.18) 40%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.about-hero .section-label { margin-bottom: 18px; }
.about-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.about-hero-sub {
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--text-muted-dark);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Mission Section ── */
.about-mission {
  background: var(--light-bg);
  padding: 96px 24px;
}
.about-mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-mission-text .section-label { margin-bottom: 14px; }
.about-mission-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 22px;
}
.about-mission-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}
.about-mission-visual {
  background: linear-gradient(145deg, rgba(102,36,86,0.18), rgba(64,29,104,0.28));
  border: 1px solid rgba(102,36,86,0.22);
  border-radius: 28px;
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mission-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mission-stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B9D 0%, #c084fc 50%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.mission-stat-label {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  font-weight: 500;
}
.mission-stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Values Section ── */
.about-values {
  background: var(--dark);
  padding: 96px 24px;
}
.about-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.about-values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 36px 30px;
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover {
  border-color: rgba(102,36,86,0.4);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(102,36,86,0.35), rgba(64,29,104,0.45));
  border: 1px solid rgba(102,36,86,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.value-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
}

/* ── Story Section ── */
.about-story {
  background: var(--dark2);
  padding: 96px 24px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.about-story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-story-inner .section-label { margin-bottom: 16px; }
.about-story-inner h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.12;
}
.about-story-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted-dark);
  margin-bottom: 18px;
  text-align: left;
}

/* ── Team Section ── */
.about-team {
  background: var(--light-bg);
  padding: 96px 24px;
}
.about-team-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.about-team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 24px 30px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(64,29,104,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(64,29,104,0.13);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}
.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 0.82rem;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-card .team-bio {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* ── About CTA ── */
.about-cta {
  background: var(--dark);
  padding: 96px 24px;
  text-align: center;
}
.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(102,36,86,0.25), rgba(64,29,104,0.35));
  border: 1px solid rgba(102,36,86,0.28);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.about-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(102,36,86,0.3) 0%, transparent 70%);
}
.about-cta-inner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.about-cta-inner p {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.about-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── About Page — Responsive ── */
@media (max-width: 960px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-values-grid   { grid-template-columns: 1fr 1fr; }
  .about-team-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-hero          { padding: 120px 16px 64px; }
  .about-mission       { padding: 64px 16px; }
  .about-values        { padding: 64px 16px; }
  .about-values-grid   { grid-template-columns: 1fr; }
  .about-story         { padding: 64px 16px; }
  .about-team          { padding: 64px 16px; }
  .about-team-grid     { grid-template-columns: 1fr; max-width: 360px; }
  .about-cta           { padding: 64px 16px; }
  .about-cta-inner     { padding: 44px 20px; border-radius: 22px; }
  .about-cta-buttons   { flex-direction: column; align-items: stretch; }
  .about-cta-buttons .btn-large,
  .about-cta-buttons .btn-outline-large { text-align: center; width: 100%; }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE — contact.html
───────────────────────────────────────────────────────────── */

/* Hero */
.contact-hero {
  padding: 140px 24px 72px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(64,29,104,0.32) 0%, rgba(102,36,86,0.15) 40%, transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}
.contact-hero-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-muted-dark);
}

/* Contact body layout */
.contact-body {
  background: var(--light-bg);
  padding: 80px 24px 100px;
}
.contact-body-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 64px;
  align-items: start;
}

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-block {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 2px 16px rgba(64,29,104,0.06);
}
.contact-info-block h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  margin-bottom: 10px;
}
.contact-info-block p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}
.contact-info-block a {
  color: var(--plum);
  text-decoration: none;
  font-weight: 600;
}
.contact-info-block a:hover { text-decoration: underline; }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-channel:hover {
  border-color: rgba(102,36,86,0.3);
  box-shadow: 0 4px 18px rgba(102,36,86,0.08);
}
.channel-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(102,36,86,0.15), rgba(64,29,104,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.channel-label { font-size: 0.72rem; color: var(--text-muted-light); font-weight: 500; }
.channel-value { font-size: 0.92rem; color: var(--text-dark); font-weight: 600; }

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(64,29,104,0.08);
}
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-card .form-sub {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-light);
  background: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%237a6490' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(102,36,86,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--plum), var(--violet));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 36px rgba(102,36,86,0.35);
  margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 48px rgba(102,36,86,0.55); }

/* Contact page responsive */
@media (max-width: 860px) {
  .contact-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card   { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .contact-hero  { padding: 120px 16px 56px; }
  .contact-body  { padding: 56px 16px 72px; }
  .form-row      { grid-template-columns: 1fr; gap: 0; }
}

/* ─────────────────────────────────────────────────────────────
   LEGAL PAGES — privacy.html & terms.html
   Shared styles for both legal documents
───────────────────────────────────────────────────────────── */

/* Legal hero */
.legal-hero {
  padding: 130px 24px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(64,29,104,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.legal-hero .section-label { margin-bottom: 14px; }
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-meta span { display: flex; align-items: center; gap: 6px; }

/* Legal body */
.legal-body {
  background: var(--light-bg);
  padding: 72px 24px 100px;
}
.legal-layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky table of contents */
.legal-toc {
  position: sticky;
  top: 90px;
}
.legal-toc h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-light);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc-counter;
}
.legal-toc ol li { counter-increment: toc-counter; }
.legal-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1.4;
}
.legal-toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--plum);
  min-width: 20px;
  opacity: 0.7;
  margin-top: 1px;
}
.legal-toc ol li a:hover {
  background: rgba(102,36,86,0.08);
  color: var(--text-dark);
}

/* Legal content */
.legal-content { max-width: 720px; }

.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}
.legal-section:last-child { margin-bottom: 0; }

.legal-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(102,36,86,0.2), rgba(64,29,104,0.3));
  border: 1px solid rgba(102,36,86,0.25);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 14px;
}
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.legal-section p {
  font-size: 0.925rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul,
.legal-section ol {
  margin: 12px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section li {
  font-size: 0.91rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}
.legal-section strong { color: var(--text-dark); font-weight: 700; }
.legal-section a { color: var(--plum); text-decoration: none; font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

.legal-highlight {
  background: linear-gradient(145deg, rgba(102,36,86,0.08), rgba(64,29,104,0.1));
  border-left: 3px solid var(--plum);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.legal-highlight strong { color: var(--plum); }

.legal-divider {
  height: 1px;
  background: var(--border-light);
  margin: 48px 0;
}

/* Legal responsive */
@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc    { position: static; }
  .legal-toc ol { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .legal-toc ol li a { padding: 5px 10px; background: rgba(102,36,86,0.06); border-radius: 100px; }
  .legal-toc ol li a::before { display: none; }
}
@media (max-width: 600px) {
  .legal-hero  { padding: 110px 16px 48px; }
  .legal-body  { padding: 48px 16px 72px; }
}
