:root {
  --header-bg: rgba(10, 15, 30, 0.85); /* Darker, more glass */
  --hero-a: #2563eb;
  --hero-b: #1d4ed8;
  --surface: #f8fafc;
  --surface-2: #e2e8f0;
  --white: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #cbd5e1;
  --line-soft: #e2e8f0;
  --brand: #3b82f6;
  --brand-strong: #2563eb;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-dark: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --accent-glow: 0 0 20px rgba(59, 130, 246, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(157, 186, 255, 0.25);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-text strong {
  display: block;
  color: #f3f7ff;
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: #9db8ff;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 8px;
}

.main-nav a {
  color: #e8efff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.045em;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: #92c9ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-nav {
  min-height: 52px;
  min-width: 210px;
  padding: 0 28px;
  background: linear-gradient(125deg, #73c5ff, #4f97ea);
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(44, 91, 164, 0.36);
}

.btn-primary {
  min-height: 54px;
  padding: 0 34px;
  background: linear-gradient(130deg, #7bc8ff, #5ca0ef 56%, #4c8de5);
  color: #ffffff;
  font-size: 1.02rem;
  box-shadow: 0 14px 32px rgba(48, 102, 177, 0.35);
}

.btn-secondary {
  min-height: 54px;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f8ff;
  border: 1px solid rgba(193, 213, 255, 0.56);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 220px;
  margin-bottom: -100px;
  background: radial-gradient(circle at 16% 8%, #6384f3 0%, var(--hero-a) 34%, var(--hero-b) 100%);
  color: #edf2ff;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -145px;
  width: 170%;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--surface);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.hero-glow-a {
  width: 360px;
  height: 360px;
  top: -110px;
  left: 13%;
  background: rgba(127, 207, 255, 0.26);
}

.hero-glow-b {
  width: 520px;
  height: 520px;
  top: 64px;
  right: -160px;
  background: rgba(44, 74, 180, 0.36);
}

/* --- NEW PREMIUM STYLES INJECTED --- */
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-badge-row {
  display: flex;
  gap: 12px;
  margin: 24px 0 36px;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Radar Animation */
.radar-scan {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8));
    transform-origin: left center;
    animation: radar-spin 4s linear infinite;
}

.radar-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px #fff;
    animation: radar-ping 4s infinite;
}

.radar-dot:nth-child(2) { animation-delay: 1s; }
.radar-dot:nth-child(3) { animation-delay: 2.5s; }
.radar-dot:nth-child(4) { animation-delay: 3.2s; }

@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes radar-ping {
    0% { opacity: 0; transform: scale(0); }
    10% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0); }
}

