:root {
  --navy: #004060;
  --navy-dark: #002c43;
  --coral: #ff787d;
  --coral-dark: #e65d64;
  --cream: #ffe1c6;
  --blue: #0085ba;
  --turquoise: #79c7c9;
  --white: #ffffff;
  --ink: #071e2c;
  --ink-soft: #294652;
  --muted: #68808a;
  --line: rgba(0, 64, 96, 0.14);
  --surface: #f6f9fa;
  --surface-blue: #edf6f8;
  --shadow-sm: 0 12px 30px rgba(0, 44, 67, 0.08);
  --shadow-md: 0 24px 65px rgba(0, 44, 67, 0.13);
  --shadow-lg: 0 38px 90px rgba(0, 44, 67, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 86px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--coral); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  background: var(--coral);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 5.5vw, 5.7rem); font-weight: 800; }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 28px; height: 1px; background: var(--coral); }
.eyebrow-dark { color: var(--navy); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 15px 25px;
  font-size: 0.83rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(255, 120, 125, 0.5); outline-offset: 3px; }
.button-primary { color: var(--ink); background: var(--coral); box-shadow: 0 16px 38px rgba(255, 120, 125, 0.28); }
.button-primary:hover { background: #ff8e92; box-shadow: 0 18px 42px rgba(255, 120, 125, 0.36); }
.button-secondary { color: var(--white); background: var(--navy); box-shadow: 0 15px 36px rgba(0, 64, 96, 0.22); }
.button-secondary:hover { background: var(--navy-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.11); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--navy); }
.button-small { min-height: 44px; padding: 12px 20px; color: var(--ink) !important; }
.site-nav .button { background: var(--white); color: var(--navy) !important; border: 1px solid rgba(255,255,255,0.78); box-shadow: 0 14px 34px rgba(0, 24, 37, 0.18); }
.site-nav .button:hover { background: var(--cream); color: var(--navy) !important; border-color: rgba(255,255,255,0.95); box-shadow: 0 18px 40px rgba(0, 24, 37, 0.22); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 0.87rem; font-weight: 700; }
.text-link span { font-size: 1.2rem; transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  height: var(--header-height);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}
.site-header.is-scrolled { height: 72px; background: rgba(255,255,255,0.94); box-shadow: 0 8px 30px rgba(0,44,67,0.09); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 235px; padding: 12px 18px; background: rgba(255,255,255,0.96); border-radius: 10px; box-shadow: 0 8px 30px rgba(0, 44, 67, 0.08); }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { color: rgba(255,255,255,0.84); font-size: 0.77rem; font-weight: 600; transition: color 0.2s ease; }
.site-nav > a:not(.button):hover { color: var(--white); }
.site-header.is-scrolled .site-nav > a:not(.button) { color: var(--ink-soft); }
.site-header.is-scrolled .site-nav > a:not(.button):hover { color: var(--navy); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { width: 100%; height: 2px; display: block; margin: 5px 0; background: var(--white); transition: transform 0.22s ease, opacity 0.22s ease; }
.site-header.is-scrolled .menu-toggle span { background: var(--navy); }

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(121,199,201,0.18), transparent 28%),
    radial-gradient(circle at 3% 80%, rgba(255,120,125,0.14), transparent 27%),
    linear-gradient(135deg, #002b42 0%, #004060 54%, #00344f 100%);
  padding: 160px 0 90px;
}
.hero::after { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; bottom: -140px; border: 1px solid rgba(121,199,201,0.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(121,199,201,0.03), 0 0 0 140px rgba(121,199,201,0.025); }
.hero-grid-overlay { position: absolute; inset: 0; opacity: 0.24; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); align-items: center; gap: 96px; }
.hero-copy { max-width: 560px; position: relative; z-index: 3; }
.hero h1 { margin-bottom: 28px; color: var(--white); max-width: 11ch; }
.hero h1 em { display: inline; }
.hero-lead { max-width: 650px; margin-bottom: 28px; color: rgba(255,255,255,0.76); font-size: 1.08rem; }
.hero-price { display: flex; align-items: center; gap: 20px; margin: 30px 0; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero-price-label { max-width: 120px; color: rgba(255,255,255,0.62); font-size: 0.76rem; line-height: 1.4; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-price strong { font-size: 2rem; line-height: 1; }
.hero-price small { color: rgba(255,255,255,0.68); font-size: 0.76rem; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 28px; margin: 25px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,0.7); font-size: 0.74rem; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 17px; height: 17px; color: var(--turquoise); stroke-width: 2.4; }

.hero-visual { position: relative; z-index: 1; min-height: 590px; display: flex; align-items: center; }
.system-shell { width: 100%; position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); border-radius: 22px; background: rgba(247,250,251,0.97); box-shadow: 0 45px 100px rgba(0,15,24,0.45); transform: perspective(1600px) rotateY(-4deg) rotateX(1deg); transform-origin: center; }
.system-topbar { min-height: 58px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 14px; padding: 0 20px; color: var(--ink); background: var(--white); border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d9e4e7; }
.window-dots span:first-child { background: var(--coral); }
.window-dots span:nth-child(2) { background: var(--cream); }
.window-dots span:last-child { background: var(--turquoise); }
.system-url { justify-self: center; color: var(--muted); font-size: 0.68rem; font-weight: 600; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); padding: 7px 11px; border-radius: 100px; background: rgba(121,199,201,0.18); font-size: 0.65rem; font-weight: 700; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #28a977; box-shadow: 0 0 0 5px rgba(40,169,119,0.12); }
.system-content { padding: 26px; color: var(--ink); }
.health-card { display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 18px; padding: 22px; border-radius: 16px; background: linear-gradient(135deg, #004060, #006790); color: var(--white); }
.health-ring { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--turquoise) 0 98%, rgba(255,255,255,0.15) 98%); position: relative; }
.health-ring::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--navy); }
.health-ring span { position: relative; z-index: 1; font-size: 1.55rem; font-weight: 800; }
.micro-label { display: block; margin-bottom: 5px; color: rgba(255,255,255,0.58); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.health-card h2 { margin: 0 0 6px; color: var(--white); font-size: 1.35rem; letter-spacing: -0.02em; }
.health-card p { margin: 0; color: rgba(255,255,255,0.66); font-size: 0.75rem; }
.system-flow { margin: 22px 0; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.flow-node { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 13px; }
.flow-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; color: var(--navy); background: rgba(121,199,201,0.18); }
.flow-icon svg { width: 21px; height: 21px; }
.flow-node strong, .flow-node small { display: block; }
.flow-node strong { margin-bottom: 2px; color: var(--ink); font-size: 0.78rem; }
.flow-node small { color: var(--muted); font-size: 0.64rem; }
.status { padding: 6px 9px; border-radius: 100px; font-size: 0.57rem; font-weight: 700; }
.status-good { color: #1a7654; background: rgba(40,169,119,0.12); }
.flow-line { width: 1px; height: 18px; margin-left: 20px; background: rgba(0,64,96,0.14); }
.system-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.system-metrics > div { position: relative; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(237,246,248,0.65); }
.system-metrics span, .system-metrics strong { display: block; }
.system-metrics span { margin-bottom: 5px; color: var(--muted); font-size: 0.57rem; text-transform: uppercase; letter-spacing: 0.05em; }
.system-metrics strong { color: var(--navy); font-size: 0.75rem; }
.metric-dot { position: absolute; top: 14px; right: 14px; width: 6px; height: 6px; border-radius: 50%; background: #28a977; }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,0.28); border-radius: 12px; color: var(--white); background: rgba(0, 44, 67, 0.86); box-shadow: 0 18px 45px rgba(0,0,0,0.25); backdrop-filter: blur(12px); font-size: 0.67rem; font-weight: 700; }
.floating-note span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; color: var(--ink); background: var(--coral); }
.floating-note-one { top: 52px; right: -30px; }
.floating-note-two { bottom: 36px; left: -26px; }

.trust-strip { position: relative; z-index: 5; margin-top: -1px; border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 115px; display: flex; align-items: center; gap: 15px; padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-number { color: var(--coral); font-size: 0.62rem; font-weight: 800; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { margin-bottom: 4px; color: var(--navy); font-size: 0.82rem; }
.trust-item small { color: var(--muted); font-size: 0.67rem; line-height: 1.5; }

.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 820px; margin-bottom: 20px; color: var(--navy); }
.section-heading p { max-width: 700px; margin-bottom: 0; font-size: 1rem; }
.section-heading.centered { max-width: 900px; margin-inline: auto; text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.section-heading-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 100px; align-items: end; }
.section-heading-split h2 { margin-bottom: 0; }
.heading-copy { max-width: 640px; margin: 0; }
.heading-copy p:last-child { margin-bottom: 0; }

.section-problems { background: linear-gradient(180deg, var(--white), #f8fbfc); }
.risk-banner { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: center; margin-bottom: 32px; padding: 20px 24px; border: 1px solid rgba(255,120,125,0.3); border-radius: var(--radius-sm); background: linear-gradient(100deg, rgba(255,225,198,0.52), rgba(255,120,125,0.07)); }
.risk-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); font-weight: 800; }
.risk-banner p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { min-height: 280px; position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.problem-card::after { content: ""; position: absolute; right: -60px; bottom: -70px; width: 160px; height: 160px; border: 1px solid rgba(0,133,186,0.11); border-radius: 50%; }
.problem-card:hover { transform: translateY(-5px); border-color: rgba(0,133,186,0.24); box-shadow: var(--shadow-sm); }
.problem-card-featured { color: var(--white); border-color: transparent; background: linear-gradient(145deg, #0a5c82, #004060); }
.problem-card-featured h3 { color: #ffffff !important; text-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.problem-card-featured p { color: rgba(255,255,255,0.96) !important; }
.problem-card-featured::after { border-color: rgba(255,255,255,0.18); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 36px; border-radius: 13px; color: var(--navy); background: rgba(121,199,201,0.18); }
.icon-box svg { width: 23px; height: 23px; }
.problem-card-featured .icon-box { color: var(--ink); background: var(--coral); }
.card-index { position: absolute; top: 30px; right: 28px; color: rgba(0,64,96,0.28); font-size: 0.67rem; font-weight: 800; }
.problem-card-featured .card-index { color: rgba(255,255,255,0.62); }
.problem-card h3 { max-width: 280px; margin-bottom: 12px; color: var(--navy); font-size: 1.12rem; }
.problem-card-featured h3 { color: var(--white); }
.problem-card p { margin: 0; font-size: 0.79rem; }
.problem-card-featured p { color: rgba(255,255,255,0.82); }
.strategy-quote { max-width: 960px; margin: 50px auto 0; padding: 0 0 0 30px; border-left: 4px solid var(--coral); color: var(--navy); font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.45; font-weight: 600; letter-spacing: -0.025em; }

.section-system { overflow: hidden; background: var(--surface-blue); }
.section-system::before { content: ""; position: absolute; width: 700px; height: 700px; top: 30%; left: -500px; border-radius: 50%; border: 1px solid rgba(0,133,186,0.15); box-shadow: 0 0 0 90px rgba(0,133,186,0.025), 0 0 0 180px rgba(0,133,186,0.018); }
.service-system { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.service-core { min-height: 560px; position: relative; display: grid; place-items: center; }
.core-orbit { position: absolute; border: 1px solid rgba(0,64,96,0.17); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; }
.orbit-two { width: 315px; height: 315px; border-style: dashed; animation: rotate 30s linear infinite; }
.orbit-one::before, .orbit-one::after, .orbit-two::before { content: ""; position: absolute; width: 15px; height: 15px; border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,120,125,0.12); }
.orbit-one::before { top: 48px; left: 61px; background: var(--coral); }
.orbit-one::after { right: 36px; bottom: 84px; background: var(--turquoise); box-shadow: 0 0 0 8px rgba(121,199,201,0.18); }
.orbit-two::before { left: 48%; top: -8px; background: var(--blue); box-shadow: 0 0 0 8px rgba(0,133,186,0.12); }
@keyframes rotate { to { transform: rotate(360deg); } }
.core-content { width: 245px; height: 245px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 50%; color: var(--white); background: radial-gradient(circle at 30% 20%, #006790, var(--navy)); box-shadow: 0 30px 75px rgba(0,64,96,0.25); }
.core-content::after { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(255,255,255,0.13); border-radius: 50%; }
.core-content small { margin-bottom: 12px; color: var(--turquoise); font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; }
.core-content strong { position: relative; z-index: 1; font-size: 1.35rem; line-height: 1.15; }
.core-content span { max-width: 170px; margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.62rem; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-list article { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 20px; border: 1px solid rgba(0,64,96,0.1); border-radius: 15px; background: rgba(255,255,255,0.72); transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease; }
.service-list article:hover { transform: translateY(-3px); background: var(--white); box-shadow: var(--shadow-sm); }
.service-list article > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--navy); background: var(--cream); font-size: 0.61rem; font-weight: 800; }
.service-list h3 { margin: 2px 0 8px; color: var(--navy); font-size: 0.9rem; letter-spacing: -0.02em; }
.service-list p { margin: 0; font-size: 0.7rem; line-height: 1.58; }
.service-note { display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: center; margin-top: 45px; padding: 20px 24px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
.service-note-mark { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy); font-size: 0.72rem; font-weight: 800; }
.service-note strong, .service-note span { display: block; }
.service-note strong { color: var(--navy); font-size: 0.9rem; }
.service-note span { color: var(--muted); font-size: 0.76rem; }

.section-pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.pricing-card { position: relative; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.pricing-card-primary { border: 2px solid var(--navy); box-shadow: var(--shadow-md); }
.pricing-ribbon { position: absolute; top: 22px; right: 22px; padding: 7px 12px; border-radius: 100px; color: var(--ink); background: var(--coral); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-kicker { display: block; margin-bottom: 11px; color: var(--blue); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-head h3 { margin-bottom: 22px; color: var(--navy); font-size: 1.65rem; }
.price { display: flex; align-items: flex-end; gap: 13px; margin-bottom: 18px; }
.price strong { color: var(--navy); font-size: 3.1rem; line-height: 0.9; letter-spacing: -0.06em; }
.price span { color: var(--muted); font-size: 0.66rem; line-height: 1.45; font-weight: 600; }
.pricing-head p { min-height: 52px; margin-bottom: 24px; font-size: 0.78rem; }
.check-list { display: grid; gap: 12px; margin: 0 0 28px; padding: 24px 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-soft); font-size: 0.75rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: rgba(121,199,201,0.25); font-size: 0.62rem; font-weight: 800; }
.pricing-fineprint { margin: 17px 0 0; color: var(--muted); font-size: 0.62rem; line-height: 1.55; text-align: center; }
.scope-panel { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 42px; margin-top: 50px; padding: 36px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--navy), #00668f); color: var(--white); }
.scope-title { display: flex; gap: 16px; align-items: flex-start; }
.scope-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--ink); background: var(--coral); }
.scope-icon svg { width: 23px; }
.scope-title small { display: block; margin: 3px 0 8px; color: var(--turquoise); font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.scope-title h3 { margin: 0; color: var(--white); font-size: 1.5rem; }
.scope-content p { color: rgba(255,255,255,0.7); font-size: 0.77rem; }
.scope-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 17px 0; }
.scope-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,0.16); border-radius: 100px; color: rgba(255,255,255,0.76); background: rgba(255,255,255,0.06); font-size: 0.61rem; font-weight: 600; }
.scope-content .scope-bottom { margin-bottom: 0; color: var(--white); font-weight: 600; }

.section-difference { overflow: hidden; background: var(--cream); }
.section-difference::after { content: ""; position: absolute; width: 470px; height: 470px; right: -220px; top: -190px; border: 1px solid rgba(0,64,96,0.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(0,64,96,0.025); }
.difference-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: center; }
.difference-copy h2 { color: var(--navy); }
.difference-copy p { max-width: 580px; }
.difference-board { position: relative; padding: 30px; border: 1px solid rgba(0,64,96,0.12); border-radius: var(--radius-md); background: rgba(255,255,255,0.9); box-shadow: var(--shadow-md); }
.board-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.board-head span { color: var(--navy); font-size: 0.83rem; font-weight: 800; }
.board-head small { color: var(--muted); font-size: 0.62rem; }
.journey-line { position: absolute; left: 48px; top: 108px; bottom: 117px; width: 1px; background: var(--line); }
.journey-step { position: relative; display: grid; grid-template-columns: 38px 1fr 12px; align-items: center; gap: 15px; margin-bottom: 12px; padding: 14px; border-radius: 12px; background: var(--surface); }
.journey-step > span { position: relative; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--white); border: 1px solid var(--line); font-size: 0.58rem; font-weight: 800; }
.journey-step strong, .journey-step small { display: block; }
.journey-step strong { margin-bottom: 2px; color: var(--navy); font-size: 0.76rem; }
.journey-step small { color: var(--muted); font-size: 0.62rem; }
.journey-step i { width: 8px; height: 8px; border-radius: 50%; background: #2caf7c; box-shadow: 0 0 0 5px rgba(44,175,124,0.11); }
.journey-result { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding: 18px; border-radius: 14px; background: var(--navy); }
.journey-result svg { width: 29px; height: 29px; padding: 5px; border-radius: 50%; color: var(--ink); background: var(--coral); stroke-width: 2.3; }
.journey-result strong, .journey-result span { display: block; }
.journey-result strong { color: var(--white); font-size: 0.79rem; }
.journey-result span { color: rgba(255,255,255,0.58); font-size: 0.62rem; }

.section-process { background: var(--white); }
.process-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-line::before { content: ""; position: absolute; left: 7%; right: 7%; top: 54px; height: 1px; background: var(--line); }
.process-step { position: relative; padding-top: 22px; }
.step-number { display: block; margin-bottom: 15px; color: var(--coral); font-size: 0.62rem; font-weight: 800; }
.step-dot { position: relative; z-index: 1; width: 17px; height: 17px; margin-bottom: 26px; border: 5px solid var(--white); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px rgba(0,64,96,0.16); }
.process-step h3 { margin-bottom: 10px; color: var(--navy); font-size: 0.95rem; }
.process-step p { margin: 0; font-size: 0.71rem; }

.section-comparison { background: var(--surface-blue); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; }
.comparison-card { overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.comparison-head { display: flex; align-items: center; justify-content: space-between; padding: 25px 28px; }
.comparison-head span { font-size: 0.86rem; font-weight: 800; }
.comparison-head i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; font-style: normal; font-size: 1.2rem; }
.comparison-negative .comparison-head { color: #81383b; background: rgba(255,120,125,0.14); }
.comparison-negative .comparison-head i { color: var(--white); background: var(--coral); }
.comparison-positive .comparison-head { color: var(--navy); background: rgba(121,199,201,0.23); }
.comparison-positive .comparison-head i { color: var(--white); background: var(--navy); }
.comparison-card ul { display: grid; gap: 0; margin: 0; padding: 12px 28px 28px; list-style: none; }
.comparison-card li { position: relative; padding: 14px 5px 14px 32px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.75rem; }
.comparison-card li:last-child { border-bottom: 0; }
.comparison-card li::before { position: absolute; left: 2px; top: 14px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: 0.61rem; font-weight: 800; }
.comparison-negative li::before { content: "×"; color: #b6474c; background: rgba(255,120,125,0.16); }
.comparison-positive li::before { content: "✓"; color: var(--navy); background: rgba(121,199,201,0.24); }

.section-extra { background: var(--white); }
.extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.extra-card { min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.extra-card > span { display: inline-flex; margin-bottom: 28px; color: var(--coral); font-size: 0.62rem; font-weight: 800; }
.extra-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1rem; }
.extra-card p { margin: 0; font-size: 0.73rem; }

.cta-band { position: relative; overflow: hidden; padding: 95px 0; color: var(--white); background: linear-gradient(120deg, var(--navy-dark), var(--navy)); }
.cta-grid-pattern { position: absolute; inset: 0; opacity: 0.17; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 55px 55px; }
.cta-band-inner { position: relative; display: grid; grid-template-columns: 220px 1fr auto; gap: 54px; align-items: center; }
.logo-chip { display: flex; padding: 14px 17px; border-radius: 11px; background: var(--white); }
.cta-brand > span { display: block; margin-top: 10px; color: rgba(255,255,255,0.52); font-size: 0.61rem; text-align: center; }
.cta-band-copy .eyebrow { margin-bottom: 14px; }
.cta-band-copy h2 { margin-bottom: 12px; color: var(--white); font-size: clamp(2rem, 3vw, 3.2rem); }
.cta-band-copy p { max-width: 760px; margin: 0; color: rgba(255,255,255,0.68); font-size: 0.82rem; }

.section-faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 95px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { color: var(--navy); }
.faq-intro p { max-width: 430px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; display: grid; grid-template-columns: 1fr 28px; gap: 20px; align-items: center; padding: 25px 0; border: 0; color: var(--navy); background: transparent; text-align: left; font-size: 0.93rem; font-weight: 700; }
.faq-item button i { width: 26px; height: 26px; position: relative; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 1px; background: var(--navy); transition: transform 0.2s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i { background: var(--coral); border-color: var(--coral); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { max-width: 760px; padding: 0 50px 24px 0; margin: 0; font-size: 0.78rem; }

.section-form { overflow: hidden; color: var(--white); background: var(--navy-dark); }
.form-background { position: absolute; inset: 0; background: radial-gradient(circle at 12% 22%, rgba(255,120,125,0.13), transparent 25%), radial-gradient(circle at 86% 65%, rgba(121,199,201,0.16), transparent 25%); }
.section-form::before { content: ""; position: absolute; width: 550px; height: 550px; left: -370px; bottom: -250px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,0.018), 0 0 0 160px rgba(255,255,255,0.012); }
.form-layout { position: relative; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 80px; align-items: start; }
.form-copy { padding-top: 55px; }
.form-copy h2 { color: var(--white); }
.form-copy p { color: rgba(255,255,255,0.69); }
.form-price { margin: 34px 0; padding: 23px 0; border-top: 1px solid rgba(255,255,255,0.13); border-bottom: 1px solid rgba(255,255,255,0.13); }
.form-price small, .form-price strong, .form-price span { display: block; }
.form-price small { margin-bottom: 7px; color: var(--turquoise); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; }
.form-price strong { color: var(--white); font-size: 2.6rem; line-height: 1; }
.form-price span { margin-top: 7px; color: rgba(255,255,255,0.55); font-size: 0.71rem; font-weight: 500; }
.form-benefits { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.form-benefits li { display: flex; gap: 11px; color: rgba(255,255,255,0.68); font-size: 0.73rem; }
.form-benefits span { width: 21px; height: 21px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--turquoise); font-size: 0.62rem; font-weight: 800; }
.form-card { overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
.form-card-head { padding: 32px 34px 20px; }
.form-step { display: block; margin-bottom: 12px; color: var(--coral-dark); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; }
.form-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.55rem; }
.form-card p { margin: 0; color: var(--muted); font-size: 0.73rem; }
.zoho-frame-wrap { min-height: 680px; overflow: hidden; background: var(--white); }
.zoho-frame-wrap iframe { display: block; }
.form-security { display: flex; align-items: center; gap: 10px; margin: 0 30px 28px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-security svg { width: 20px; height: 20px; color: var(--navy); }
.form-security span { color: var(--muted); font-size: 0.61rem; }

.site-footer { color: var(--white); background: #001f30; }
.footer-main { display: grid; grid-template-columns: 1.25fr 0.65fr 0.65fr 1.45fr; gap: 55px; padding: 70px 0; }
.footer-logo { display: inline-flex; max-width: 245px; padding: 13px 16px; border-radius: 10px; background: var(--white); }
.footer-brand p { margin: 18px 0 0; color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col strong { margin-bottom: 8px; color: var(--white); font-size: 0.74rem; }
.footer-col a { color: rgba(255,255,255,0.57); font-size: 0.68rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-cta { padding: 25px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.04); }
.footer-cta span, .footer-cta strong { display: block; }
.footer-cta span { margin-bottom: 7px; color: var(--turquoise); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-cta strong { margin-bottom: 18px; color: var(--white); font-size: 0.84rem; line-height: 1.5; }
.footer-cta .button { min-height: 44px; width: 100%; padding: 11px 17px; font-size: 0.7rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.38); font-size: 0.61rem; }
.mobile-sticky-cta { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --container: 960px; }
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { font-size: 0.7rem; }
  .brand { width: 205px; }
  .hero-layout { grid-template-columns: 0.95fr 1.05fr; gap: 38px; }
  .hero-visual { min-height: 520px; }
  .floating-note-one { right: 0; }
  .floating-note-two { left: 0; }
  .service-system { grid-template-columns: 0.7fr 1.3fr; }
  .orbit-one { width: 360px; height: 360px; }
  .orbit-two { width: 275px; height: 275px; }
  .core-content { width: 220px; height: 220px; }
  .cta-band-inner { grid-template-columns: 190px 1fr; }
  .cta-band-inner > .button { grid-column: 2; justify-self: start; }
  .footer-main { grid-template-columns: 1.2fr .7fr .7fr; }
  .footer-cta { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px 30px; }
  .footer-cta span { margin: 0; }
  .footer-cta strong { margin: 0; }
  .footer-cta .button { grid-row: 1 / 3; grid-column: 2; width: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .section { padding: 90px 0; }
  .site-header { background: rgba(255,255,255,0.97); box-shadow: 0 8px 30px rgba(0,44,67,0.08); }
  .brand { width: 190px; padding: 10px 14px; box-shadow: none; }
  .menu-toggle { display: block; }
  .menu-toggle span, .site-header.is-scrolled .menu-toggle span { background: var(--navy); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px 20px 40px; background: var(--white); transform: translateX(100%); transition: transform 0.28s ease; overflow-y: auto; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button), .site-header.is-scrolled .site-nav > a:not(.button) { padding: 17px 4px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 0.88rem; }
  .site-nav .button { margin-top: 20px; }
  .hero { min-height: auto; padding: 130px 0 75px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: auto; margin-top: 30px; }
  .system-shell { transform: none; }
  .floating-note-one { top: 22px; right: -5px; }
  .floating-note-two { bottom: 22px; left: -5px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading-split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .service-system { grid-template-columns: 1fr; }
  .service-core { min-height: 430px; }
  .service-list { grid-template-columns: 1fr 1fr; }
  .pricing-grid { max-width: 760px; grid-template-columns: 1fr; }
  .scope-panel { grid-template-columns: 1fr; gap: 25px; }
  .difference-layout { grid-template-columns: 1fr; gap: 50px; }
  .difference-copy { max-width: 680px; }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-line::before { display: none; }
  .process-step { padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
  .step-dot { display: none; }
  .comparison-grid { grid-template-columns: 1fr; max-width: 720px; }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; text-align: left; }
  .cta-brand { max-width: 220px; }
  .cta-band-inner > .button { grid-column: auto; justify-self: start; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .form-layout { grid-template-columns: 1fr; gap: 45px; }
  .form-copy { max-width: 680px; padding-top: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.75rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .eyebrow { font-size: 0.64rem; }
  .hero { padding-top: 116px; }
  .hero-lead { font-size: 0.94rem; }
  .hero-price { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-price-label { max-width: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .system-topbar { grid-template-columns: 55px 1fr; padding: 0 14px; }
  .system-url { justify-self: start; font-size: 0.56rem; }
  .live-pill { display: none; }
  .system-content { padding: 14px; }
  .health-card { grid-template-columns: 72px 1fr; padding: 16px; }
  .health-ring { width: 66px; height: 66px; }
  .health-card h2 { font-size: 1rem; }
  .health-card p { font-size: 0.64rem; }
  .system-flow { padding: 14px; }
  .flow-node { grid-template-columns: 36px 1fr; }
  .flow-icon { width: 36px; height: 36px; }
  .flow-node .status { display: none; }
  .flow-line { margin-left: 18px; }
  .system-metrics { grid-template-columns: 1fr; }
  .floating-note { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 88px; border-left: 0; border-right: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .section-heading { margin-bottom: 42px; }
  .risk-banner { grid-template-columns: 36px 1fr; padding: 17px; }
  .risk-mark { width: 34px; height: 34px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .strategy-quote { padding-left: 20px; font-size: 1.25rem; }
  .service-core { min-height: 350px; }
  .orbit-one { width: 310px; height: 310px; }
  .orbit-two { width: 240px; height: 240px; }
  .core-content { width: 195px; height: 195px; }
  .core-content strong { font-size: 1.12rem; }
  .service-list { grid-template-columns: 1fr; }
  .service-note { grid-template-columns: 48px 1fr; }
  .service-note .text-link { grid-column: 1 / -1; }
  .pricing-card { padding: 28px 22px; border-radius: 22px; }
  .pricing-ribbon { position: static; display: inline-flex; margin-bottom: 18px; }
  .price strong { font-size: 2.65rem; }
  .scope-panel { padding: 25px 20px; }
  .scope-title { flex-direction: column; }
  .difference-board { padding: 20px 16px; }
  .board-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .journey-line { left: 34px; top: 126px; bottom: 115px; }
  .journey-step { grid-template-columns: 34px 1fr 8px; padding: 12px 10px; gap: 10px; }
  .journey-step > span { width: 34px; height: 34px; }
  .process-line { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 75px 0; }
  .cta-band-inner { gap: 30px; }
  .faq-item button { font-size: 0.82rem; }
  .faq-answer p { padding-right: 5px; }
  .form-card-head { padding: 25px 20px 16px; }
  .form-card h3 { font-size: 1.28rem; }
  .zoho-frame-wrap, .zoho-frame-wrap iframe { min-height: 760px !important; height: 760px !important; }
  .form-security { margin: 0 20px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 55px 0; }
  .footer-brand, .footer-cta { grid-column: auto; }
  .footer-cta { display: block; }
  .footer-cta strong { margin: 7px 0 18px; }
  .footer-cta .button { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 7px; padding-bottom: 90px; }
  .mobile-sticky-cta { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 100px; color: var(--ink); background: var(--coral); box-shadow: 0 14px 35px rgba(0,44,67,0.28); font-size: 0.78rem; font-weight: 800; transition: transform 0.25s ease, opacity 0.25s ease; }
  .mobile-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(90px); }
}

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