:root {
  --navy-950: #061526;
  --navy-900: #081d33;
  --navy-800: #0d2a46;
  --blue: #2563eb;
  --blue-soft: #6ea8ff;
  --mint: #10b981;
  --mint-soft: #7be4bf;
  --ink: #102033;
  --muted: #607086;
  --line: rgba(8, 29, 51, 0.12);
  --white: #ffffff;
  --cloud: #f5f8fb;
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 28px 80px rgba(6, 21, 38, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7fbff;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection { background: rgba(16, 185, 129, .25); }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, .18), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(16, 185, 129, .18), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #eef6ff 42%, #f8fbff 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(rgba(8, 29, 51, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 29, 51, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: Outfit, Inter, sans-serif; line-height: 1.04; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.7rem, 5.2vw, 5.1rem); max-width: 920px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform .25s ease, top .25s ease;
}
.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 60px rgba(8,29,51,.12);
}
.site-header.scrolled .nav-shell { background: rgba(255,255,255,.9); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy-900); font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; border-radius: 13px; box-shadow: 0 12px 30px rgba(37,99,235,.22); }
.brand span { font-family: Outfit, sans-serif; font-size: 1.45rem; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { text-decoration: none; color: #334155; font-weight: 700; font-size: .92rem; padding: 12px 14px; border-radius: 999px; transition: .2s ease; }
.nav-links a:hover { background: rgba(37,99,235,.08); color: var(--blue); }
.nav-links .nav-cta { background: var(--navy-900); color: white; padding: 13px 18px; box-shadow: 0 12px 28px rgba(8,29,51,.18); }
.nav-links .nav-cta:hover { background: var(--blue); color: white; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 999px; background: var(--navy-900); color: white; box-shadow: 0 12px 28px rgba(8,29,51,.18); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-dropdown { position: relative; }
.pricing-toggle { border: 0; background: transparent; color: #334155; font: inherit; font-weight: 800; font-size: .92rem; padding: 12px 14px; border-radius: 999px; cursor: pointer; transition: .2s ease; }
.pricing-toggle:hover, .nav-dropdown.open .pricing-toggle { background: rgba(37,99,235,.08); color: var(--blue); }
.pricing-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 320px; padding: 10px; border-radius: 22px; background: rgba(255,255,255,.96); border: 1px solid rgba(8,29,51,.1); box-shadow: 0 22px 70px rgba(8,29,51,.16); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
.nav-dropdown:hover .pricing-menu, .nav-dropdown.open .pricing-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pricing-menu a { display: grid; gap: 4px; padding: 14px; border-radius: 16px; white-space: normal; }
.pricing-menu a:hover { background: #eef6ff; }
.pricing-menu strong { color: var(--navy-900); }
.pricing-menu span { color: var(--muted); font-weight: 700; font-size: .8rem; line-height: 1.35; }

.hero { display: flex; align-items: center; padding-top: 140px; padding-bottom: 86px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 56px; align-items: center; }
.hero-copy { position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; margin-bottom: 18px; }
.eyebrow span { width: 34px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--mint)); border-radius: 999px; }
.eyebrow.center { justify-content: center; }
.hero h1 { color: var(--navy-950); }
.hero-lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 700px; margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 15px 22px; font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; font-size: .98rem; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #1746b8); box-shadow: 0 18px 40px rgba(37,99,235,.28); }
.btn-secondary { color: var(--navy-900); background: rgba(255,255,255,.82); border: 1px solid rgba(8,29,51,.1); box-shadow: 0 16px 34px rgba(8,29,51,.08); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 700px; margin-top: 38px; }
.trust-row div { padding: 18px; border: 1px solid rgba(8,29,51,.09); border-radius: 20px; background: rgba(255,255,255,.7); box-shadow: 0 12px 30px rgba(8,29,51,.06); }
.trust-row strong { display: block; color: var(--navy-900); font-family: Outfit, sans-serif; font-size: 1.8rem; line-height: 1; }
.trust-row span { display: block; color: var(--muted); font-weight: 700; font-size: .86rem; margin-top: 8px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.device-card { width: min(430px, 100%); border-radius: 38px; padding: 18px; background: linear-gradient(180deg, rgba(8,29,51,.96), rgba(13,42,70,.96)); box-shadow: 0 42px 100px rgba(8,29,51,.38); border: 1px solid rgba(255,255,255,.16); color: white; transform: rotate(1.5deg); }
.device-topbar { height: 48px; display: flex; align-items: center; gap: 8px; color: #bdd2e5; font-weight: 800; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.green { background: var(--mint); } .blue { background: var(--blue-soft); } .mint { background: var(--mint-soft); }
.device-topbar span { margin-left: auto; font-size: .86rem; }
.dashboard-card { border-radius: 28px; padding: 26px; display: flex; justify-content: space-between; align-items: center; }
.primary-panel { background: linear-gradient(135deg, #2563eb, #10b981); box-shadow: inset 0 1px rgba(255,255,255,.22); }
.dashboard-card small { display: block; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; opacity: .85; }
.dashboard-card h3 { font-size: 4.2rem; margin: 8px 0 0; letter-spacing: -.06em; }
.dashboard-card p { font-weight: 800; opacity: .9; }
.pulse-ring { width: 82px; height: 82px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32); font-size: 2rem; font-weight: 900; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 14px; }
.mini-card { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.mini-card span, .mini-card small { display: block; color: #a8c1d8; font-weight: 800; font-size: .8rem; }
.mini-card strong { display: block; font-family: Outfit, sans-serif; font-size: 2rem; line-height: 1; margin: 12px 0 6px; }
.chat-strip { display: flex; gap: 12px; align-items: center; margin-top: 14px; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }
.avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--mint); color: var(--navy-900); font-weight: 900; }
.chat-strip p { color: #dbeafe; font-size: .88rem; }
.floating-badge { position: absolute; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid rgba(8,29,51,.08); box-shadow: 0 18px 40px rgba(8,29,51,.15); color: var(--navy-900); font-weight: 900; }
.badge-one { top: 100px; right: 0; }
.badge-two { bottom: 92px; left: 0; }

.logo-band { padding: 18px 0; }
.logo-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; padding: 18px; border-radius: 999px; background: rgba(255,255,255,.66); border: 1px solid rgba(8,29,51,.08); color: var(--muted); font-weight: 800; }
.logo-band strong { color: var(--navy-900); padding: 8px 14px; border-radius: 999px; background: #fff; box-shadow: 0 10px 22px rgba(8,29,51,.06); }

.two-col { display: grid; grid-template-columns: 1fr .86fr; gap: 64px; align-items: center; }
.portal-single { max-width: 920px; }
.section-copy p, .section-header p, .outcome-copy p, .contact-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.feature-list { display: grid; gap: 14px; margin-top: 34px; }
.feature-list div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.72); border: 1px solid rgba(8,29,51,.08); box-shadow: 0 12px 30px rgba(8,29,51,.05); }
.feature-list span { width: 44px; height: 44px; border-radius: 14px; background: rgba(37,99,235,.1); color: var(--blue); display: grid; place-items: center; font-weight: 900; }
.feature-list p { margin: 0; font-size: .98rem; }

.video-card { border-radius: var(--radius-xl); padding: 18px; background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56)); border: 1px solid rgba(8,29,51,.08); box-shadow: var(--shadow); }
.video-placeholder { min-height: 390px; border-radius: 26px; display: grid; place-items: center; text-align: center; padding: 32px; background:
  radial-gradient(circle at 50% 12%, rgba(16,185,129,.22), transparent 34%),
  linear-gradient(135deg, var(--navy-900), #0b3b63 58%, #0a6b67);
  color: white; position: relative; overflow: hidden;
}
.video-placeholder::before { content:""; position:absolute; width: 220px; height: 220px; border:1px solid rgba(255,255,255,.12); border-radius: 50%; }
.video-placeholder img { width: 96px; margin: 0 auto 20px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,.25); border-radius: 24px; }
.video-placeholder div { position: relative; }
.video-placeholder span { text-transform: uppercase; letter-spacing: .13em; font-weight: 900; color: var(--mint-soft); font-size: .75rem; }
.video-placeholder h3 { font-size: 2rem; margin: 12px 0; }
.video-placeholder p { color: #cfe0f2; max-width: 330px; }
.video-link { display: inline-flex; margin-top: 16px; padding: 11px 16px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--mint)); color: white; font-weight: 900; text-decoration: none; box-shadow: 0 16px 32px rgba(37, 99, 235, .25); transition: transform .2s ease, box-shadow .2s ease; }
.video-link:hover { transform: translateY(-1px); box-shadow: 0 20px 38px rgba(37, 99, 235, .32); }
.video-meta { display: flex; gap: 10px; margin-top: 14px; }
.video-meta span { flex: 1; text-align: center; padding: 12px; border-radius: 16px; background: #fff; color: var(--navy-900); font-weight: 900; }

.dark-panel-section { background: var(--navy-950); color: white; position: relative; overflow: hidden; }
.dark-panel-section::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.25), transparent 38%), radial-gradient(circle at 10% 80%, rgba(16,185,129,.16), transparent 30%); }
.dark-panel-section .container { position: relative; }
.section-header { text-align: center; max-width: 830px; margin: 0 auto 48px; }
.dark-panel-section .section-header p { color: #a9bed3; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap-card { padding: 26px; border-radius: 26px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.cap-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; background: rgba(16,185,129,.16); color: var(--mint-soft); font-weight: 900; }
.cap-card p { color: #b6c8d9; margin-top: 12px; }

.outcomes-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.metrics { display: grid; gap: 14px; }
.metrics div { padding: 26px; border-radius: 26px; background: white; border: 1px solid rgba(8,29,51,.08); box-shadow: 0 16px 40px rgba(8,29,51,.08); }
.metrics strong { display: block; font-family: Outfit, sans-serif; color: var(--navy-900); font-size: 1.5rem; letter-spacing: -.03em; }
.metrics span { display: block; color: var(--muted); margin-top: 6px; }

.dispatch-section { position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(37,99,235,.05)); }
.dispatch-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 62px; align-items: center; }
.dispatch-board { padding: 22px; border-radius: 34px; background: linear-gradient(180deg, rgba(8,29,51,.97), rgba(13,42,70,.96)); border: 1px solid rgba(255,255,255,.14); color: white; box-shadow: 0 36px 90px rgba(8,29,51,.32); }
.board-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 8px 20px; }
.board-header span { display: inline-flex; align-items: center; gap: 9px; color: var(--mint-soft); text-transform: uppercase; letter-spacing: .13em; font-weight: 900; font-size: .75rem; }
.board-header img { width: 30px; height: 30px; border-radius: 10px; box-shadow: 0 10px 24px rgba(37,99,235,.28); }
.board-header strong { font-family: Outfit, sans-serif; font-size: 1.25rem; }
.board-columns { display: grid; grid-template-columns: .82fr 1.18fr; gap: 14px; }
.worker-pool, .project-dropzone { padding: 16px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.worker-pool small, .project-dropzone small { display: block; color: #a8c1d8; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; margin-bottom: 14px; }
.worker-chip, .assigned-worker { padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); font-weight: 900; margin-bottom: 10px; }
.worker-chip span, .assigned-worker span { display: block; color: #b6c8d9; font-size: .78rem; font-weight: 800; margin-top: 2px; }
.assigned-worker { background: rgba(16,185,129,.16); border-color: rgba(123,228,191,.28); }
.project-dropzone button { width: 100%; margin-top: 8px; border: 0; border-radius: 16px; padding: 14px; background: linear-gradient(135deg, var(--blue), var(--mint)); color: white; font-weight: 900; cursor: pointer; box-shadow: 0 18px 36px rgba(37,99,235,.28); }
.notification-preview { display: flex; gap: 14px; align-items: center; margin-top: 14px; padding: 16px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }
.notification-preview div { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: rgba(255,255,255,.14); }
.notification-preview strong, .notification-preview span { display: block; }
.notification-preview span { color: #b6c8d9; font-size: .88rem; }
.feature-list.compact { margin-top: 26px; }

.services-preview-section { background: #f7fbff; }
.service-check-grid { display: grid; grid-template-columns: 1.1fr 1.1fr .86fr; gap: 18px; align-items: stretch; }
.service-check-card { display: flex; flex-direction: column; gap: 20px; min-height: 100%; padding: 28px; border-radius: 30px; background: rgba(255,255,255,.86); border: 1px solid rgba(8,29,51,.08); box-shadow: 0 18px 48px rgba(8,29,51,.08); }
.service-check-card.featured { background: linear-gradient(180deg, #ffffff, #edf7ff); border-color: rgba(37,99,235,.18); box-shadow: 0 24px 70px rgba(37,99,235,.14); }
.service-check-card.compact { background: linear-gradient(135deg, var(--navy-900), #0d3c5d); color: white; }
.service-card-top span { color: var(--blue); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 900; }
.service-check-card.compact .service-card-top span { color: var(--mint-soft); }
.service-card-top h3 { margin-top: 9px; font-size: 2rem; color: var(--navy-900); }
.service-check-card.compact .service-card-top h3 { color: white; }
.service-card-top p { color: var(--muted); margin-top: 12px; }
.service-check-card.compact .service-card-top p { color: #cfe0f2; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; color: #31445b; font-weight: 800; line-height: 1.35; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--mint)); color: white; font-size: .75rem; font-weight: 900; }
.service-check-card.compact .check-list li { color: #d7e6f4; }
.service-check-card .btn { margin-top: auto; }
.mini-service-group { padding-top: 2px; }
.mini-service-group h4 { margin: 0 0 12px; font-family: Outfit, Inter, sans-serif; font-size: 1.05rem; letter-spacing: -.02em; }
.check-list.tight { gap: 9px; }
.rollout-section { padding-top: 72px; background: linear-gradient(180deg, rgba(37,99,235,.05), rgba(255,255,255,.1)); }
.rollout-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; padding: 40px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(237,247,255,.88)); border: 1px solid rgba(8,29,51,.08); box-shadow: var(--shadow); }
.rollout-card p { color: var(--muted); font-size: 1.06rem; margin-top: 16px; }
.rollout-steps { display: grid; gap: 12px; }
.rollout-steps div { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 16px; border-radius: 20px; background: #fff; border: 1px solid rgba(8,29,51,.08); }
.rollout-steps strong { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--blue), var(--mint)); font-family: Outfit, Inter, sans-serif; font-size: 1.25rem; }
.rollout-steps span { color: #31445b; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: 28px; background: rgba(255,255,255,.75); border: 1px solid rgba(8,29,51,.08); box-shadow: 0 16px 40px rgba(8,29,51,.07); }
.product-card.featured { background: linear-gradient(135deg, #ffffff, #eef7ff); }
.product-card img, .product-mark { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 18px; box-shadow: 0 12px 28px rgba(8,29,51,.13); }
.product-mark { display: grid; place-items: center; background: var(--navy-900); color: white; font-weight: 900; }
.product-card span { color: var(--blue); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 900; }
.product-card h3 { margin-top: 8px; }
.product-card p { color: var(--muted); margin-top: 10px; font-size: .95rem; }

.founder-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; padding: 44px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--navy-900), #0d3c5d); color: white; box-shadow: var(--shadow); }
.founder-card p { color: #cfe0f2; font-size: 1.1rem; }

.contact-section { padding-top: 80px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 48px; align-items: start; }
.contact-copy ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; }
.contact-copy li { padding-left: 30px; position: relative; color: #43546a; font-weight: 800; }
.contact-copy li::before { content:"✓"; position:absolute; left:0; top:0; color: var(--mint); font-weight: 900; }
.contact-form { padding: 28px; border-radius: var(--radius-xl); background: rgba(255,255,255,.82); border: 1px solid rgba(8,29,51,.08); box-shadow: var(--shadow); display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy-900); font-weight: 900; font-size: .9rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(8,29,51,.13); border-radius: 16px; background: #fff; color: var(--ink); padding: 14px 15px; font: inherit; outline: none; transition: .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(37,99,235,.6); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.contact-form button { width: 100%; }
.form-note { color: var(--muted); font-size: .85rem; text-align: center; }
.highlevel-form-embed { overflow: hidden; }
.highlevel-form-embed iframe { display: block; width: 100%; min-height: 980px; border: 0; border-radius: 16px; }

.footer { padding: 34px 0 50px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; color: var(--muted); }
.footer .brand img { width: 36px; height: 36px; }
.footer p { font-weight: 800; }
.footer span { font-size: .9rem; }

.reveal { opacity: 1; transform: translateY(0); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-shell { position: relative; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(8,29,51,.1);
    box-shadow: 0 24px 70px rgba(8,29,51,.16);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-links a, .pricing-toggle { display: block; width: 100%; text-align: left; padding: 13px 14px; }
  .nav-links .nav-cta { text-align: center; }
  .pricing-menu { position: static; width: 100%; margin-top: 4px; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; background: #eef6ff; }
  .nav-dropdown.open .pricing-menu { display: grid; }
  .hero-grid, .two-col, .outcomes-grid, .dispatch-grid, .founder-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding-top: 24px; }
  .capability-grid, .product-grid, .pricing-grid, .service-check-grid, .rollout-card { grid-template-columns: 1fr 1fr; }
  .product-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 76px 0; }
  .hero { padding-top: 120px; }
  .nav-shell { height: 64px; padding-left: 12px; }
  .brand span { font-size: 1.25rem; }
  .brand img { width: 38px; height: 38px; }
  .nav-links .nav-cta { padding: 11px 13px; font-size: .84rem; }
  .hero-actions, .trust-row, .capability-grid, .product-grid, .pricing-grid, .service-check-grid, .rollout-card, .board-columns { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; }
  .device-card { transform: none; border-radius: 28px; }
  .floating-badge { display: none; }
  .mini-grid { grid-template-columns: 1fr; }
  .logo-band-inner { border-radius: 28px; }
  .feature-list div { grid-template-columns: 1fr; }
  .video-meta { flex-direction: column; }
  .founder-card { padding: 28px; }
  .footer-inner { display: grid; }
}


.footer-links { display: inline-flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.footer-links a { color: var(--navy-900); font-weight: 900; text-decoration: none; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(8,29,51,.08); }
.footer-links a:hover { color: var(--blue); background: #fff; }
.legal-page .site-header { position: sticky; top: 16px; }
.legal-main { padding: 120px 0 64px; }
.legal-card { max-width: 900px; padding: 48px; border-radius: var(--radius-xl); background: rgba(255,255,255,.9); border: 1px solid rgba(8,29,51,.08); box-shadow: var(--shadow); }
.legal-card h1 { margin-bottom: 20px; }
.legal-card h2 { margin-top: 34px; font-size: clamp(1.55rem, 2.5vw, 2.15rem); color: var(--navy-900); }
.legal-card p, .legal-card li { color: #40536a; font-size: 1.04rem; }
.legal-card p + p { margin-top: 14px; }
.legal-card a { color: var(--blue); font-weight: 900; }
.legal-card .btn-primary { color: #fff; }
.legal-card .btn-secondary { color: var(--navy-900); }
.legal-card ul { margin: 16px 0 0; padding-left: 22px; display: grid; gap: 8px; }
.legal-kicker { display: inline-flex; margin-bottom: 16px; color: var(--blue) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem !important; }
.compliance-links { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
@media (max-width: 640px) { .legal-main { padding-top: 96px; } .legal-card { padding: 28px; } .footer-links { justify-content: flex-start; } }

.legal-card blockquote { margin: 18px 0 0; padding: 20px; border-left: 5px solid var(--blue); border-radius: 18px; background: rgba(37,99,235,.08); color: #25364a; font-weight: 700; }

.sms-opt-in-section { margin: 34px 0; }
.sms-opt-in-form { margin-top: 18px; padding: 24px; border-radius: 24px; background: rgba(37,99,235,.06); border: 1px solid rgba(8,29,51,.1); display: grid; gap: 12px; }
.sms-opt-in-form label:not(.checkbox-label) { color: var(--navy-900); font-weight: 900; }
.sms-opt-in-form input[type="text"], .sms-opt-in-form input[type="tel"] { width: 100%; border: 1px solid rgba(8,29,51,.13); border-radius: 16px; background: #fff; color: var(--ink); padding: 14px 15px; font: inherit; outline: none; }
.sms-opt-in-form input[type="text"]:focus, .sms-opt-in-form input[type="tel"]:focus { border-color: rgba(37,99,235,.6); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.checkbox-label { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 18px; background: #fff; border: 1px solid rgba(8,29,51,.1); color: #25364a; font-weight: 800; }
.checkbox-label input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 3px; }

@media (max-width: 700px) {
  .highlevel-form-embed iframe { min-height: 1120px; }
}