:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f8;
  --bg-dark: #07111f;
  --text: #111827;
  --text-soft: #3d444e;
  --muted: #8791a1;
  --white: #ffffff;
  --primary: #0f7cff;
  --primary-dark: #075ad7;
  --cyan: #47d7ff;
  --green: #34d399;
  --border: rgba(17, 24, 39, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 80px rgba(15, 28, 48, 0.18);
  --shadow-soft: 0 20px 50px rgba(15, 28, 48, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
  --hero-container: 1440px;
  --font: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  transition: 0.35s ease;
}
.site-header.is-scrolled {
  inset: 10px 0 auto;
}
.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(15, 28, 48, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.header-inner {
  height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.35s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  flex: 0 0 32px;
  display: block;
}
.brand-logo span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 25%, #fff 0 12%, transparent 13%), linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 10px 25px rgba(15, 124, 255, 0.35);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.72);
}
.main-nav a {
  transition: color 0.25s ease;
}
.main-nav a:hover {
  color: var(--text);
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: #075ad7;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  background: #000;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}
.nav-toggle span:first-child {
  top: 15px;
}
.nav-toggle span:last-child {
  top: 24px;
}

.hero {
  min-height: 100vh;
  padding: 145px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 22%, rgba(71, 215, 255, 0.42), transparent 28%), radial-gradient(circle at 18% 42%, rgba(15, 124, 255, 0.16), transparent 26%), radial-gradient(circle at 72% 78%, rgba(52, 211, 153, 0.18), transparent 25%), linear-gradient(180deg, #f9fbff 0%, #edf4fb 52%, #f5f7fb 100%);
}
.hero .container {
  width: min(100% - 64px, var(--hero-container));
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 124, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 124, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 65% 35%, black, transparent 68%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.85;
  animation: floatOrb 14s ease-in-out infinite;
}
.orb.orb-one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 12%;
  background: rgba(71, 215, 255, 0.45);
}
.orb.orb-two {
  width: 360px;
  height: 360px;
  left: -8%;
  top: 34%;
  background: rgba(15, 124, 255, 0.22);
  animation-delay: -4s;
}
.orb.orb-three {
  width: 280px;
  height: 280px;
  right: 28%;
  bottom: 2%;
  background: rgba(52, 211, 153, 0.22);
  animation-delay: -8s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -28px, 0) scale(1.08);
  }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(15, 124, 255, 0.12);
}

.hero h1 {
  margin: 24px 0 22px;
  max-width: 660px;
  font-size: clamp(44px, 5.4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 860;
}
.hero h1 span {
  display: block;
  color: rgba(6, 31, 83, 0.88);
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
  color: var(--text-soft);
  letter-spacing: -0.03em;
}

.hero-note {
  max-width: 590px;
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(17, 24, 39, 0.68);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 40px rgba(15, 124, 255, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 24px 55px rgba(15, 124, 255, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.68);
  font-size: 13px;
  font-weight: 700;
}

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

.dashboard-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.main-dashboard {
  position: absolute;
  right: -90px;
  top: 10px;
  width: min(880px, 118%);
  transform: rotate(-2deg);
  border: 3px solid #e9e4e4;
  animation: dashboardFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 55px rgba(6, 15, 28, 0.28)) drop-shadow(0 8px 18px rgba(0, 180, 216, 0.14));
}
.main-dashboard img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

@keyframes dashboardFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}
.floating-card,
.floating-metric {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.floating-card {
  width: 235px;
  padding: 18px;
}
.floating-card strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.floating-card small {
  color: var(--text-soft);
  line-height: 1.45;
}

.mini-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card-one {
  left: -20px;
  top: 105px;
}

.floating-card-two {
  right: 10px;
  bottom: 130px;
}

.floating-metric {
  left: 80px;
  bottom: 42px;
  width: 210px;
  padding: 22px;
}
.floating-metric strong {
  display: block;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.floating-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.35;
  font-size: 14px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading.narrow {
  max-width: 760px;
}
.section-heading h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.problem-section {
  background: var(--bg);
}

.questions-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.questions-wall span {
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 28, 48, 0.06);
  color: rgba(17, 24, 39, 0.74);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 720;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.questions-wall span:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 28, 48, 0.1);
}

