/* ============================================================
   Jayple — Corporate Design System
   Theme: Light, professional, navy + lime two-tone
   Primary (Navy): #07132A  ·  Accent (Lime): #B8C31E
   Inspired by modern corporate sites (Swiggy Corporate)
   ============================================================ */

:root {
  /* Brand */
  --navy: #07132A;
  --navy-700: #0c1c38;
  --navy-600: #14264a;
  --navy-soft: rgba(7, 19, 42, 0.06);
  --lime: #B8C31E;
  --lime-600: #a3ad18;
  --lime-700: #8c950f;
  --lime-soft: rgba(184, 195, 30, 0.12);
  --lime-glow: rgba(184, 195, 30, 0.35);

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-alt: #F6F8FB;
  --bg-tint: #EEF2F8;
  --surface: #FFFFFF;

  /* Text */
  --text: #0B1B36;
  --text-soft: #41506A;
  --text-muted: #7A8AA3;
  --text-on-dark: #FFFFFF;
  --text-on-dark-soft: #C3CEDF;
  --text-on-dark-muted: #8294B0;

  /* Lines & shadows */
  --line: #E5EAF2;
  --line-dark: rgba(255, 255, 255, 0.10);
  --shadow-sm: 0 2px 8px rgba(7, 19, 42, 0.05);
  --shadow-md: 0 12px 30px -12px rgba(7, 19, 42, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(7, 19, 42, 0.30);
  --shadow-lime: 0 12px 28px -10px rgba(184, 195, 30, 0.45);

  /* Radius & motion */
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: all 0.35s var(--ease);

  --container: 1200px;

  /* Legacy aliases used by about.html / partner.html / team.html */
  --card-bg: var(--bg);
  --card-border: var(--line);
  --card-border-hover: var(--lime);
  --accent: var(--lime);
  --accent-soft: var(--lime-soft);
  --bg-offset: var(--bg-alt);
  --text-main: var(--text);
  --text-sub: var(--text-soft);
  --radius-lg: var(--r-lg);
  --radius-md: var(--r-md);
  --radius-sm: var(--r-sm);
  --shadow-glow: var(--shadow-lime);
  --transition: var(--t);
}

/* ── Reset ──────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

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

/* ── Layout utilities ───────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 80px 0; }
.text-center { text-align: center; }
.accent { color: var(--lime-700); }
.navy-text { color: var(--navy); }

/* Section variants */
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); }
.section--navy {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy h4 { color: #fff; }

/* Decorative gradient mesh used behind navy sections */
.section--navy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 85% 0%, rgba(184,195,30,0.16), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(184,195,30,0.08), transparent 55%);
  pointer-events: none;
}
.section--navy > .container { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .container { padding: 0 20px; }
}

/* ── Section header ─────────────────────────────────────── */
.section-header { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-header.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime-700);
  background: var(--lime-soft);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 20px;
}
.section--navy .eyebrow { color: var(--lime); background: rgba(184,195,30,0.14); }
.section-header h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.section-header p { font-size: 18px; color: var(--text-soft); }
.section--navy .section-header p { color: var(--text-on-dark-soft); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 28px; border-radius: 99px; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 16px; }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-accent { background: var(--lime); color: var(--navy); }
.btn-accent:hover { background: var(--lime-600); transform: translateY(-2px); box-shadow: var(--shadow-lime); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

.section--navy .btn-outline { color: #fff; border-color: rgba(255,255,255,0.25); }
.section--navy .btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.btn svg { width: 18px; height: 18px; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.navbar-container {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
}
.logo-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 22px; color: var(--navy); }
.logo-brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.logo-brand span span { color: var(--lime-700); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-size: 15px; font-weight: 600; color: var(--text-soft);
  padding: 9px 15px; border-radius: 10px;
}
.nav-menu a:hover { color: var(--navy); background: var(--navy-soft); }

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

.menu-btn {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.menu-btn span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--t); }

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .nav-ctas .btn-outline { display: none; }
  .menu-btn { display: flex; }
}

/* ── Mobile sidebar ─────────────────────────────────────── */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(7, 19, 42, 0.45);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: var(--t); z-index: 200;
}
.sidebar {
  position: fixed; top: 0; right: 0; height: 100%; width: 300px; max-width: 84vw;
  background: var(--navy); z-index: 210; padding: 26px; transform: translateX(100%);
  transition: transform 0.4s var(--ease); display: flex; flex-direction: column;
}
.menu-open .sidebar { transform: translateX(0); }
.menu-open .sidebar-overlay { opacity: 1; visibility: visible; }
.sidebar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.sidebar-title { font-weight: 800; font-size: 22px; color: #fff; }
.sidebar-title span { color: var(--lime); }
.sidebar-close { background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 13px; color: var(--text-on-dark-soft);
  font-weight: 600; padding: 13px 14px; border-radius: 12px;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.sidebar-nav a svg { width: 19px; height: 19px; }
.sidebar-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-on-dark-muted); margin: 18px 14px 6px;
}
.sidebar-foot { margin-top: auto; color: var(--text-on-dark-muted); font-size: 13px; padding-top: 18px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 70% at 90% 10%, var(--lime-soft), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
  padding: 80px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 99px; box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px var(--lime-soft); }
