/* ─────────────────────────────────────────────────────────────
   MSM Investments — Stylesheet
   ───────────────────────────────────────────────────────────── */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1D2125;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── CSS Variables ──
   Palette pulled straight from the new logo: ink charcoal + electric blue,
   with a warm coral accent added for a friendlier, less corporate feel. */
:root {
  --navy:      #1D2125;   /* ink charcoal (logo mark) */
  --navy-mid:  #2A2E33;
  --blue:      #016FB9;   /* logo blue */
  --blue-dark: #01578F;
  --blue-light:#E4F2FB;
  --dark:      #1D2125;
  --accent:    #FF6B3D;   /* fun coral accent */
  --accent-dark:#E8552A;
  --accent-light:#FFE9DE;
  --gray-bg:   #FAF7F2;
  --gray-border:#EAE4D9;
  --text:      #1D2125;
  --muted:     #6B6660;
  --white:     #FFFFFF;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(29,33,37,.08), 0 1px 2px rgba(29,33,37,.06);
  --shadow-md: 0 6px 20px rgba(29,33,37,.10), 0 2px 6px rgba(29,33,37,.06);
  --shadow-lg: 0 14px 44px rgba(29,33,37,.14), 0 4px 14px rgba(29,33,37,.07);
  --transition: 0.25s cubic-bezier(.34,1.4,.64,1);
}

h1, h2, h3, .logo-msm { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section--gray { background: var(--gray-bg); }
.section--dark { background: var(--dark); }

/* ── Typography helpers ── */
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 56px;
}
.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.text-center { text-align: center; }
.text-center.section-subtitle { margin-left: auto; margin-right: auto; }
.accent { color: var(--blue); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(1,111,185,.35);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(1,111,185,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}
.btn--nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
}
.btn--nav:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn--full { width: 100%; justify-content: center; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250,247,242,.85);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(29,33,37,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.logo-msm {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-style: italic;
}
.logo-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  transition: opacity var(--transition), color var(--transition);
}
.nav__link:hover, .nav__link.active { opacity: 1; color: var(--blue); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  background: radial-gradient(circle, rgba(1,111,185,.16) 0%, transparent 70%);
  top: -160px; right: -140px;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  background: radial-gradient(circle, rgba(255,107,61,.14) 0%, transparent 70%);
  bottom: 20px; left: -120px;
  pointer-events: none;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  50% { transform: translate(20px,-24px) rotate(8deg) scale(1.05); }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero__subtitle {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pillar__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: transform var(--transition);
}
.pillar:hover .pillar__icon { transform: rotate(-6deg) scale(1.08); }
.pillar:nth-child(2) .pillar__icon { background: var(--accent-light); color: var(--accent-dark); }
.pillar:nth-child(3) .pillar__icon { background: var(--navy); color: var(--white); }
.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════
   SOLUTIONS OVERVIEW
════════════════════════════════ */
.solutions-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
  width: fit-content;
}
.solutions-stat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.solutions-stat__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.overview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.overview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.overview-card:hover { transform: translateY(-6px) rotate(-0.6deg); }
.overview-card--blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 32px rgba(1,111,185,.3);
}
.overview-card--blue:hover { box-shadow: 0 18px 48px rgba(1,111,185,.4); }
.overview-card--dark {
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 32px rgba(29,33,37,.3);
}
.overview-card--dark::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,61,.25) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  pointer-events: none;
}
.overview-card--dark:hover { box-shadow: 0 18px 48px rgba(29,33,37,.4); }
.overview-card__icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.14);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.overview-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.12);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.overview-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}
.overview-card p {
  font-size: 0.97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  flex: 1;
}
.overview-card__arrow {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-top: auto;
  display: inline-block;
  transition: transform var(--transition);
}
.overview-card:hover .overview-card__arrow { transform: translateX(6px); }

/* ════════════════════════════════
   GRAVITY ONE
════════════════════════════════ */
.gravity .vertical-header {
  max-width: 700px;
  margin-bottom: 64px;
}
.vertical-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  margin-left: -19px;
}
.vertical-badge--blue {
  background: var(--blue-light);
  color: var(--blue);
  border: 1.5px solid rgba(1,111,185,.2);
}
.vertical-badge--light {
  background: rgba(255,107,61,.15);
  color: #FF9A66;
  border: 1.5px solid rgba(255,107,61,.3);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.product-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-border);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: var(--gray-border);
  transition: background var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card:hover::before { background: var(--blue); }
