/* ============================================================
   BeOnTools — styles.css
   Clean, modern, productivity-oriented SaaS landing page
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0A1325;
  --blue: #2563FF;
  --blue-deep: #1B4FDB;
  --aqua: #00C2B8;
  --soft-gray: #F1F4F8;
  --cloud-gray: #E5E7EB;
  --white: #FFFFFF;
  --page-bg: #F6F8FB;
  --text: #0A1325;
  --text-2: #5B6B82;
  --border: #E2E8F0;

  --grad: linear-gradient(135deg, var(--blue) 0%, var(--aqua) 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,255,.10), rgba(0,194,184,.10));

  --shadow-sm: 0 1px 2px rgba(10,19,37,.05), 0 1px 3px rgba(10,19,37,.05);
  --shadow-md: 0 6px 18px rgba(10,19,37,.07), 0 2px 6px rgba(10,19,37,.05);
  --shadow-lg: 0 18px 50px rgba(10,19,37,.12), 0 6px 16px rgba(10,19,37,.06);
  --shadow-blue: 0 12px 30px rgba(37,99,255,.28);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1180px;
  --font: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(37,99,255,.45);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section-tight { padding: 40px 0 96px; }
.section-tint { background: linear-gradient(180deg, var(--white), var(--soft-gray)); }

.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}

.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
}
.section-head p { margin-top: 14px; color: var(--text-2); font-size: 1.05rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37,99,255,.34); }

.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #cdd7e6; box-shadow: var(--shadow-md); }

.link-muted { color: var(--text-2); font-weight: 600; font-size: .95rem; transition: color .2s var(--ease); }
.link-muted:hover { color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 12px; z-index: 100;
  margin: 12px auto 0; max-width: calc(var(--container) + 40px);
  padding: 0 16px;
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled .header-inner { box-shadow: var(--shadow-lg); background: rgba(255,255,255,.85); }

.brand img { height: 36px; width: auto; }

.nav-center { display: flex; gap: 6px; margin: 0 auto; }
.nav-center a {
  color: var(--text-2); font-weight: 600; font-size: .96rem;
  padding: 8px 14px; border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-center a:hover { color: var(--navy); background: var(--soft-gray); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: 11px;
}
.hamburger span {
  width: 19px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  overflow: hidden;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-top: 10px;
  max-height: 0; opacity: 0; visibility: hidden;
  transition: max-height .35s var(--ease), opacity .25s var(--ease), padding .35s var(--ease), visibility 0s linear .35s;
  padding: 0 14px;
}
.mobile-menu.open { max-height: 440px; opacity: 1; visibility: visible; padding: 12px 14px; transition: max-height .35s var(--ease), opacity .25s var(--ease), padding .35s var(--ease), visibility 0s; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 12px; border-radius: 10px; font-weight: 600; color: var(--text-2);
}
.mobile-menu a:hover { background: var(--soft-gray); color: var(--navy); }
.mobile-menu .btn { margin-top: 8px; color: #fff; }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; position: relative; }
.hero-grid {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 820px; margin: 0 auto;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 6px 14px 6px 6px; font-size: .85rem; font-weight: 600; color: var(--text-2);
  box-shadow: var(--shadow-sm);
}
.pill-tag {
  background: var(--grad); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.hero-title {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.6vw, 3.8rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.06;
}
.hero-lede { margin-top: 20px; color: var(--text-2); font-size: 1.14rem; max-width: 560px; }

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

.benefit-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; padding-top: 34px; border-top: 1px solid var(--border);
  text-align: left; width: 100%; max-width: 720px;
}
.benefit-row li { display: flex; gap: 11px; align-items: flex-start; }
.benefit-ico {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad-soft); color: var(--blue);
  display: grid; place-items: center;
}
.benefit-ico svg { width: 19px; height: 19px; }
.benefit-row span span, .benefit-row li > span:last-child {
  display: flex; flex-direction: column; font-size: .82rem; color: var(--text-2); line-height: 1.35;
}
.benefit-row strong { color: var(--navy); font-size: .9rem; font-weight: 700; }

/* ---------- Hero visual / laptop ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.glow {
  position: absolute; inset: 6% -4% -10% 6%;
  background: radial-gradient(60% 60% at 70% 40%, rgba(0,194,184,.35), transparent 70%),
              radial-gradient(60% 60% at 30% 60%, rgba(37,99,255,.30), transparent 70%);
  filter: blur(36px); z-index: 0; border-radius: 40px;
}
.laptop {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  transform: perspective(1600px) rotateY(-13deg) rotateX(5deg);
  transform-origin: center;
  animation: float 7s ease-in-out infinite;
}
.laptop-screen {
  background: #0d1830; border-radius: 16px 16px 6px 6px;
  padding: 12px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.laptop-base {
  height: 16px; margin: 0 -7%; border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #c7d0de, #aeb9cb);
  box-shadow: 0 18px 30px rgba(10,19,37,.22);
  position: relative;
}
.laptop-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; background: #8e9bb0; border-radius: 0 0 8px 8px;
}

/* PresenceDeck app mockup */
.pd-app {
  background: #f7f9fc; border-radius: 8px; overflow: hidden;
  height: 330px; display: flex; flex-direction: column;
}
.pd-titlebar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; background: #fff; border-bottom: 1px solid var(--border);
}
.pd-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 12px; color: var(--navy); letter-spacing: -.02em; }
.pd-mark { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.pd-dots { display: flex; gap: 5px; }
.pd-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d6deea; display: block; }

