:root {
  --bg: #f8fafc;
  --dark: #06111f;
  --dark-2: #0b1728;
  --dark-3: #0f2138;
  --text: #0f172a;
  --muted: #64748b;
  --muted-light: #cbd5e1;
  --white: #ffffff;
  --line: #e2e8f0;
  --line-dark: rgba(255, 255, 255, 0.12);
  --primary: #08b6d8;
  --primary-dark: #0891b2;
  --primary-soft: rgba(8, 182, 216, 0.12);
  --green: #10b981;
  --green-soft: rgba(16, 185, 129, 0.12);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

p {
  margin-top: 0;
}

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, #67e8f9, #08b6d8);
  box-shadow: 0 12px 30px rgba(8, 182, 216, 0.20);
  overflow: hidden;
  flex: 0 0 48px;
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #ffffff;
}

.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  transition: 0.2s ease;
}

.menu a:hover {
  color: var(--primary-dark);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #67e8f9);
  color: #03202a;
  box-shadow: 0 18px 42px rgba(8, 182, 216, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(8, 182, 216, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 182, 216, 0.35);
}

.btn-icon {
  gap: 10px;
}

.icon,
.btn svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(8, 182, 216, 0.22), transparent 34%),
    linear-gradient(135deg, #06111f 0%, #0a1c33 52%, #063343 100%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 90%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 110px;
  width: 460px;
  height: 460px;
  background: rgba(8, 182, 216, 0.14);
  border-radius: 999px;
  filter: blur(34px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #cffafe;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
}

h1 {
  margin: 22px 0 24px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin: 12px 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin: 0 0 12px;
}

.hero-text {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted-light);
}

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

.center {
  justify-content: center;
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}

.stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 30px;
  color: #67e8f9;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
}

/* DASHBOARD */

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -90px -90px auto auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: rgba(8, 182, 216, 0.16);
  filter: blur(24px);
}

.dashboard-header,
.mini-metrics,
.bar-item,
.dashboard-note {
  position: relative;
  z-index: 2;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-header span {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-header h3 {
  color: var(--white);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.dashboard-header p {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #6ee7b7;
  font-size: 13px;
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 18px;
}

.mini-metrics div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.mini-metrics span {
  display: block;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
}

.mini-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.bar-item {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.bar-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--white);
}

.bar-title strong {
  color: #67e8f9;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #67e8f9);
}

.bar-item small {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

.dashboard-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(8, 182, 216, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.22);
  color: #cffafe;
  line-height: 1.55;
}

/* PROBLEM */

.problem-section {
  padding: 78px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.tag {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

/* SECTIONS */

.section {
  padding: 96px 0;
}

.section-alt {
  background: #eef6fa;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}

.section-title p {
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-title span {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

/* CARDS */

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

.card,
.step,
.about-box,
.faq-item,
.value-card,
.pillar {
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  transition: 0.22s ease;
}

.featured-card {
  border-color: rgba(8, 182, 216, 0.35);
  background: linear-gradient(180deg, rgba(8, 182, 216, 0.10), var(--white));
}

.card:hover,
.step:hover,
.faq-item:hover,
.value-card:hover,
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  border: 1px solid rgba(8, 182, 216, 0.20);
  color: var(--primary-dark);
  font-weight: 900;
}

.card p,
.step p,
.about-box p,
.split p,
.faq-item p,
.value-card p,
.pillar p {
  color: var(--muted);
  line-height: 1.7;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 900;
}

/* PILLARS */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar {
  transition: 0.22s ease;
  position: relative;
  overflow: hidden;
}

.pillar-highlight {
  border-color: rgba(8, 182, 216, 0.35);
  background: linear-gradient(180deg, rgba(8, 182, 216, 0.11), var(--white));
}

.pillar-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--primary-soft);
  border: 1px solid rgba(8, 182, 216, 0.20);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 18px;
}

.pillar h3 {
  font-size: 26px;
}

.pillar ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.pillar li {
  margin-bottom: 8px;
}

/* ASSESSMENT */

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

.highlight {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: var(--primary-soft);
  border: 1px solid rgba(8, 182, 216, 0.22);
}

.highlight strong,
.highlight span {
  display: block;
}

.highlight span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.price-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: var(--green-soft);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #065f46;
  line-height: 1.6;
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist p {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

/* METHOD */

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

.step {
  transition: 0.22s ease;
}

.step strong {
  display: block;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 48px;
  line-height: 1;
}

/* VALUE */

.value-section {
  background:
    radial-gradient(circle at center, rgba(8, 182, 216, 0.10), transparent 42%),
    var(--white);
}

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

.value-card {
  transition: 0.22s ease;
}

.value-card h3 {
  color: var(--text);
  font-size: 22px;
}

/* ABOUT */

.result-box {
  border-color: rgba(8, 182, 216, 0.35);
}

.about-profile {
  position: relative;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.profile-header img {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(8, 182, 216, 0.50);
  box-shadow: 0 16px 36px rgba(8, 182, 216, 0.14);
  flex-shrink: 0;
}

.profile-header h2 {
  margin-bottom: 0;
}

.about-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.about-box li {
  margin-bottom: 8px;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  transition: 0.22s ease;
}

.faq-item h3 {
  color: var(--text);
}

/* CONTACT */

.contact {
  padding: 104px 0;
  background:
    radial-gradient(circle at top, rgba(8, 182, 216, 0.14), transparent 45%),
    linear-gradient(135deg, #06111f 0%, #0a1c33 52%, #063343 100%);
  color: var(--white);
}

.contact-box {
  max-width: 920px;
  text-align: center;
}

.contact-box p {
  color: var(--muted-light);
  line-height: 1.8;
  font-size: 18px;
}

.contact h2 {
  color: var(--white);
}

.contact .tag {
  color: #67e8f9;
}

.contact-panel {
  margin: 34px auto 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: left;
}

.contact-panel div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-panel strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.contact-panel span {
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
}

.contact .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
}

.contact-box small {
  display: block;
  margin-top: 28px;
  color: var(--muted-light);
}

/* FOOTER */

.footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .split,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars,
  .steps,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 74px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero {
    padding: 74px 0 86px;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.4;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text,
  .contact-box p {
    font-size: 16px;
  }

  .cards,
  .stats,
  .faq-grid,
  .mini-metrics,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    padding: 20px;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .problem-section {
    padding: 58px 0;
  }

  .profile-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-header img {
    width: 78px;
    height: 78px;
  }
}
