/* =========================================================
   Parkin365 — Website Design System v2
   Full Light Mode · growwwtech-style Navbar · User-first copy
   Brand accent: #CE1126 (Crimson)
   ========================================================= */

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

/* ---- Design Tokens ---- */
:root {
  /* Palette */
  --bg:          #F5F4EF;     /* warm off-white page background */
  --bg-card:     #FFFFFF;     /* white cards / nav */
  --bg-section:  #EEECE6;     /* slightly deeper cream for alternating sections */
  --crimson:     #CE1126;
  --crimson-d:   #A30D1E;
  --crimson-glow:rgba(206,17,38,0.18);
  --text:        #0F0F0F;     /* near-black body text */
  --text-sub:    #555450;     /* secondary / muted */
  --text-muted:  #9A9792;
  --border:      rgba(0,0,0,0.08);
  --border-soft: rgba(0,0,0,0.05);

  /* Nav pill colours (growwwtech style) */
  --nav-logo-bg:      #0F0F0F;   /* dark pill around logo */
  --nav-active-bg:    #FFFFFF;   /* white pill on active link */
  --nav-active-text:  #0F0F0F;

  /* Spacing */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-pill: 999px;
  --nav-h:       76px;
  --section-pad: clamp(80px, 10vw, 140px);
  --page-pad:    clamp(20px, 5vw, 64px);
  --max-w:       1240px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.28s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 3px; }

/* ---- Dot-grid texture ---- */
.dot-grid {
  background-image: radial-gradient(rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ============================================================
   NAVBAR — Dual Floating Glassmorphism Pills
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.nav.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-inner > * {
  pointer-events: auto;
}

/* Navbar Logo — Visible at top of page, gracefully fades out when scrolling down */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.nav.scrolled .nav-logo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* Pill 2: Centered Nav Selector Capsule (True Glassmorphism) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  padding: 5px 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 1px 1.5px rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.90rem;
  font-weight: 500;
  color: var(--text-sub);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover:not(.nav-cta):not(.active) {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}
.nav-links a.active:not(.nav-cta) {
  background: rgba(0, 0, 0, 0.065);
  color: var(--text);
  font-weight: 700;
  box-shadow: none;
}

/* Crimson CTA pill inside the nav selector */
.nav-cta {
  flex-shrink: 0;
  padding: 8px 20px !important;
  background: var(--crimson) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 2px 10px rgba(206, 17, 38, 0.32) !important;
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
  margin-left: 4px;
}
.nav-cta:hover {
  background: var(--crimson-d) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px var(--crimson-glow) !important;
}

/* Hamburger (mobile) Floating Glass Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: none;
  gap: 5px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled .nav-hamburger {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 1px 1.5px rgba(255, 255, 255, 0.9);
}
.nav-hamburger:hover {
  transform: translateY(-1px);
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.section-light {
  background: var(--bg);
  padding: var(--section-pad) var(--page-pad);
}
.section-white {
  background: var(--bg-card);
  padding: var(--section-pad) var(--page-pad);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.03em; white-space: nowrap;
}
.pill-outline { border: 1.5px solid var(--border); color: var(--text-sub); background: transparent; }
.pill-crimson { background: var(--crimson); color: #fff; }
.pill-dark    { background: var(--text); color: #fff; }
.pill-soft    { background: rgba(206,17,38,0.08); color: var(--crimson); border: 1.5px solid rgba(206,17,38,0.15); }

/* Typography */
.display-xl {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 900; line-height: 1.03; letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
.display-lg {
  font-size: clamp(1.85rem, 4vw, 3.5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.035em;
  overflow-wrap: break-word;
}
.display-md {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em;
}
.body-lg { font-size: clamp(0.95rem, 1.4vw, 1.15rem); line-height: 1.68; color: var(--text-sub); }
.hide-desktop { display: none; }
@media (max-width: 600px) {
  .hide-desktop { display: inline; }
}
.accent { color: var(--crimson); }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--crimson); display: block; margin-bottom: 14px;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--crimson); color: #fff;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 2px 0 rgba(0,0,0,0.18);
}
.btn-primary:hover {
  background: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--crimson-glow);
}
.btn-primary .btn-arrow {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t);
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-ghost svg {
  transition: transform 0.2s ease;
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--text);
  transform: translateY(-2px);
  color: var(--text);
}
.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--bg);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Crimson glow blobs */
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(130px); pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: rgba(206,17,38,0.10);
  top: -80px; right: -60px;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(206,17,38,0.06);
  bottom: 80px; left: 0;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) var(--page-pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative; z-index: 1; width: 100%;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-headline { margin-bottom: 20px; }
.hero-headline .accent { color: var(--crimson); }
.hero-subline { max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 0; }
.hero-stats { display: none; }

/* Phone mockup — compact & elegant */
.hero-media { display: flex; justify-content: center; align-items: center; }
.hero-phone-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 10px 40px;
}
.hero-phone-wrap img.hero-phone-img {
  width: clamp(190px, 16.5vw, 240px);
  height: auto;
  filter: drop-shadow(0 20px 42px rgba(0,0,0,0.14));
  animation: phoneFloat 6s ease-in-out infinite;
  display: block;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* Floating Badges around Phone */
.floating-zone-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07), 0 2px 5px rgba(0, 0, 0, 0.03);
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}