.pd-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pd-current {
  background: linear-gradient(135deg, rgba(37,99,255,.10), rgba(0,194,184,.10));
  border: 1px solid #dbe6f5; border-radius: 10px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.pd-current-label { font-size: 10px; color: var(--text-2); font-weight: 600; }
.pd-current-value { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }

.pd-led { width: 11px; height: 11px; border-radius: 50%; flex: none; box-shadow: 0 0 0 3px rgba(0,0,0,.04); }
.pd-led.available { background: #22c55e; }
.pd-led.away { background: #f59e0b; }
.pd-led.lunch { background: #ef4444; }

.pd-status-label { font-size: 10px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.pd-statuses { display: flex; flex-direction: column; gap: 8px; }
.pd-status {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px;
}
.pd-status.active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,255,.12); }
.pd-status-name { font-size: 12.5px; font-weight: 700; color: var(--navy); flex: 1; }
.pd-key {
  font-size: 9.5px; font-weight: 600; color: var(--text-2);
  background: var(--soft-gray); border: 1px solid var(--border); border-radius: 6px; padding: 3px 7px;
  font-family: "Segoe UI", system-ui, monospace;
}

.pd-foot { display: flex; gap: 8px; margin-top: auto; }
.pd-chip {
  display: flex; align-items: center; gap: 6px; font-size: 9.5px; font-weight: 600; color: var(--text-2);
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 5px 10px;
}
.pd-tray { width: 9px; height: 9px; border-radius: 2px; background: var(--blue); flex: none; }
.pd-pad { width: 12px; height: 8px; border-radius: 2px; background: var(--aqua); flex: none; }

/* ---------- Cards grid ---------- */
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4def0; }
.card h3 { font-size: 1.08rem; font-weight: 700; margin: 16px 0 8px; letter-spacing: -.01em; }
.card p { color: var(--text-2); font-size: .94rem; }

.card-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
}
.card-ico svg { width: 24px; height: 24px; }
.ico-blue { background: rgba(37,99,255,.10); color: var(--blue); }
.ico-aqua { background: rgba(0,194,184,.12); color: #019b94; }

/* ---------- Products ---------- */
.product {
  position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4def0; }
.product.featured { border-color: rgba(37,99,255,.4); box-shadow: 0 10px 30px rgba(37,99,255,.12); }
.featured-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .05em;
  padding: 4px 10px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.product-tile {
  width: 46px; height: 46px; border-radius: 13px; color: #fff; font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.product-tile.blue { background: var(--blue); }
.product-tile.aqua { background: var(--aqua); }
.product h3 { font-size: 1.12rem; font-weight: 700; margin: 16px 0 8px; }
.product p { color: var(--text-2); font-size: .92rem; flex: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: var(--soft-gray); color: var(--text-2); font-size: .78rem; font-weight: 600;
  padding: 5px 11px; border-radius: var(--radius-pill); margin: 16px 0 18px;
}
.badge .win { width: 13px; height: 13px; }
.product .btn { margin-top: auto; }

/* 2-up product layout */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.product-points { margin: 16px 0 4px; display: flex; flex-direction: column; gap: 9px; }
.product-points li {
  position: relative; padding-left: 26px; color: var(--text-2); font-size: .92rem; line-height: 1.4;
}
.product-points li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--grad-soft);
  background-image: var(--grad);
}
.product-points li::after {
  content: ""; position: absolute; left: 5px; top: 10px;
  width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.product .product-tile svg { width: 24px; height: 24px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4def0; }
.plan.featured { border-color: rgba(37,99,255,.45); box-shadow: 0 14px 36px rgba(37,99,255,.14); }
.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .05em;
  padding: 5px 14px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.plan-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.plan-price { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 4px; }
.plan-price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--navy); }
.plan-price .per { color: var(--text-2); font-size: .92rem; font-weight: 600; }
.plan-trial { color: var(--blue); font-size: .85rem; font-weight: 600; margin-bottom: 18px; }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-features li { position: relative; padding-left: 26px; color: var(--text-2); font-size: .92rem; }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%; background-image: var(--grad);
}
.plan-features li::after {
  content: ""; position: absolute; left: 5px; top: 9px;
  width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--text-2); font-size: .88rem; margin-top: 30px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Footer contact ---------- */
