:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #101828;
  --muted: #475467;
  --brand: #2947d3;
  --brand-soft: #dce4ff;
  --accent: #1f8f76;
  --border: #d0d5dd;
  --shadow-soft: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-strong: 0 22px 42px rgba(16, 24, 40, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(1200px 900px at 10% -10%, #dfe8ff 0%, transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

.container {
  width: min(var(--max-width), 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(246, 248, 252, 0.84);
  border-bottom: 1px solid rgba(208, 213, 221, 0.6);
}

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

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #7f8dff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--brand);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

main {
  padding-bottom: 56px;
}

section {
  padding-block: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 10px;
  background: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  max-width: 66ch;
}

.hero {
  padding-top: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #4f68ef);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
}

.hero-media .photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.stat-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.stat-float strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.stat-float p {
  margin-top: 2px;
  font-size: 0.9rem;
}

.stat-one {
  bottom: 22px;
  left: -14px;
}

.stat-two {
  top: 20px;
  right: -12px;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(208, 213, 221, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(41, 71, 211, 0.35);
  box-shadow: var(--shadow-strong);
}

.card-body {
  padding: 18px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
}

.kpi-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kpi {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #ffffff, #edf2ff);
  border: 1px solid rgba(208, 213, 221, 0.65);
  box-shadow: var(--shadow-soft);
}

.kpi strong {
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: var(--text);
}

.kpi p {
  margin-top: 4px;
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 800;
}

.quote {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f9faff, #e6edff);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(208, 213, 221, 0.7);
}

.quote footer {
  margin-top: 14px;
  color: var(--text);
  font-weight: 700;
}

.cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #1f2a66, #2947d3 60%, #5b77ff);
  color: #fff;
  box-shadow: var(--shadow-strong);
  padding: clamp(26px, 5vw, 40px);
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(208, 213, 221, 0.7);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1d2939;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(41, 71, 211, 0.75);
  box-shadow: 0 0 0 4px rgba(41, 71, 211, 0.15);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.2, 1, 0.3, 1), transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  section {
    padding-block: 58px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 4%;
    width: min(320px, 92vw);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(208, 213, 221, 0.8);
    box-shadow: var(--shadow-strong);
    padding: 12px;
    transform-origin: top right;
    transform: scale(0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    border-radius: 10px;
  }

  .grid-3,
  .grid-2,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .stat-one,
  .stat-two {
    position: static;
    margin-top: 12px;
  }

  .hero-media .photo-card {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
