:root {
  --ink: #0b1f2a;
  --steel: #1e3a4a;
  --mist: #edf2f4;
  --sand: #f8f4ef;
  --accent: #ff7a59;
  --accent-dark: #d85a3e;
  --teal: #2ca7a0;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 50px rgba(11, 31, 42, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.15;
}

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

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: rgba(11, 31, 42, 0.78);
}

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

ul {
  list-style: none;
}

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

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.9;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(44, 167, 160, 0.7) 0%, rgba(44, 167, 160, 0.1) 70%);
  top: -120px;
  left: -80px;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.5) 0%, rgba(255, 122, 89, 0.08) 70%);
  bottom: -200px;
  right: -120px;
  animation-delay: 2s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 31, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 42, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(24px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 244, 239, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 42, 0.08);
  z-index: 10;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(216, 90, 62, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(11, 31, 42, 0.2);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(11, 31, 42, 0.12);
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

.trust-row .stat,
.metrics .stat {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--steel);
}

.trust-row .label,
.metrics .label {
  font-size: 0.9rem;
  color: rgba(11, 31, 42, 0.7);
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
}

.panel-card {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.panel-card ul {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.panel-card li {
  padding-left: 1.4rem;
  position: relative;
}

.panel-card li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  left: 0;
  top: 0.5rem;
}

.panel-card.accent {
  background: linear-gradient(135deg, rgba(44, 167, 160, 0.18), rgba(255, 255, 255, 0.9));
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--mist);
}

.section.highlight {
  background: linear-gradient(120deg, rgba(11, 31, 42, 0.95), rgba(30, 58, 74, 0.9));
  color: var(--white);
}

.section.highlight p,
.section.highlight .label {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 12px 30px rgba(11, 31, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(11, 31, 42, 0.12);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pill {
  background: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 42, 0.1);
  font-weight: 600;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 1.4rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 12px 30px rgba(11, 31, 42, 0.08);
}

.step-num {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--accent);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.metrics {
  display: grid;
  gap: 1.2rem;
}

.contact {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-details .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: rgba(11, 31, 42, 0.55);
}

.contact-details .value {
  font-weight: 600;
  color: var(--steel);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--steel);
}

.contact-card input,
.contact-card textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 31, 42, 0.2);
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(248, 244, 239, 0.6);
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(44, 167, 160, 0.35);
  border-color: var(--teal);
}

.fineprint {
  font-size: 0.8rem;
  color: rgba(11, 31, 42, 0.55);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer p,
.site-footer li,
.site-footer .label {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer ul {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  .hero {
    padding-top: 3.5rem;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

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