.floating-badge-top-left {
  top: 10%;
  left: -80px;
  animation: floatBadge1 5s ease-in-out infinite;
}

.floating-badge-top-right {
  top: 28%;
  right: -75px;
  animation: floatBadge2 5.5s ease-in-out 0.8s infinite;
}

.floating-badge-bottom-left {
  bottom: 24%;
  left: -85px;
  animation: floatBadge3 6s ease-in-out 1.4s infinite;
}

.floating-badge-bottom-right {
  bottom: 5%;
  right: -68px;
  animation: floatBadge4 5.2s ease-in-out 2s infinite;
}

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

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

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

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

.floating-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-badge-icon svg { width: 14px; height: 14px; }
.floating-badge-icon.green   { background: rgba(34, 197, 94, 0.12); color: #16A34A; }
.floating-badge-icon.amber   { background: rgba(245, 158, 11, 0.12); color: #D97706; }
.floating-badge-icon.crimson { background: rgba(206, 17, 38, 0.10); color: var(--crimson); }
.floating-badge-icon.blue    { background: rgba(37, 99, 235, 0.10); color: #2563EB; }

.floating-badge-content { display: flex; flex-direction: column; text-align: left; }
.floating-badge-title { font-size: 0.76rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.floating-badge-sub { font-size: 0.66rem; font-weight: 500; color: var(--text-sub); margin-top: 1px; }

.hero-live-dot {
  width: 8px; height: 8px;
  background: #22C55E; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: blink 1.5s ease infinite; flex-shrink: 0;
}
@keyframes blink {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.1); }
}

/* ============================================================
   TICKER — hidden/removed
   ============================================================ */
.ticker-section { display: none; }


/* ============================================================
   FEATURES — numbered rows
   ============================================================ */
.features-section { background: var(--bg); }
.features-header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  cursor: default;
}
/* 4-card (2×2) grid radii */
.features-grid .feature-card:nth-child(1) { border-radius: var(--radius-md) 0 0 0; }
.features-grid .feature-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
.features-grid .feature-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
.features-grid .feature-card:nth-child(4) { border-radius: 0 0 var(--radius-md) 0; }
.feature-card:hover {
  background: #fff;
  border-color: rgba(206,17,38,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.feature-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--crimson);
  opacity: 0.5;
  padding-top: 4px;
  min-width: 24px;
}
.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(206,17,38,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--crimson);
}
.feature-content {
  flex: 1;
  min-width: 0;
}
.feature-content .feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.feature-content .feature-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-sub);
}

/* ============================================================
   HOW IT WORKS — Connected Steps Pipeline
   ============================================================ */
.how-section { background: var(--bg-card); }
.how-header { max-width: 640px; margin-bottom: 56px; }
.asterisk { color: var(--crimson); display: inline-block; animation: spin-slow 8s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.how-steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: visible;
  position: relative;
}
.how-step-item {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background var(--t);
  background: var(--bg);
}
.how-step-item:nth-child(1) {
  z-index: 3;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.how-step-item:nth-child(2) {
  z-index: 2;
}
.how-step-item:nth-child(3) {
  z-index: 1;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.how-step-item:not(:last-child) {
  border-right: 1px solid var(--border);
}
.how-step-item:hover {
  background: #FFFFFF;
}
.how-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.how-step-badge {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--crimson);
  background: rgba(206,17,38,0.08);
  border: 1.5px solid rgba(206,17,38,0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.how-step-pill-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.how-step-connector {
  position: absolute;
  top: 50px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  pointer-events: none;
}
.how-step-connector svg {
  width: 14px;
  height: 14px;
  display: block;
}
.how-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.how-step-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-sub);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--bg);
  padding: 80px var(--page-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-headline { text-align: center; max-width: 860px; margin: 0 auto 56px; }
.stats-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 880px; margin: 0 auto;
}
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.stat-icon {
  width: 36px; height: 36px;
  color: var(--crimson);
  margin-bottom: 4px;
}
.stat-number {
  font-size: 2.2rem; font-weight: 900;
  color: var(--crimson); letter-spacing: -0.04em; line-height: 1;
}
.stat-label { font-size: 0.88rem; color: var(--text-sub); line-height: 1.5; font-weight: 500; }

/* ============================================================
   PITCH SECTION — Talk to a Founder (Dark Theme Card)
   ============================================================ */
.pitch-section {
  padding: clamp(40px, 6vw, 80px) var(--page-pad);
  background: var(--bg);
}
.pitch-container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pitch-card {
  background: #0D1210;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: clamp(20px, 3.5vw, 32px);
  padding: clamp(52px, 7vw, 84px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.pitch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse at top, rgba(206, 17, 38, 0.18), transparent 70%);
  pointer-events: none;
}
.pitch-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}
.pitch-headline {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0 auto 18px;
  max-width: 820px;
}
.pitch-highlight {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  border-bottom: 4px solid var(--crimson);
  padding-bottom: 2px;
}
.pitch-desc {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0 auto 36px;
}
.pitch-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pitch-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.pitch-btn-primary:hover {
  background: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--crimson-glow);
}
.pitch-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--t), border-color var(--t), transform var(--t);
  text-decoration: none;
}
.pitch-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Contact Page Specific */
.contact-page-main {
  padding-top: var(--nav-h);
  min-height: calc(100vh - 280px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page-section {
  padding: clamp(40px, 6vw, 80px) var(--page-pad);
  display: flex;
  align-items: center;
  width: 100%;
}
.contact-page-section .section-inner {
  width: 100%;
}
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

/* Pitch section spacing */
.pitch-section {
  padding: clamp(60px, 8vw, 100px) var(--page-pad);
  background: var(--bg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.contact-left p { font-size: 1rem; line-height: 1.75; color: var(--text-sub); margin-top: 16px; margin-bottom: 0; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; flex-direction: column; gap: 3px; }
.contact-info-label {
  font-size: 0.76rem; font-weight: 800; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.contact-info-val {
  font-size: 0.98rem; color: var(--text-sub); text-decoration: none;
  transition: color 0.15s ease;
}
a.contact-info-val:hover {
  color: var(--crimson);
}
.form-title {
  font-size: 1.45rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 20px;
}
/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-sub); letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: var(--bg-card); color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: inherit; outline: none;
  transition: border-color var(--t), box-shadow var(--t); width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-glow);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  padding: 15px 32px;
  background: var(--crimson); color: #fff;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover {
  background: var(--crimson-d); transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--crimson-glow);
}
.form-success {
  display: none; padding: 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm); color: #15803d;
  font-size: 0.9rem; font-weight: 600; text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  padding: 72px var(--page-pad) 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  margin-left: 0;
  padding: 0;
  transition: opacity var(--t);
}
.footer-brand-logo:hover { opacity: 0.85; }
.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.footer-social-btn:hover { background: var(--crimson); color: #fff; border-color: var(--crimson); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
}
.footer-tag svg { width: 12px; height: 12px; }

