:root {
  --navy: #082d4f;
  --navy-2: #061e38;
  --green: #0ea362;
  --green-2: #16c172;
  --blue: #2d86f6;
  --sky: #eaf4ff;
  --text: #10233f;
  --muted: #64748b;
  --line: #d9e5f3;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 45, 79, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 88px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(217,229,243,.9);
  backdrop-filter: blur(18px);
}
.brand img { width: 230px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 15px;
  font-weight: 750;
  color: var(--navy-2);
}
.desktop-nav a { opacity: .92; }
.desktop-nav a:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 16px 28px rgba(14, 163, 98, .22);
}
.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: #c9d8ea;
}
.btn-large { min-height: 56px; padding: 0 28px; font-size: 16px; }

.section { padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 88px); }
.section.compact { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(40px, 5vw, 72px); }
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
  min-height: calc(100vh - 86px);
  background:
    radial-gradient(circle at 82% 8%, rgba(45,134,246,.15), transparent 36%),
    radial-gradient(circle at 10% 20%, rgba(14,163,98,.09), transparent 30%);
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  color: var(--navy-2);
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
}
h2 {
  margin-bottom: 18px;
  color: var(--navy-2);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
h3 { color: var(--navy-2); font-size: 21px; line-height: 1.15; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.55; }
.lead { max-width: 620px; margin-bottom: 10px; color: #536987; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.42; }
.lead-small { font-size: clamp(17px, 1.6vw, 20px); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 42px; }

.value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 700px;
}
.value-row article {
  padding: 20px 18px;
  border: 1px solid rgba(217,229,243,.86);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}
.icon-bubble {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--green);
  background: #e7f8ef;
  font-weight: 900;
  font-size: 22px;
}
.value-row p { margin: 0; font-size: 15px; }

.hero-visual { position: relative; min-height: 520px; }
.visual-glow {
  position: absolute;
  inset: 6% 0 0 7%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(45,134,246,.18), rgba(14,163,98,.12));
  filter: blur(20px);
}
.dashboard-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(217,229,243,.86);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  color: #c9d8ea;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
}
.app-sidebar img { width: 138px; margin-bottom: 12px; }
.app-sidebar span { padding: 10px 12px; border-radius: 10px; font-size: 14px; }
.app-sidebar .active { color: #fff; background: rgba(255,255,255,.13); }
.app-main { padding: 28px; background: linear-gradient(180deg, #fff, #f7fbff); }
.app-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.app-topbar span { flex: 1; max-width: 300px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px; color: #8ca0b8; font-size: 13px; }
.app-topbar strong { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--sky); color: var(--navy); }
.app-main h2 { margin: 0 0 4px; font-size: 30px; letter-spacing: -.03em; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.stats div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.stats strong { display: block; color: var(--navy); font-size: 30px; }
.stats span { color: var(--muted); font-size: 13px; }
.task-list { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.task-list h3 { font-size: 18px; }
.task-list p, .phone-card p { display: flex; align-items: center; gap: 10px; margin: 10px 0 0; font-size: 14px; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.dot.green { background: var(--green); }
.dot.yellow { background: #f7b731; }
.dot.blue { background: var(--blue); }
.phone-card {
  position: absolute;
  right: -16px;
  bottom: 18px;
  width: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.phone-card img { width: 132px; margin-bottom: 18px; }
.phone-card h3 { margin-bottom: 12px; }

.section-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .8fr); gap: 40px; align-items: end; margin-bottom: 34px; }
.section-heading.left { display: block; max-width: 830px; }
.section-heading p:not(.eyebrow) { font-size: 18px; max-width: 620px; }
.split-heading { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr); gap: 56px; align-items: end; margin-bottom: 28px; }
.split-heading > p { font-size: 18px; }
.problem-grid, .feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-grid article, .feature-card, .solution-row article, .process-grid article {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 40px rgba(8,45,79,.05);
}
.problem-grid span { color: var(--green); font-weight: 900; letter-spacing: .12em; }
.problem-grid h3 { margin-top: 18px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card { min-height: 190px; }
.line-icon, .solution-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--sky);
  font-size: 30px;
  font-weight: 900;
}
.solution-intro { padding-top: 24px; padding-bottom: 24px; }
.intro-card, .value-card, .quote-card {
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  box-shadow: var(--shadow);
}
.intro-card p:not(.eyebrow), .value-card p { max-width: 840px; font-size: 19px; }
.solution-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--green);
  background: #e7f8ef;
  font-size: 25px;
  font-weight: 900;
}
.value-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin: 28px 0 0; padding: 0; list-style: none; }
.value-card li { position: relative; padding-left: 30px; color: var(--text); font-weight: 700; }
.value-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }
.about { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr); gap: 24px; align-items: stretch; }
.about-copy { padding: clamp(30px, 4vw, 54px); border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.quote-card { display: flex; flex-direction: column; justify-content: center; background: linear-gradient(150deg, var(--navy), var(--navy-2)); }
.quote-card strong { color: #fff; font-size: 28px; line-height: 1.1; }
.quote-card p { margin: 18px 0 0; color: #cbd8e7; font-size: 18px; }

.cta {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .75fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  margin: clamp(32px, 5vw, 70px) clamp(20px, 5vw, 88px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}
.cta h2 { color: #fff; }
.cta p { color: #cbd8e7; font-size: 18px; }
.cta .eyebrow { color: #d9e7f5; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 7px; color: #d9e7f5; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(217,229,243,.34);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
}
.contact-form textarea::placeholder { color: rgba(217,231,245,.6); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-2); }

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 46px clamp(20px, 5vw, 88px);
  background: var(--navy-2);
  color: #d9e7f5;
}
.footer img { width: 210px; margin-bottom: 16px; }
.footer h3 { color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.footer a, .footer p { display: block; margin: 8px 0; color: #bfd0e4; font-size: 14px; }
.footer a:hover { color: #fff; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 460px; }
  .problem-grid, .solution-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header { position: relative; flex-wrap: wrap; min-height: auto; padding: 14px 18px; }
  .brand img { width: 190px; }
  .header-actions { width: 100%; }
  .header-actions .btn { flex: 1; padding-inline: 12px; }
  .section { padding: 52px 18px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .value-row, .section-heading, .split-heading, .feature-grid, .process-grid, .about, .cta, .footer { grid-template-columns: 1fr; }
  .hero-buttons { margin-bottom: 24px; }
  .dashboard-card { grid-template-columns: 1fr; min-height: auto; }
  .app-sidebar { display: none; }
  .app-main { padding: 22px; }
  .stats { grid-template-columns: 1fr; }
  .phone-card { position: relative; right: auto; bottom: auto; width: auto; margin-top: 18px; }
  .hero-visual { min-height: auto; }
  .problem-grid, .solution-row { grid-template-columns: 1fr; }
  .value-card ul { grid-template-columns: 1fr; }
  .cta { margin: 32px 18px; padding: 32px 22px; }
  .footer { gap: 20px; }
}