.hero h1 { font-size: clamp(40px, 5.6vw, 66px); line-height: 1.04; margin-bottom: 22px; }
.hero h1 span { color: var(--lime-700); position: relative; }
.hero-lead { font-size: 19px; color: var(--text-soft); max-width: 540px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-metrics { display: flex; gap: 40px; flex-wrap: wrap; }
.metric strong { display: block; font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.metric strong em { color: var(--lime-700); font-style: normal; }
.metric span { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
}

/* ── Phone mockups (hero visual) ────────────────────────── */
.mockup { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; }
.device {
  width: 230px; background: var(--navy); border-radius: 34px; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08); position: relative;
}
.device.customer { transform: rotate(-5deg) translateX(-18px); z-index: 2; }
.device.partner { position: absolute; right: 4px; top: 60px; transform: rotate(6deg); width: 205px; z-index: 1; opacity: 0.97; }
.notch { width: 78px; height: 6px; background: rgba(255,255,255,0.18); border-radius: 99px; margin: 4px auto 12px; }
.screen { background: linear-gradient(180deg, var(--navy-700), var(--navy)); border-radius: 24px; padding: 16px; min-height: 380px; }
.scr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.scr-title { font-size: 14px; font-weight: 700; color: #fff; }
.scr-title.lime { color: var(--lime); }
.scr-head svg { width: 15px; height: 15px; color: var(--text-on-dark-muted); }
.scr-search {
  background: rgba(255,255,255,0.06); color: var(--text-on-dark-muted); font-size: 11px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 12px;
}
.scr-card { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 10px; display: flex; gap: 10px; align-items: center; }
.scr-card img { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; }
.scr-card-info { display: flex; flex-direction: column; gap: 1px; }
.scr-card-info b { font-size: 12px; color: #fff; }
.scr-card-info span { font-size: 10px; color: var(--text-on-dark-muted); }
.scr-card-info .rating { color: var(--lime); }
.scr-slots { display: flex; gap: 7px; margin-top: 12px; }
.scr-slot {
  flex: 1; text-align: center; font-size: 10px; font-weight: 600; color: var(--text-on-dark-soft);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 7px 0;
}
.scr-slot.active { background: var(--lime); color: var(--navy); border-color: var(--lime); }
.scr-total { background: rgba(184,195,30,0.10); border: 1px solid rgba(184,195,30,0.25); border-radius: 12px; padding: 11px; margin-top: 12px; }
.scr-total b { display: flex; justify-content: space-between; font-size: 12px; color: #fff; }
.scr-total span { font-size: 10px; color: var(--lime); }

.scr-chart { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; margin-bottom: 12px; }
.scr-chart > span { font-size: 9px; color: var(--text-on-dark-muted); }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-top: 8px; }
.bar { flex: 1; background: rgba(255,255,255,0.14); border-radius: 4px 4px 0 0; }
.bar.active { background: var(--lime); }
.scr-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scr-stat { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 10px; }
.scr-stat span { font-size: 9px; color: var(--text-on-dark-muted); display: block; }
.scr-stat b { font-size: 13px; color: #fff; }

.float-badge {
  position: absolute; background: #fff; border-radius: 12px; padding: 11px 14px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; color: var(--navy); z-index: 3;
}
.float-badge svg { width: 15px; height: 15px; color: #fff; background: var(--lime); border-radius: 50%; padding: 3px; }
.fb-1 { top: 28px; left: -8px; animation: floaty 4s var(--ease) infinite; }
.fb-2 { bottom: 50px; right: -10px; color: var(--lime-700); animation: floaty 4s var(--ease) infinite 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 460px) {
  .device.customer { width: 200px; }
  .device.partner { display: none; }
}

/* ── Trusted-by / logo strip ────────────────────────────── */
.strip { padding: 38px 0; border-bottom: 1px solid var(--line); background: #fff; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px 46px; flex-wrap: wrap; }
.strip-label { font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.strip-item { font-size: 15px; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.strip-item svg { width: 18px; height: 18px; color: var(--lime-700); }

/* ── Stats band ─────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: clamp(34px, 4vw, 52px); font-weight: 800; color: var(--lime); letter-spacing: -0.03em; line-height: 1; }
.stat-card span { font-size: 15px; color: var(--text-on-dark-soft); font-weight: 600; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; } }

/* ── Feature cards grid ─────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: var(--t); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--lime); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-soft); }
.card.lime-top::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: var(--t); }
.card.lime-top:hover::before { transform: scaleX(1); }
@media (max-width: 920px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ── Split feature (image + text) ───────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-visual { order: 2; }
.split-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0 34px; }
.feat { display: flex; gap: 12px; }
.feat .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--lime-soft); color: var(--lime-700); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.feat h4 { font-size: 16px; margin-bottom: 3px; }
.feat p { font-size: 14px; color: var(--text-soft); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse .split-visual { order: 0; } .split-feats { grid-template-columns: 1fr; } }

/* Showcase panel */
.panel { background: var(--navy); border-radius: var(--r-xl); padding: 30px; color: #fff; box-shadow: var(--shadow-lg); }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.panel-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.panel-logo img { width: 26px; height: 26px; border-radius: 7px; }
.panel-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
.panel-row:last-child { border-bottom: none; }
.panel-row-l b { font-size: 15px; color: #fff; display: block; }
.panel-row-l span { font-size: 13px; color: var(--text-on-dark-muted); }
.panel-badge { font-size: 14px; font-weight: 800; color: var(--lime); background: rgba(184,195,30,0.12); padding: 6px 14px; border-radius: 99px; }
.panel-badge.red { color: #ff7b7b; background: rgba(239,68,68,0.14); }

/* ── Timeline / steps ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; position: relative; transition: var(--t);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; background: var(--lime-soft); color: var(--lime-700);
  font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--text-soft); }
.step .arrow { position: absolute; top: 50px; right: -18px; color: var(--line); z-index: 2; }
.step:last-child .arrow { display: none; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } .step .arrow { display: none; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ── Services grid ──────────────────────────────────────── */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 18px; text-align: center; transition: var(--t);
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--lime); }
.service .emoji { font-size: 34px; margin-bottom: 12px; }
.service h3 { font-size: 16px; }
@media (max-width: 880px) { .services { grid-template-columns: 1fr 1fr; } }

/* ── Trust grid ─────────────────────────────────────────── */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px; }
.trust-card .ti { width: 48px; height: 48px; border-radius: 12px; background: rgba(184,195,30,0.14); color: var(--lime); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.trust-card .ti svg { width: 24px; height: 24px; }
.trust-card h3 { font-size: 19px; margin-bottom: 10px; }
.trust-card p { font-size: 15px; color: var(--text-on-dark-soft); }
@media (max-width: 880px) { .trust { grid-template-columns: 1fr; } }

/* ── Team ───────────────────────────────────────────────── */
.team-group { margin-bottom: 46px; }
.team-group > h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime-700); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; }
.member .ph {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden;
  background: var(--navy); color: var(--lime); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 28px; box-shadow: var(--shadow-sm); border: 3px solid #fff; outline: 1px solid var(--line);
}
.member .ph img { width: 100%; height: 100%; object-fit: cover; }
.member h4 { font-size: 17px; margin-bottom: 2px; }
.member span { font-size: 13.5px; color: var(--text-muted); }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* ── CTA band ───────────────────────────────────────────── */
.cta {
  background: var(--navy); border-radius: var(--r-xl); padding: 70px 50px; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 15% 10%, rgba(184,195,30,0.18), transparent 55%),
    radial-gradient(50% 80% at 90% 100%, rgba(184,195,30,0.10), transparent 55%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.cta p { font-size: 18px; color: var(--text-on-dark-soft); max-width: 600px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* App-store style button */
.store-btn {
  display: inline-flex; align-items: center; gap: 11px; background: #fff; color: var(--navy);
  padding: 13px 22px; border-radius: 14px; border: 1.5px solid transparent; font-weight: 700; transition: var(--t);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lime); }
.store-btn svg { width: 24px; height: 24px; }
.store-btn .sb-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn .sb-text small { font-size: 10px; font-weight: 600; color: var(--text-muted); }
.store-btn .sb-text strong { font-size: 15px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--text-on-dark-soft); padding: 72px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-brand h3 { display: flex; align-items: center; gap: 11px; font-size: 22px; color: #fff; margin-bottom: 16px; }
.footer-brand h3 img { width: 36px; height: 36px; border-radius: 9px; }
.footer-brand p { font-size: 14.5px; max-width: 330px; margin-bottom: 22px; }
.socials { display: flex; gap: 11px; }
.social {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700;
}
.social:hover { background: var(--lime); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--text-on-dark-soft); }
.footer-col a:hover { color: var(--lime); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--text-on-dark-muted); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fb-1, .fb-2 { animation: none; }
}