/* Glass Mockup Dashboard */
.glass-mockup {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.glass-mockup:hover {
    transform: translateY(-5px) rotateX(2deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-row {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.mockup-row.short { width: 40%; }
.mockup-row.long { width: 90%; }
.mockup-row.medium { width: 70%; }

.mockup-chart {
    display: flex;
    gap: 8px;
    height: 60px;
    align-items: flex-end;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mockup-chart .bar {
    flex: 1;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: height 0.5s ease;
}

.mockup-chart .bar.alert { background: rgba(239, 68, 68, 0.8); }

/* Report Showcase Section */
.report-showcase {
    padding: 100px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.report-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .report-split { grid-template-columns: 1fr; text-align: center; }
    .check-list { text-align: left; }
}

.document-stack {
    position: relative;
    width: 320px;
    height: 440px;
    margin: 0 auto;
    perspective: 1000px;
}

.doc-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.doc-back {
    transform: rotateZ(-5deg) translate(-10px, -10px);
    background: #f1f5f9;
}

.doc-front {
    transform: rotateZ(2deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.document-stack:hover .doc-front { transform: rotateZ(0deg) scale(1.02); }
.document-stack:hover .doc-back { transform: rotateZ(-8deg) translate(-20px, -15px); }

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 10px;
}

.doc-logo { width: 30px; height: 30px; background: #0f172a; border-radius: 50%; }
.doc-title { font-size: 0.7rem; font-weight: bold; color: #64748b; letter-spacing: 1px; }

.doc-content h3 { font-size: 1.2rem; margin: 0 0 15px 0; color: #0f172a; }

.doc-line {
    height: 6px;
    background: #e2e8f0;
    margin-bottom: 10px;
    width: 100%;
}
.doc-line.short { width: 60%; }

.risk-meter {
    margin-top: auto;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.risk-label { font-weight: 600; color: #991b1b; }
.risk-value { 
    background: #ef4444; color: white; padding: 4px 12px; 
    border-radius: 4px; font-weight: bold; font-size: 0.9rem; 
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.check-list li {
    margin-bottom: 24px;
    padding-left: 0;
}

.check-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.check-list p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
}

.btn-text {
    background: none;
    color: white;
    box-shadow: none;
    font-weight: 600;
}
.btn-text:hover {
    color: rgba(255,255,255,0.8);
    background: none;
    transform: translateX(5px);
}

.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 32px; }

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 730px;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #cad8ff;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5.7vw, 4.8rem);
  line-height: 1.05;
  color: #ffffff;
}

.hero-copy p {
  margin: 16px 0 0;
  font-size: 1.1rem;
  color: #e7edff;
}

.hero-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 1rem;
}

.hero-list li::marker {
  color: #90cbff;
}

.hero-package-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-package-strip article {
  background: rgba(242, 247, 255, 0.95);
  border: 1px solid rgba(201, 220, 255, 0.86);
  border-radius: 14px;
  padding: 12px 14px;
  color: #1f3572;
}

.hero-package-strip .kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5a72a9;
  font-weight: 700;
}

.hero-package-strip strong {
  display: block;
  margin-top: 2px;
  font-size: 1.02rem;
}

.hero-package-strip span {
  display: block;
  margin-top: 2px;
  font-size: 0.88rem;
  color: #50679f;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.device {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(145, 176, 255, 0.3);
  border-radius: 24px;
  background: linear-gradient(160deg, #15213f, #090f1e);
  box-shadow: var(--shadow-dark);
  animation: float-device 10s ease-in-out infinite;
}

.device-head {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.device-head span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(214, 224, 255, 0.9);
}

.device-body {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 84px;
  border-radius: 10px;
  border: 1px solid rgba(114, 143, 224, 0.27);
  background: linear-gradient(180deg, rgba(26, 41, 77, 0.92), rgba(13, 19, 38, 0.9));
}

.metric.tall {
  min-height: 102px;
}

.wave {
  grid-column: 1 / -1;
  min-height: 56px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 70%, rgba(123, 165, 255, 0.35), transparent 52%),
    radial-gradient(circle at 76% 30%, rgba(108, 236, 255, 0.3), transparent 56%),
    linear-gradient(120deg, rgba(27, 45, 87, 0.92), rgba(11, 18, 35, 0.86));
}

.laptop {
  width: min(610px, 48vw);
  height: 338px;
  top: -44px;
  right: -44px;
  transform: rotate(-20deg);
}

.tablet {
  width: min(640px, 51vw);
  height: 390px;
  top: 214px;
  right: -56px;
  transform: rotate(-24deg);
  animation-delay: 0.8s;
}

.phone {
  width: 200px;
  height: 390px;
  left: 104px;
  bottom: -28px;
  border-radius: 34px;
  transform: rotate(-28deg);
  animation-delay: 1.4s;
}

@keyframes float-device {
  0% { translate: 0 0; }
  50% { translate: 0 -10px; }
  100% { translate: 0 0; }
}

.features {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 84px 0 92px;
}

.section-title {
  margin: 0;
  text-align: center;
  color: #102047;
  font-size: clamp(2.05rem, 4vw, 3.9rem);
  line-height: 1.07;
}

.section-lead {
  margin: 16px auto 0;
  max-width: 76ch;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 16px 18px;
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #eef4ff, #e2ecff);
}

.feature-icon svg {
  width: 42px;
  height: 42px;
  stroke: #5a90ef;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 14px 0 0;
  color: #132248;
  font-size: 1.16rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: #556a95;
  font-size: 0.94rem;
}

.toolchain {
  background: #ffffff;
  padding: 90px 0;
}

.telemetry-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.telemetry-grid article {
  border-radius: 14px;
  background: linear-gradient(140deg, #edf4ff, #f9fbff);
  border: 1px solid var(--line-soft);
  padding: 16px 12px;
  text-align: center;
}

.telemetry-grid strong {
  display: block;
  color: #1d3470;
  font-size: 1.6rem;
  line-height: 1.1;
}

.telemetry-grid span {
  display: block;
  margin-top: 2px;
  font-size: 0.87rem;
  color: #5f729d;
}

.timeline-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 38, 82, 0.09);
  padding: 20px 18px;
}

.timeline-card h3 {
  margin: 0;
  color: #142451;
  font-size: 1.24rem;
}

.timeline-card p {
  margin: 10px 0 0;
  color: #51658f;
  font-size: 0.94rem;
}

.timeline-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #2d416f;
  font-size: 0.92rem;
}

.timeline-card strong {
  color: #1d427f;
}

.toolchain-note {
  margin: 18px auto 0;
  max-width: 90ch;
  text-align: center;
  color: #4f648f;
  font-size: 0.92rem;
}

.quality {
  background: linear-gradient(145deg, #3f5bab 0%, #4b67bb 45%, #415ba7 100%);
  color: #edf2ff;
  padding: 92px 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: start;
}

.quality-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
}

.quality-copy p {
  margin: 16px 0 0;
  color: #e8eeff;
  font-size: 1.04rem;
}

.quality-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.quality-copy li::marker {
  color: #9ed4ff;
}

.quality-panels {
  display: grid;
  gap: 12px;
}

.quality-panels article {
  border-radius: 14px;
  border: 1px solid rgba(178, 203, 255, 0.32);
  background: rgba(8, 18, 46, 0.28);
  padding: 16px;
}

.panel-tag {
  margin: 0;
  color: #9cc7ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  font-weight: 700;
}

.quality-panels h3 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 1.22rem;
}

.quality-panels p {
  margin: 8px 0 0;
  color: #e8efff;
  font-size: 0.95rem;
}

.strategy {
  background: #ffffff;
  padding: 88px 0;
}

.strategy-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strategy-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, #ffffff, #f6f9ff);
  box-shadow: 0 12px 28px rgba(20, 38, 82, 0.08);
  padding: 20px 18px;
}

.step-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6080bc;
}

.strategy-card h3 {
  margin: 7px 0 0;
  color: #162a5c;
  font-size: 1.24rem;
}

.strategy-card p {
  margin: 10px 0 0;
  color: #526792;
  font-size: 0.94rem;
}

.methodologies {
  background: var(--surface-2);
  padding: 88px 0;
}

.refs-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ref-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 16px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 35, 79, 0.09);
  color: #25417e;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.ref-link:hover {
  transform: translateY(-3px);
  border-color: #84b7ff;
  box-shadow: 0 14px 30px rgba(20, 45, 101, 0.17);
}

