/* =================== RESET / BASE =================== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0F2A4A;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --navy: #0F2A4A;
  --navy-2: #1B3A66;
  --orange: #FF7A1A;
  --orange-2: #E25C2D;
  --green: #1F9D55;
  --green-2: #16794A;
  --blue: #2E5BFF;
  --purple: #6E3CE2;
  --pink: #E84A8A;
  --teal: #1FB6B5;
  --amber: #F4A623;
  --indigo: #4338CA;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DEE5EE;
  --gray-300: #C5CFDD;
  --gray-500: #6B7A90;
  --gray-700: #3E4C66;
  --shadow-sm: 0 2px 6px rgba(15,42,74,0.06);
  --shadow-md: 0 8px 24px rgba(15,42,74,0.10);
  --shadow-lg: 0 18px 48px rgba(15,42,74,0.14);
  --radius: 16px;
  --radius-sm: 10px;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 24px;
  margin: 0 auto;
}

.grad {
  background: linear-gradient(90deg,#FF7A1A 0%, #E25C2D 50%, #6E3CE2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orange { color: var(--orange); }
.muted { color: var(--gray-500); font-weight: 500; }
.up { color: var(--green); font-size: .8em; margin-left: 4px; }
.pos { color: var(--green); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-primary {
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,122,26,.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(255,122,26,.45); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost { color: var(--navy); }
.btn-ghost:hover { color: var(--orange); }

/* =================== NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { display: inline-flex; }
.logo-text {
  font-weight: 900; font-size: 18px; letter-spacing: .02em;
  color: var(--navy);
}
.logo-text.light { color: #fff; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content:''; position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background: var(--orange); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none;
  flex-direction: column; gap: 4px; padding: 8px;
}
.hamburger span {
  display:block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(255,122,26,.08), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(46,91,255,.07), transparent 60%),
    linear-gradient(180deg,#fff 0%,#F7F9FC 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
}
.blob-1 { width: 380px; height: 380px; background: #FFC79A; top: -80px; right: -80px; }
.blob-2 { width: 320px; height: 320px; background: #B6C7FF; bottom: -100px; left: -60px; }
.grid-overlay {
  position:absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,42,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,74,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,26,.08);
  color: var(--orange-2);
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  border: 1px solid rgba(255,122,26,.25);
  margin-bottom: 22px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,26,.18);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,122,26,.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,122,26,0); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.hero-tag {
  font-size: 18px; font-weight: 600;
  color: var(--navy-2);
  margin: 0 0 22px;
}
.hero-pillars {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px;
}
.pillar {
  background: #fff; border: 1px solid var(--gray-200);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.pillar span { color: var(--orange); }
.hero-sub {
  color: var(--gray-700); font-size: 16px; margin: 0 0 28px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; max-width: 600px;
}
.stat {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-lbl { font-size: 11.5px; color: var(--gray-500); font-weight: 600; }

/* ============ Hero device mock ============ */
.hero-right { position: relative; min-height: 520px; }