.savings-section {
  padding: 90px 0;
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}
.savings-section::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 650px;
  height: 650px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(71, 215, 255, 0.18), transparent 68%);
  filter: blur(20px);
}

.savings-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

.savings-content h2 {
  margin: 16px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.savings-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.savings-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.calc-row span {
  color: rgba(255, 255, 255, 0.72);
}
.calc-row strong {
  font-size: 24px;
}

.calc-result {
  padding-top: 24px;
}
.calc-result strong {
  display: block;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.08em;
}
.calc-result span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.solution-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)), radial-gradient(circle at 100% 0%, rgba(15, 124, 255, 0.18), transparent 38%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 20px 50px rgba(15, 28, 48, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card.large {
  grid-row: span 2;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.95)), radial-gradient(circle at 75% 20%, rgba(71, 215, 255, 0.34), transparent 28%), radial-gradient(circle at 20% 15%, rgba(15, 124, 255, 0.2), transparent 30%), var(--white);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 28, 48, 0.12);
}
.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.055em;
}
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.feature-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15, 124, 255, 0.1);
  color: var(--primary);
  font-weight: 900;
}

.image-band {
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.image-track {
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 0 max(32px, (100vw - var(--container)) / 2);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.zone-card {
  width: clamp(280px, 28vw, 390px);
  height: 360px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  background: #07111f;
  opacity: 0;
  transform: translate3d(0, 54px, 0) scale(0.94);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
.zone-card:nth-child(1) {
  transition-delay: 0.02s;
}
.zone-card:nth-child(2) {
  transition-delay: 0.1s;
}
.zone-card:nth-child(3) {
  transition-delay: 0.18s;
}
.zone-card:nth-child(4) {
  transition-delay: 0.26s;
}
.zone-card:nth-child(5) {
  transition-delay: 0.34s;
}
.zone-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.zone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.92;
}
.zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 0%, rgba(71, 215, 255, 0.18), transparent 34%), linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.86) 100%);
}
.zone-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}
.zone-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  color: var(--white);
  transform: translateY(8px);
  opacity: 0.94;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.zone-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}
.zone-card strong {
  display: block;
  max-width: 320px;
  font-size: 24px;
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.zone-card:hover {
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.26);
}
.zone-card:hover img {
  transform: scale(1.1);
}
.zone-card:hover div {
  transform: translateY(0);
  opacity: 1;
}

.modules-section {
  background: #fff;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  background: #f7f9fc;
  border: 1px solid rgba(17, 24, 39, 0.07);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.module-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.module-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}
.module-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quality-gate-section {
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, rgba(71, 215, 255, 0.22), transparent 28%), radial-gradient(circle at 18% 72%, rgba(52, 211, 153, 0.16), transparent 26%), linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.quality-gate-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.quality-gate-content h2 {
  margin: 16px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.quality-gate-content p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.quality-gate-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quality-gate-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 35px rgba(15, 28, 48, 0.06);
}
.quality-gate-point span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15, 124, 255, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.quality-gate-point strong {
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.035em;
}
.quality-gate-point small {
  display: block;
  color: var(--text-soft);
  line-height: 1.45;
}

.quality-gate-visual {
  position: relative;
  min-height: 560px;
}

.survey-card,
.certificate-card,
.unlock-card {
  position: absolute;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.survey-card {
  left: 0;
  top: 22px;
  width: 78%;
  padding: 28px;
  z-index: 2;
}
.survey-card h3 {
  margin: 14px 0 10px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.survey-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.survey-score {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.survey-score span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f0f6ff;
  color: var(--primary);
  font-weight: 850;
}
.survey-score span:last-child {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 14px 32px rgba(15, 124, 255, 0.24);
}

.certificate-card {
  right: 0;
  bottom: 72px;
  width: 72%;
  padding: 26px;
  z-index: 3;
}
.certificate-card .file-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid rgba(17, 24, 39, 0.06);
}
.certificate-card .file-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(15, 124, 255, 0.18), rgba(71, 215, 255, 0.16)), var(--white);
  border: 1px solid rgba(15, 124, 255, 0.16);
}
.certificate-card strong {
  display: block;
  letter-spacing: -0.035em;
}
.certificate-card small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
}

.unlock-card {
  right: 34px;
  top: 0;
  width: 210px;
  padding: 20px;
  z-index: 4;
}
.unlock-card strong {
  display: block;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.075em;
}
.unlock-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.35;
}