.footer-contact { display: flex; align-items: flex-start; }
.footer-mail {
  display: inline-flex; align-items: center; gap: 9px; color: var(--text-2); font-weight: 600; font-size: .95rem;
  border: 1px solid var(--border); border-radius: 12px; padding: 10px 16px;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.footer-mail svg { width: 18px; height: 18px; }
.footer-mail:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

/* ---------- Custom business tools ---------- */
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.custom-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.custom-copy p { margin: 16px 0 26px; color: var(--text-2); font-size: 1.05rem; max-width: 440px; }
.custom-examples {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.custom-examples li {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-weight: 600; font-size: .94rem; color: var(--navy);
  box-shadow: var(--shadow-sm); position: relative; padding-left: 40px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.custom-examples li::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 3px; background: var(--grad);
}
.custom-examples li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Updates mini cards ---------- */
.cards-mini .mini-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d4def0; }
.mini-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; }
.mini-ico svg { width: 24px; height: 24px; }
.mini-card h3 { font-size: 1rem; font-weight: 700; }

/* ---------- Download CTA panel ---------- */
.cta-panel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(37,99,255,.12), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(0,194,184,.14), transparent 55%),
    linear-gradient(135deg, #eef3ff, #e7faf8);
  border: 1px solid #dbe6f5; border-radius: var(--radius-lg);
  padding: 44px 48px; box-shadow: var(--shadow-md);
}
.cta-orb { position: relative; width: 132px; height: 132px; flex: none; display: grid; place-items: center; }
.cta-orb .ring {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(37,99,255,.25);
}
.ring-1 { inset: 0; }
.ring-2 { inset: 16px; border-color: rgba(0,194,184,.3); }
.cta-orb .orb {
  width: 76px; height: 76px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-blue);
  animation: pulse 3.5s ease-in-out infinite;
}
.cta-orb .orb svg { width: 30px; height: 30px; }

.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.cta-copy > p { color: var(--text-2); margin: 10px 0 22px; font-size: 1.05rem; }
.cta-fine { font-size: .82rem; color: var(--text-2); margin-top: 14px; font-weight: 600; }

.cta-check { display: flex; flex-direction: column; gap: 13px; }
.cta-check li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--navy); font-size: .96rem; white-space: nowrap; }
.cta-check .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-size: .8rem; flex: none;
}

/* ---------- Access ---------- */
.access { text-align: center; max-width: 620px; margin: 0 auto; }
.access h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.access p { color: var(--text-2); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Request a tool ---------- */
.request-card {
  display: flex; align-items: center; gap: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 34px; box-shadow: var(--shadow-md); flex-wrap: wrap;
}
.request-ico {
  width: 56px; height: 56px; border-radius: 15px; flex: none;
  background: var(--grad-soft); color: var(--blue); display: grid; place-items: center;
}
.request-ico svg { width: 28px; height: 28px; }
.request-copy { flex: 1; min-width: 200px; }
.request-copy h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
.request-copy p { color: var(--text-2); margin-top: 5px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 56px 0 30px; margin-top: 8px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; flex-wrap: wrap; }
.footer-brand img { height: 34px; }
.footer-brand p { color: var(--text-2); margin-top: 12px; font-size: .95rem; max-width: 260px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-weight: 600; font-size: .95rem; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--navy); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text-2);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-2); font-size: .88rem; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: var(--text-2); font-size: .88rem; font-weight: 600; transition: color .2s var(--ease); }
.footer-bottom a:hover { color: var(--navy); }

/* ---------- Reveal animations ----------
   Content is visible by default. Only when JS is running (html.reveal-js)
   do elements start hidden and fade in on scroll. If the script fails to
   load, everything still shows. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-js .reveal { opacity: 0; transform: translateY(22px); }
.reveal-js .reveal.in { opacity: 1; transform: none; }
/* stagger cards within a grid */
.reveal-js .cards-4 .reveal:nth-child(2), .reveal-js .custom-examples.reveal { transition-delay: .07s; }
.reveal-js .cards-4 .reveal:nth-child(3) { transition-delay: .14s; }
.reveal-js .cards-4 .reveal:nth-child(4) { transition-delay: .21s; }

@keyframes float {
  0%, 100% { transform: perspective(1600px) rotateY(-13deg) rotateX(5deg) translateY(0); }
  50%      { transform: perspective(1600px) rotateY(-13deg) rotateX(5deg) translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-blue); }
  50%      { transform: scale(1.05); box-shadow: 0 16px 40px rgba(37,99,255,.4); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 620px; }
  .laptop { max-width: 520px; margin: 0 auto; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan.featured { order: -1; }
  .custom-grid { gap: 40px; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; text-align: center; justify-items: center; }
  .cta-check { align-items: flex-start; }
}

@media (max-width: 860px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .custom-grid { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 20px 0 64px; }
  .hero { padding: 48px 0 40px; }
  .container { padding: 0 18px; }
  .cards-4 { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: 1fr; gap: 16px; }
  .custom-examples { grid-template-columns: 1fr; }
  .cta-panel { padding: 36px 26px; }
  .cta-check li { white-space: normal; }
  .request-card { flex-direction: column; text-align: center; align-items: center; }
  .request-copy { min-width: 0; }
  .hero-cta .btn { flex: 1 1 auto; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .laptop-base { margin: 0 -4%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal-js .reveal { opacity: 1; transform: none; }
  .laptop { animation: none; }
}
