:root {
  --ink: #10252d;
  --muted: #5b6c72;
  --line: #d8e5e8;
  --paper: #ffffff;
  --mist: #eef8f9;
  --teal: #0b6f84;
  --teal-dark: #075468;
  --sun: #f2b84b;
  --coral: #d96c4b;
  --shadow: 0 18px 50px rgba(8, 40, 52, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 20;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  border: 3px solid #caedf2;
}
.brand strong { display: block; font-size: 1.02rem; letter-spacing: 0; }
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: .78rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
  font-size: .94rem;
}
.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 7px;
  color: #213941;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: var(--mist); color: var(--teal-dark); }
.site-nav .nav-cta {
  background: var(--teal);
  color: #fff;
  margin-left: 4px;
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] { background: var(--teal-dark); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: 610px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 88px 0 126px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 670px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255,255,255,.9);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
}
.button.primary { background: var(--sun); color: #17232a; }
.button.secondary { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.5); }
.button.outline { color: var(--teal-dark); border-color: var(--teal); background: #fff; }

.section { padding: 76px 0; }
.section.alt { background: var(--mist); }
.section.tight { padding: 54px 0; }
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2,
.content h2,
.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p,
.content p,
.card p,
.pricing-card p,
.site-footer p { color: var(--muted); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}
.card,
.pricing-card,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card h3,
.pricing-card h3 { margin: 0 0 8px; font-size: 1.24rem; }
.card ul,
.content ul,
.pricing-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}
.card li,
.content li,
.pricing-card li { margin: 7px 0; color: #34494f; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #dff4f6;
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.photo {
  min-height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.content .eyebrow { color: var(--coral); }
.content h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.8vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}
.content.lead { max-width: 820px; }
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.service-article {
  max-width: 760px;
}
.service-article h2 {
  margin-top: 38px;
}
.service-article h2:first-child,
.article-intro + h2 {
  margin-top: 0;
}
.article-intro {
  padding: 24px;
  background: #f7fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 34px;
}
.article-intro p {
  font-size: 1.08rem;
}
.article-intro p:first-child,
.service-article p:first-child {
  margin-top: 0;
}
.article-intro p:last-child,
.service-article p:last-child {
  margin-bottom: 0;
}
.service-article ol {
  counter-reset: service-steps;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.service-article ol li {
  counter-increment: service-steps;
  position: relative;
  margin: 12px 0;
  padding: 14px 16px 14px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #34494f;
}
.service-article ol li::before {
  content: counter(service-steps);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: .88rem;
}
.service-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  text-decoration: none;
  color: var(--teal-dark);
  font-weight: 800;
  background: #fff;
}
.related-links a:hover {
  background: var(--mist);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-card { padding: 26px; }
.price {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-dark);
  margin: 12px 0;
}
.note {
  padding: 16px 18px;
  border-left: 4px solid var(--sun);
  background: #fff8e8;
  color: #5f4a22;
  border-radius: 6px;
}

.cta-band {
  background: #092f3b;
  color: #fff;
  padding: 58px 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,.78); max-width: 700px; }

.form-panel { padding: 28px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; }
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8cacf;
  border-radius: 7px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 132px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11,111,132,.18);
  border-color: var(--teal);
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.alert {
  padding: 14px 16px;
  border-radius: 7px;
  margin-bottom: 18px;
  font-weight: 750;
}
.alert.error { background: #ffeceb; color: #8a2a1f; }
.alert.success { background: #e7f8ef; color: #17623d; }

.site-footer {
  background: #f6fafb;
  border-top: 1px solid var(--line);
  padding: 54px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.site-footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 8px 0;
}
.site-footer a:hover { color: var(--teal-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 18px;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; }
  .hero { min-height: 560px; }
  .grid-3,
  .grid-2,
  .service-layout,
  .feature,
  .pricing-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-article { max-width: none; }
  .service-sidebar {
    position: static;
  }
  .form-grid { grid-template-columns: 1fr; }
  .photo { min-height: 300px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .72rem; }
  .hero-content { padding: 70px 0 96px; }
  .section { padding: 56px 0; }
  .button { width: 100%; }
}