.pricing {
  background: #f8faff;
  padding: 90px 0 108px;
}

.pricing-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
}

.plan-card.featured {
  border: 2px solid #5a9ded;
  transform: translateY(-8px);
}

.plan-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5d75ab;
}

.plan-card h3 {
  margin: 10px 0 0;
  color: #12234d;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.08;
}

.plan-card h3 span {
  font-size: 0.96rem;
  color: #60749e;
}

.plan-card ul {
  margin: 14px 0 0;
  padding-left: 19px;
  display: grid;
  gap: 8px;
  color: #2f436f;
  font-size: 0.93rem;
}

.btn-plan {
  margin-top: 16px;
  width: 100%;
  min-height: 48px;
  background: linear-gradient(130deg, #75bdff, #4e92e7);
  color: #ffffff;
  font-size: 0.95rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #e9eef6;
  padding: 108px 0 100px;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 31%;
  width: 112%;
  height: 134px;
  background: rgba(218, 227, 241, 0.92);
  transform: rotate(-10deg);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  max-width: 920px;
}

.shield-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #bfd3ff;
  background: linear-gradient(150deg, #f2f7ff, #dce8ff);
}

.shield-icon svg {
  width: 42px;
  height: 42px;
  stroke: #2b66b2;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.05;
  color: #2b386b;
}

.final-cta p {
  margin: 18px 0 0;
  color: #1b2a4b;
  font-size: clamp(1.04rem, 1.95vw, 1.5rem);
  max-width: 44ch;
}

.final-cta .btn-primary {
  margin-top: 24px;
}

.site-footer {
  background: #101726;
  color: #d4def5;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1260px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 1.15rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .laptop {
    width: min(620px, 84vw);
    right: -16px;
  }

  .tablet {
    width: min(650px, 86vw);
    right: -20px;
    top: 214px;
  }

  .phone {
    left: 26px;
    bottom: -4px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .refs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0 14px;
    gap: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    padding: 54px 0 140px;
    margin-bottom: -64px;
  }

  .hero::after {
    bottom: -102px;
    height: 198px;
  }

  .hero-copy p {
    font-size: 0.99rem;
  }

  .hero-list {
    font-size: 0.95rem;
  }

  .hero-package-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 460px;
  }

  .laptop {
    height: 252px;
    top: -20px;
  }

  .tablet {
    height: 306px;
    top: 174px;
  }

  .phone {
    width: 140px;
    height: 274px;
    left: 10px;
    bottom: 20px;
  }

  .features {
    padding-top: 72px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .feature-card {
    padding: 18px 12px;
    border-radius: var(--radius-sm);
  }

  .feature-icon {
    width: 58px;
    height: 58px;
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .telemetry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refs-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .final-cta {
    padding: 88px 0 78px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }
}