/* Back to top */
.back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--crimson); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700;
  cursor: pointer; border: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t), transform var(--t), background var(--t);
  z-index: 50;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--crimson-d); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { justify-content: center; order: -1; }
  .hero-phone-wrap { margin: 10px 0; }
  .hero-phone-wrap img.hero-phone-img { width: min(280px, 75vw); }
  .floating-badge-top-left { left: 0px; top: 6%; }
  .floating-badge-top-right { right: 0px; top: 30%; }
  .floating-badge-bottom-left { left: 0px; bottom: 22%; }
  .floating-badge-bottom-right { right: 0px; bottom: 4%; }
  .floating-zone-badge { padding: 6px 10px; gap: 8px; }
  .floating-badge-icon { width: 28px; height: 28px; border-radius: 7px; }
  .floating-badge-title { font-size: 0.74rem; }
  .floating-badge-sub { font-size: 0.64rem; }

  /* Features section — One Unified Capsule Pill on Mobile */
  .features-header { margin-bottom: 32px; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }
  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0 !important;
    box-shadow: none;
  }
  .features-grid .feature-card:last-child {
    border-bottom: none;
  }
  .feature-num {
    display: none;
  }
  .feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .feature-icon-box svg {
    width: 20px;
    height: 20px;
  }
  .feature-content {
    flex: 1;
    min-width: 0;
  }
  .feature-content .feature-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
  }
  .feature-content .feature-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text-sub);
  }

  .how-steps-track {
    grid-template-columns: 1fr;
  }
  .how-step-item:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .how-step-item:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .how-step-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .how-step-connector {
    top: auto;
    bottom: -14px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
  .stats-cards { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-circle { width: 160px; height: 160px; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 0 0 20px 20px !important;
    border: 1px solid var(--border);
    border-top: none;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    z-index: 999;
  }
  .nav-links.open li {
    width: 100%;
  }
  .nav-links.open a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm) !important;
    background: transparent;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
  }
  .nav-links.open a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  .nav-links.open a.active:not(.nav-cta) {
    color: var(--crimson) !important;
    font-weight: 700 !important;
    background: rgba(206, 17, 38, 0.07) !important;
    box-shadow: none !important;
  }
  .nav-links.open .nav-cta {
    margin-left: 0 !important;
    margin-top: 10px !important;
    width: 100% !important;
    padding: 13px 20px !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    border-radius: var(--radius-sm) !important;
  }
}

@media (max-width: 560px) {
  .feature-card {
    padding: 20px 16px;
    gap: 12px;
  }
  .feature-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }
  .feature-icon-box svg {
    width: 18px;
    height: 18px;
  }
  .feature-num {
    min-width: 18px;
    font-size: 0.68rem;
  }
  .feature-content .feature-title {
    font-size: 0.98rem;
    margin-bottom: 4px;
  }
  .feature-content .feature-desc {
    font-size: 0.84rem;
    line-height: 1.55;
  }
  .footer-grid { grid-template-columns: 1fr; }
}