.device {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}
.device-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #F2F5FA;
  border-bottom: 1px solid var(--gray-100);
}
.device-bar > span {
  width: 10px; height: 10px; border-radius: 50%; background: #DEE5EE;
}
.device-bar > span:nth-child(1) { background: #FF6058; }
.device-bar > span:nth-child(2) { background: #FFBD2E; }
.device-bar > span:nth-child(3) { background: #29C940; }
.device-url {
  margin-left: auto; font-size: 11px; color: var(--gray-500);
  background: #fff; padding: 4px 12px; border-radius: 999px;
  border: 1px solid var(--gray-200);
}
.device-body { display: grid; grid-template-columns: 130px 1fr; min-height: 360px; }
.dash-side {
  background: #FAFBFD; border-right: 1px solid var(--gray-100);
  padding: 14px 10px;
}
.dash-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; margin-bottom: 18px; color: var(--navy);
}
.side-item {
  font-size: 11.5px; padding: 7px 10px; border-radius: 6px;
  color: var(--gray-700); margin-bottom: 2px;
  display: flex; align-items: center; gap: 6px;
}
.side-item.active {
  background: rgba(255,122,26,.10); color: var(--orange-2); font-weight: 600;
}

.dash-main { padding: 16px; }
.dash-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.dash-title { font-weight: 800; font-size: 14px; color: var(--navy); }
.dash-sub { font-size: 11px; color: var(--gray-500); }

.ring { position: relative; width: 60px; height: 60px; }
.ring svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #EEF2F7; stroke-width: 3; }
.ring-fg { fill: none; stroke: url(#g) #1F9D55; stroke: var(--green); stroke-width: 3; stroke-linecap: round; }
.ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1;
}
.ring-label span { font-size: 14px; font-weight: 800; color: var(--navy); }
.ring-label small { font-size: 8px; color: var(--gray-500); }

.kpi-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 14px; }
.kpi {
  background: #FAFBFD; border: 1px solid var(--gray-100);
  border-radius: 8px; padding: 8px 10px;
}
.kpi-lbl { font-size: 9.5px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.kpi-val { font-size: 13px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.kpi-bar {
  margin-top: 6px; height: 4px; background: #EEF2F7; border-radius: 4px; overflow: hidden;
}
.kpi-bar i { display:block; height:100%; background: linear-gradient(90deg,var(--green),var(--teal)); border-radius: 4px; }

.timeline-card {
  border: 1px solid var(--gray-100); border-radius: 8px;
  padding: 10px 12px;
}
.tl-title { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.tl-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; color: var(--gray-700);
  margin-bottom: 6px; position: relative;
}
.tl-row span { width: 56px; }
.tl-row .bar {
  display:block; height: 6px; border-radius: 3px;
  position: relative;
}
.tl-row { position: relative; padding-right: 4px; }
.tl-row > span { display: inline-block; }
.tl-row .bar { flex: 1; max-width: none; }
.b1 { background: #4CAF50; }
.b2 { background: #2196F3; }
.b3 { background: #FF9800; }
.b4 { background: #9C27B0; }
.b5 { background: #F44336; }
.b6 { background: #00BCD4; }

.tl-row {
  display: grid; grid-template-columns: 56px 1fr;
  align-items: center; height: 14px; margin-bottom: 4px;
  font-size: 9px;
}
.tl-row > i {
  height: 6px; border-radius: 3px;
}

/* phone */
.phone {
  position: absolute; right: -10px; bottom: -30px;
  width: 180px; height: 360px;
  background: #fff;
  border-radius: 28px;
  border: 8px solid #0F2A4A;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(6deg);
  animation: floaty2 6s ease-in-out infinite;
}
@keyframes floaty2 {
  0%,100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-6px); }
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 16px; background: #0F2A4A; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
}
.phone-body { padding: 24px 12px 12px; font-size: 11px; }
.phone-greet { color: var(--gray-700); margin-bottom: 10px; }
.phone-greet strong { color: var(--navy); }
.phone-row { display: flex; gap: 6px; margin-bottom: 10px; }
.mini-card {
  flex:1; background: #FAFBFD; border-radius: 8px; padding: 6px 8px;
  border: 1px solid var(--gray-100);
}
.mini-card small { font-size: 9px; color: var(--gray-500); display:block; }
.mini-card strong { font-size: 18px; color: var(--navy); }

.phone-block {
  border: 1px solid var(--gray-100); border-radius: 8px;
  padding: 8px; margin-bottom: 10px;
}
.block-title { font-size: 10px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.block-img {
  height: 80px; border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(15,42,74,.6), rgba(15,42,74,.2)),
    linear-gradient(135deg,#3a5a7d,#7090b3);
  position: relative;
}
.block-img::before {
  content: '▶'; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 18px; opacity: .9;
}
.block-meta { font-size: 8.5px; color: var(--gray-500); margin-top: 4px; }
.phone-pending {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(226,92,45,.08); padding: 8px 10px; border-radius: 8px;
  font-size: 10px; color: var(--gray-700);
}

/* =================== TRUST =================== */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: #fff;
}
.trust-label {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--gray-500); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 28px 36px;
  justify-content: center; align-items: center;
}
.trust-row span {
  font-weight: 700; color: var(--gray-300); font-size: 16px;
  letter-spacing: .02em;
  transition: color .2s;
}
.trust-row span:hover { color: var(--navy); }

/* =================== SECTION HEAD =================== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.15;
  margin: 12px 0 16px;
}
.section-head .lede {
  color: var(--gray-700); font-size: 17px; margin: 0 auto;
}
.section-head.light h2, .section-head.light .lede { color: #fff; }
.section-head.light .lede { color: rgba(255,255,255,.75); }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.eyebrow.red    { background: rgba(244,67,54,.10); color:#D32F2F; }
.eyebrow.green  { background: rgba(31,157,85,.10); color: var(--green); }
.eyebrow.purple { background: rgba(110,60,226,.10); color: var(--purple); }
.eyebrow.orange { background: rgba(255,122,26,.12); color: var(--orange-2); }
.eyebrow.white  { background: rgba(255,255,255,.10); color:#fff; border:1px solid rgba(255,255,255,.18); }

/* =================== CHALLENGE / SOLUTION =================== */
.cs { padding: 100px 0; background: var(--gray-50); }
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cs-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.cs-card h2 {
  font-size: 26px; font-weight: 800; line-height: 1.25;
  margin: 14px 0 22px;
}
.cross-list li, .check-list li {
  position: relative; padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--gray-100);
  font-size: 15px; color: var(--navy-2);
}
.cross-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.cross-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(244,67,54,.10); color: #D32F2F;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(31,157,85,.12); color: var(--green);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}

/* =================== AGENTS =================== */
.agents { padding: 100px 0; background: #fff; }
.agent-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.agent-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.agent-card::before {
  content:''; position:absolute; inset: 0;
  background: linear-gradient(135deg, var(--c, var(--blue)) 0%, transparent 60%);
  opacity: .06; pointer-events: none;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.agent-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
  margin-bottom: 16px;
  background: var(--c, var(--blue));
  box-shadow: 0 8px 18px rgba(46,91,255,.25);
}
.agent-card h3 {
  margin: 0 0 8px; font-size: 16px; font-weight: 800; color: var(--navy);
}
.agent-card p { margin: 0; color: var(--gray-700); font-size: 13.5px; }

.a-blue   { --c: var(--blue); }
.a-pink   { --c: var(--pink); }
.a-green  { --c: var(--green); }
.a-purple { --c: var(--purple); }
.a-orange { --c: var(--orange); }
.a-indigo { --c: var(--indigo); }
.a-teal   { --c: var(--teal); }
.a-amber  { --c: var(--amber); }

/* =================== MODULES =================== */
.modules {
  padding: 110px 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(255,122,26,.18), transparent 50%),
    radial-gradient(800px 500px at 0% 100%, rgba(110,60,226,.20), transparent 50%),
    linear-gradient(180deg,#0B2040 0%, #0F2A4A 100%);
  color: #fff;
}
.mod-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.mod {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
  backdrop-filter: blur(6px);
}
.mod:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,122,26,.4);
  transform: translateY(-3px);
}
.mod-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mod-num {
  font-size: 12px; font-weight: 800;
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  color: #fff; padding: 4px 10px; border-radius: 6px;
}
.mod-head h3 { margin: 0; font-size: 18px; font-weight: 800; }
.mod p { margin: 0 0 14px; color: rgba(255,255,255,.75); font-size: 14px; }
.mod ul li {
  padding: 8px 0 8px 26px;
  font-size: 13.5px; color: rgba(255,255,255,.85);
  border-bottom: 1px dashed rgba(255,255,255,.08);
  position: relative;
}
.mod ul li:last-child { border-bottom: 0; }
.mod ul li::before {
  content:''; position: absolute; left:0; top:50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 4px;
  background: linear-gradient(135deg,var(--orange),var(--orange-2));
}
.mod ul li::after {
  content:'✓'; position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  font-size: 10px; font-weight: 800; color: #fff;
}

/* =================== IMPACT =================== */
.impact { padding: 100px 0; background: var(--gray-50); }
.impact-table-wrap {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
  max-width: 960px; margin: 0 auto;
  border: 1px solid var(--gray-100);
}
.impact-table {
  width: 100%; border-collapse: collapse;
}
.impact-table th, .impact-table td {
  padding: 18px 22px; text-align: left;
  font-size: 15px;
}
.impact-table thead th {
  background: linear-gradient(90deg,#0F2A4A,#1B3A66);
  color: #fff; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
}
.impact-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
}
.impact-table tbody tr:last-child { border-bottom: 0; }
.impact-table .total td {
  background: rgba(255,122,26,.05); padding: 22px;
}
.pill {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
}
.pill.green { background: rgba(31,157,85,.12); color: var(--green); }
.pill.big {
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  color: #fff; font-size: 18px; padding: 10px 18px;
}

/* =================== ARCHITECTURE =================== */
.arch {
  padding: 110px 0;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(46,91,255,.20), transparent 50%),
    radial-gradient(700px 500px at 100% 100%, rgba(255,122,26,.20), transparent 50%),
    linear-gradient(180deg,#0F2A4A 0%, #081A33 100%);
  color: #fff;
}
.arch-stack {
  display: flex; flex-direction: column; gap: 18px;
}
.arch-row { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 22px; }
.arch-row-title { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; opacity: .65; margin-bottom: 14px; font-weight: 700; }

.persona-row {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px;
}
.persona {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-align: center;
  padding: 10px 6px; border-radius: 10px;
  font-size: 12px; font-weight: 600;
}

.arch-row.layers { background: transparent; border: 0; padding: 0; display: grid; gap: 14px; }
.layer {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px;
}
.layer.alt {
  background: linear-gradient(135deg, rgba(255,122,26,.10), rgba(110,60,226,.10));
  border-color: rgba(255,122,26,.22);
}
.layer-title { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 14px; color: #FFB97A; }
.layer.alt .layer-title { color: #FFD3A6; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.layer-foot {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.12);
  font-size: 12px; color: rgba(255,255,255,.65);
}

.arch-row.sec {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 12px;
  background: transparent; border: 0; padding: 0;
}
.sec-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 16px; text-align: center;
}
.sec-card strong { display: block; color: #fff; font-size: 14px; }
.sec-card span { font-size: 11.5px; color: rgba(255,255,255,.65); }

/* =================== PRICING =================== */
.pricing { padding: 110px 0; background: #fff; }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: all .25s ease;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 18px 48px rgba(46,91,255,.18);
  transform: scale(1.03);
}
.popular-tag {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(90deg,var(--orange),var(--orange-2));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em;
  z-index: 1;
}
.price-head {
  padding: 28px;
  color: #fff;
}
.green-head  { background: linear-gradient(135deg,#1F9D55,#16794A); }
.blue-head   { background: linear-gradient(135deg,#2E5BFF,#1E3A8A); }
.purple-head { background: linear-gradient(135deg,#6E3CE2,#4A1F9E); }

.plan-name { font-size: 22px; font-weight: 800; }
.plan-for { font-size: 13px; opacity: .85; margin-top: 4px; }

.price-body { padding: 24px 28px; flex: 1; }
.setup {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px dashed var(--gray-200);
}
.setup small { font-size: 11px; color: var(--gray-500); display: block; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.setup strong { font-size: 22px; color: var(--navy); display: block; margin-top: 2px; }
.setup strong span { font-size: 13px; color: var(--gray-500); font-weight: 600; }

.perf-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-500); font-weight: 700; margin-bottom: 12px;
}
.perf-row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px; align-items: center;
  margin-bottom: 22px;
}
.perf {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 12px; padding: 12px 8px; text-align: center;
}
.perf strong {
  display: block; font-size: 16px; color: var(--navy); margin-bottom: 4px; font-weight: 800;
}
.perf span { font-size: 10.5px; color: var(--gray-500); line-height: 1.4; }
.perf-or { font-size: 10px; font-weight: 700; color: var(--gray-300); text-transform: uppercase; }

.incl {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-500); font-weight: 700; margin-bottom: 12px;
}
.check-list.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px;
}
.check-list.two-col li { font-size: 13px; padding: 7px 0 7px 26px; border-bottom: 0; }
.check-list.two-col li::before { width: 18px; height: 18px; font-size: 10px; }

.addons { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--gray-200); display: grid; gap: 8px; }
.addon { display: flex; justify-content: space-between; font-size: 13px; color: var(--navy-2); }
.addon span::before { content: '+ '; color: var(--orange); font-weight: 800; }
.addon strong { color: var(--navy); }

.price-cta {
  display: block; text-align: center;
  padding: 16px; font-weight: 700; font-size: 15px; color: #fff;
  margin: 0 24px 24px;
  border-radius: 12px;
  transition: opacity .2s;
}
.price-cta:hover { opacity: .92; }
.green-cta  { background: linear-gradient(135deg,#1F9D55,#16794A); }
.blue-cta   { background: linear-gradient(135deg,#2E5BFF,#1E3A8A); }
.purple-cta { background: linear-gradient(135deg,#6E3CE2,#4A1F9E); }

.pricing-foot {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: 56px; max-width: 960px; margin-left: auto; margin-right: auto;
}
.pf-item {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 12px; padding: 18px; text-align: center;
}
.pf-item strong { display:block; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.pf-item span { font-size: 12.5px; color: var(--gray-500); }

/* =================== CTA =================== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(255,122,26,.20), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(46,91,255,.20), transparent 60%),
    linear-gradient(135deg,#0F2A4A 0%, #1B3A66 100%);
  color: #fff;
}
.cta-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.cta-left h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900; line-height: 1.15; margin: 0 0 16px;
}
.cta-left p { color: rgba(255,255,255,.78); font-size: 16px; }
.cta-points {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px;
}
.cta-points span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
}

.cta-form {
  background: #fff; border-radius: 18px; padding: 28px;
  display: grid; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.cta-form label {
  display: grid; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--navy-2);
  text-transform: uppercase; letter-spacing: .06em;
}
.cta-form input, .cta-form select {
  font: inherit; font-weight: 500;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: 14px; color: var(--navy);
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s;
}
.cta-form input:focus, .cta-form select:focus {
  outline: none; border-color: var(--orange);
}
.cta-form .btn { width: 100%; }
.thanks {
  text-align: center; font-size: 13px; color: var(--green);
  font-weight: 700; padding: 8px; opacity: 0; transition: opacity .3s;
}
.thanks.show { opacity: 1; }

/* =================== FOOTER =================== */
.footer {
  background: #081A33; color: #fff;
  padding: 60px 0 24px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.foot-grid h4 {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.5); margin: 0 0 14px;
}
.foot-grid a {
  display: block; color: rgba(255,255,255,.85); font-size: 14px;
  padding: 5px 0;
}
.foot-grid a:hover { color: var(--orange); }
.foot-tag { color: rgba(255,255,255,.6); margin-top: 10px; font-size: 14px; }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,.55);
}

/* =================== REVEAL ANIM =================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: auto; }
  .phone { right: 20px; }
  .agent-grid { grid-template-columns: repeat(2,1fr); }
  .mod-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .cs-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .persona-row { grid-template-columns: repeat(4,1fr); }
  .arch-row.sec { grid-template-columns: repeat(3,1fr); }
  .pricing-foot { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 80px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .agent-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .pricing-foot { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-cta .btn-ghost { display: none; }
  .perf-row { grid-template-columns: 1fr; }
  .perf-or { display: none; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .impact-table th, .impact-table td { padding: 12px 14px; font-size: 13px; }
  .phone { display: none; }
  .device { transform: none; animation: none; }
}