.product-card--featured {
  border-color: var(--accent);
  background: var(--accent-light);
}
.product-card--featured::before { background: var(--accent); }
.product-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}
.product-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-card__audience {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.product-card__desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__list li {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card__list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.product-card--featured .product-card__list li::before { background: var(--accent-dark); }
.gravity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.gstat {
  background: var(--gray-bg);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), border-color var(--transition);
}
.gstat:hover { transform: translateY(-3px); border-color: var(--blue); }
.gstat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
}
.gstat__label {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.gravity-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.gravity-cta::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -100px; right: -60px;
  pointer-events: none;
}
.gravity-cta p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.gravity-cta .btn--primary {
  background: var(--white);
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.gravity-cta .btn--primary:hover { background: var(--accent-light); }

/* ════════════════════════════════
   VENDING
════════════════════════════════ */
.vending {
  position: relative;
  overflow: hidden;
}
.vending::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  background: radial-gradient(circle, rgba(255,107,61,.14) 0%, transparent 70%);
  top: -180px; right: -140px;
  pointer-events: none;
}
.vending::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,111,185,.16) 0%, transparent 70%);
  bottom: -140px; left: -100px;
  pointer-events: none;
}
.vending .vertical-header {
  max-width: 700px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.vending-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.vstat {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.vstat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FF9A66;
  line-height: 1;
}
.vstat__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.vending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.vending-features__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.vfeature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.vfeature:last-child { border-bottom: none; }
.vfeature__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(1,111,185,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(1,111,185,.3);
  transition: transform var(--transition);
}
.vfeature:hover .vfeature__icon { transform: scale(1.08) rotate(-4deg); }
.vfeature:nth-child(2n) .vfeature__icon {
  background: rgba(255,107,61,.14);
  border-color: rgba(255,107,61,.35);
}
.vfeature:nth-child(2n) .vfeature__icon svg * { stroke: var(--accent) !important; }
.vfeature h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.vfeature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.vending-right { display: flex; flex-direction: column; gap: 28px; }
.vending-locations {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.vending-locations__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.location-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.location-card:hover { transform: translateY(-2px); border-color: rgba(1,111,185,.4); }
.location-card__logo {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.location-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.location-card__logo--dark { background: rgba(255,255,255,.1); }
.location-card__name {
  font-size: 0.82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.25;
  flex: 1;
}
.loc-count {
  font-weight: 700;
  color: #4FB1F0;
  background: rgba(1,111,185,.2);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.locations-deploying {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,.6);
  font-style: italic;
  padding: 10px 14px;
  background: rgba(255,107,61,.1);
  border: 1.5px dashed rgba(255,107,61,.4);
  border-radius: var(--radius-pill);
  text-align: center;
}
.vending-ads {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.vending-ads h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.vending-ads > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  line-height: 1.6;
}
.current-advertiser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: fit-content;
  background: rgba(255,107,61,.12);
  border: 1.5px solid rgba(255,107,61,.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.current-advertiser__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF9A66;
  background: rgba(0,0,0,.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.current-advertiser__logo {
  height: 68px;
  width: auto;
}
.ad-packages { display: flex; gap: 12px; }
.ad-pkg {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition);
}
.ad-pkg:hover { transform: translateY(-3px); }
.ad-pkg--highlight {
  background: rgba(255,107,61,.15);
  border-color: rgba(255,107,61,.4);
}
.ad-pkg--highlight .ad-pkg__price { color: #FF9A66; }
.ad-pkg__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
}
.ad-pkg__from {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255,255,255,.4);
  margin-bottom: -4px;
}
.ad-pkg__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.ad-pkg__price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  display: block;
  margin-top: 2px;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-person {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-person:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-person__details h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-person__details a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
  transition: color var(--transition);
  white-space: nowrap;
}
.contact-person__details a:hover { color: var(--blue); }
.contact-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 14px 20px;
  background: var(--gray-bg);
  border-radius: var(--radius-pill);
}
/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(1,111,185,.14);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8A29A; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%236B6660' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #16A34A;
  background: #F0FDF4;
  border: 2px solid #BBF7D0;
  border-radius: 12px;
  padding: 14px 18px;
}
.form-success.visible { display: flex; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 64px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  max-width: 240px;
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 74px;
  width: auto;
  display: block;
  background: white;
  border-radius: 12px;
  padding: 8px 16px;
}
.footer__name {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
  line-height: 1.5;
}
.footer__location {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}
.footer__links {
  display: flex;
  gap: 64px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__col--cta { justify-content: flex-start; }
.footer__col a.footer__contact-btn {
  color: var(--white);
  width: fit-content;
}
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
}

/* ════════════════════════════════
   GRAVITY USE CASES
════════════════════════════════ */
.gravity-usecases {
  margin-bottom: 48px;
  padding: 52px;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-border);
}
.gravity-usecases .eyebrow { margin-bottom: 8px; }
.gravity-usecases__title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.gravity-usecases__intro {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usecase-card {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.usecase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usecase-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usecase-grid .usecase-card:nth-child(2) .usecase-icon { background: var(--accent-light); }
.usecase-grid .usecase-card:nth-child(2) .usecase-icon svg * { stroke: var(--accent-dark) !important; }
.usecase-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.usecase-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.usecase-card strong {
  color: var(--text);
  font-weight: 600;
}

/* ════════════════════════════════
   GRAVITY CLIENTS
════════════════════════════════ */
.gravity-clients {
  margin-bottom: 48px;
  padding: 36px;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(1,111,185,.15);
}
.gravity-clients__header { margin-bottom: 24px; }
.gravity-clients__header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.gravity-clients__header p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
}
.gravity-clients__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-badge {
  background: var(--white);
  border: 1.5px solid rgba(1,111,185,.2);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: transform var(--transition), border-color var(--transition);
}
.client-badge:hover { transform: translateY(-2px); border-color: var(--blue); }

/* ════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .gravity-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
  .gravity-stats { grid-template-columns: repeat(3, 1fr); }
  .vending-grid { grid-template-columns: 1fr; }
  .overview-cards { grid-template-columns: 1fr; }
  .footer__links { gap: 32px; }
  .usecase-grid { grid-template-columns: 1fr; }
  .gravity-usecases { padding: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 64px; }
  .hero__title { font-size: 2.4rem; }
  .hero__scroll-hint { display: none; }
  .vending-stats { flex-direction: column; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1.1rem; color: rgba(255,255,255,.85); }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .form-row { grid-template-columns: 1fr; }
  .gravity-stats { grid-template-columns: 1fr; }
  .gstat { padding: 24px; }
  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 28px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .overview-cards { grid-template-columns: 1fr; }
  .ad-packages { flex-direction: column; }
  .gravity-cta { padding: 28px; }
  .gravity-usecases { padding: 24px; }
  .gravity-clients { padding: 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .btn--nav { display: none; }
  .overview-card { padding: 28px; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-person__details a { white-space: normal; word-break: break-word; }
}