.quality-path {
  position: absolute;
  left: 17%;
  top: 46%;
  width: 62%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--green));
  opacity: 0.42;
  transform: rotate(18deg);
  transform-origin: left center;
}

.web-section {
  background: radial-gradient(circle at 18% 24%, rgba(71, 215, 255, 0.16), transparent 30%), linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
}

.web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 82px;
  align-items: center;
}

.web-visual {
  min-height: 620px;
  position: relative;
}

.phone-mock,
.chat-mock {
  position: absolute;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.phone-mock img,
.chat-mock img {
  width: 100%;
  height: 100%;
  object-fit: content;
}

.phone-mock {
  left: 20px;
  top: 0;
  width: 62%;
  height: 570px;
  border-radius: 42px;
}

.chat-mock {
  right: 0;
  bottom: 16px;
  width: 48%;
  height: 360px;
  border-radius: 32px;
}

.web-content h2 {
  margin: 16px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.065em;
}
.web-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.code-card {
  margin: 28px 0;
  padding: 18px;
  border-radius: 18px;
  background: #07111f;
  color: #b7e3ff;
  overflow-x: auto;
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.16);
}
.code-card code {
  font-size: 13px;
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(17, 24, 39, 0.74);
  font-weight: 650;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--white) 0 24%, transparent 25%), var(--primary);
}

.comparison-section {
  background: var(--bg-dark);
  color: var(--white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}
.comparison-card h3 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.comparison-card li {
  color: rgba(255, 255, 255, 0.75);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.comparison-card.after {
  background: radial-gradient(circle at 90% 0%, rgba(71, 215, 255, 0.18), transparent 35%), rgba(255, 255, 255, 0.1);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.faq-intro h2 {
  margin: 16px 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.faq-intro p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f7f9fc;
  overflow: hidden;
}
details summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}
details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

.final-cta {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 0%, rgba(71, 215, 255, 0.25), transparent 34%), linear-gradient(180deg, #fff 0%, #edf4fb 100%);
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 54px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.final-cta-inner h2 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.07em;
}
.final-cta-inner p {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.demo-form input {
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.86);
  padding: 0 20px;
  outline: none;
}
.demo-form input:focus {
  border-color: rgba(15, 124, 255, 0.5);
  box-shadow: 0 0 0 5px rgba(15, 124, 255, 0.1);
}
.demo-form c button {
  grid-column: span 2;
}

.site-footer {
  padding: 44px 0;
  background: #07111f;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-inner p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.16s;
}

@media (max-width: 1024px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  body.nav-open .main-nav {
    display: flex;
  }
  body.nav-open .nav-toggle span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }
  body.nav-open .nav-toggle span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }
  .hero-grid,
  .savings-grid,
  .web-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 140px;
  }
  .hero .container {
    width: min(100% - 40px, var(--container));
  }
  .hero-visual {
    min-height: 560px;
  }
  .main-dashboard {
    right: 0;
    width: 100%;
  }
  .solution-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.large {
    min-height: 360px;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .savings-grid {
    gap: 34px;
  }
  .web-grid {
    gap: 44px;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .hero {
    padding: 126px 0 60px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-visual {
    min-height: 480px;
  }
  .main-dashboard {
    top: 46px;
  }
  .main-dashboard img {
    min-height: 360px;
  }
  .floating-card {
    width: 210px;
  }
  .floating-card-one {
    left: 0;
    top: 0;
  }
  .floating-card-two {
    right: 0;
    bottom: 80px;
  }
  .floating-metric {
    left: 12px;
    bottom: 0;
    width: 190px;
  }
  .floating-metric strong {
    font-size: 36px;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading p {
    font-size: 17px;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .image-track {
    padding: 0 18px;
  }
  .zone-card {
    width: 78vw;
    height: 330px;
  }
  .web-visual {
    min-height: 520px;
  }
  .phone-mock {
    left: 0;
    width: 72%;
    height: 470px;
  }
  .chat-mock {
    width: 58%;
    height: 300px;
  }
  .final-cta-inner {
    padding: 34px 22px;
  }
  .demo-form {
    grid-template-columns: 1fr;
  }
  .demo-form button {
    grid-column: auto;
  }
  .footer-inner {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
