:root {
  --bg: #f4f7fb;
  --ink: #0d1722;
  --muted: #5d6d7f;
  --line: #d9e3ee;
  --panel: #ffffff;
  --dark: #0d1b2a;
  --dark-2: #13283b;
  --accent: #0f766e;
  --accent-2: #2563eb;
  --good: #1ca66a;
  --shadow: 0 22px 70px rgba(15, 32, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(244, 247, 251, 0.9);
  border-bottom: 1px solid rgba(13, 23, 34, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3f5062;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 430px;
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(37, 99, 235, 0.14), transparent 32%),
    var(--bg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 720px;
  color: #3e5064;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #405064;
  font-size: 13px;
  font-weight: 750;
}

.hero-panel {
  border-radius: 8px;
  padding: 22px;
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8d6e5;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #45e29a;
  box-shadow: 0 0 0 6px rgba(69, 226, 154, 0.13);
}

.dashboard-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.dashboard-list div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.dashboard-list strong,
.dashboard-list span,
.dashboard-list em {
  display: block;
}

.dashboard-list span {
  margin: 3px 0 12px;
  color: #b7c8da;
  font-size: 13px;
}

.dashboard-list em {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #45e29a, #76b7ff);
}

.bar-82 {
  width: 82%;
}

.bar-88 {
  width: 88%;
}

.bar-91 {
  width: 91%;
}

.panel-note {
  margin: 18px 0 0;
  color: #b7c8da;
  font-size: 13px;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 82px);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.proof-bar span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  background: #fff;
  color: #34475a;
  text-align: center;
  font-size: 14px;
  font-weight: 850;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro p:last-child,
.section-heading p,
.quote p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: #46576b;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.plan-card,
.steps div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(30, 45, 62, 0.06);
}

.service-card {
  min-height: 365px;
  padding: 22px;
}

.service-card.hidden {
  display: none;
}

.service-card.featured {
  background: var(--dark);
  color: #fff;
}

.service-card p {
  color: var(--muted);
}

.service-card.featured p,
.service-card.featured li {
  color: #c6d4e3;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card.featured .text-link {
  color: #72e8b0;
}

.card-label,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .card-label {
  background: rgba(69, 226, 154, 0.13);
  color: #72e8b0;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

li {
  margin: 8px 0;
}

.plans {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  padding: 24px;
}

.plan-card.recommended {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: var(--shadow);
}

.plan-card p {
  color: var(--muted);
}

.plan-card strong {
  display: block;
  margin: 20px 0;
}

.plan-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 13px;
  background: var(--dark);
  color: #fff;
  font-weight: 850;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: 44px;
  align-items: start;
  background: #edf3f8;
}

.quote-request,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 650px);
  gap: 44px;
  align-items: start;
}

.quote-request {
  background: #fff;
}

.booking {
  background: #edf3f8;
}

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

.compact-form button,
.wide-field,
.compact-form .form-note {
  grid-column: 1 / -1;
}

.booking-points {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.booking-points span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #405064;
  font-weight: 800;
}

.quote-tool,
form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 45, 62, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: #405064;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.site-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

textarea {
  resize: vertical;
}

.quote-result {
  min-height: 90px;
  padding: 16px;
  border-radius: 8px;
  background: var(--dark);
  color: #d7e5f5;
  font-weight: 750;
}

.credentials {
  background: #fff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(30, 45, 62, 0.08);
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  font-weight: 850;
}

.process {
  background: #edf3f8;
}

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

.steps div {
  padding: 22px;
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.steps p,
details p {
  color: var(--muted);
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 540px);
  gap: 44px;
  align-items: start;
  background: var(--dark);
  color: #fff;
}

.contact p {
  color: #c8d6e5;
}

.contact-cards {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.contact-cards a,
.contact-cards span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #dbe8f5;
  font-weight: 750;
}

button[type="submit"] {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.legal-page h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 70px);
}

.legal-page a {
  color: var(--accent);
  font-weight: 850;
}

.service-detail {
  background: #fff;
}

.service-detail .hero-actions {
  margin-bottom: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 34px;
}

.service-summary {
  color: #3e5064;
  font-size: 20px;
}

.deliverables {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #edf3f8;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(30, 45, 62, 0.08);
}

.status-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.status-card span {
  color: var(--good);
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 82px);
  background: #081018;
  color: #9fb0c2;
  font-size: 13px;
}

footer p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .hero,
  .intro,
  .quote,
  .quote-request,
  .booking,
  .contact,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 580px;
  }

  .service-grid,
  .cert-grid,
  .steps,
  .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    font-weight: 850;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 34px 16px 42px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .hero-text,
  .intro p:last-child,
  .section-heading p,
  .quote p,
  .contact p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 145px;
  }

  .hero-panel,
  .quote-tool,
  form {
    padding: 18px;
  }

  .split-heading {
    display: grid;
  }

  .service-grid,
  .cert-grid,
  .steps,
  .plan-grid,
  .proof-bar {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section {
    padding: 48px 16px;
  }

  .contact,
  .quote,
  .quote-request,
  .booking {
    gap: 24px;
  }

  .compact-form,
  .status-grid {
    grid-template-columns: 1fr;
  }

  footer {
    display: grid;
    padding-bottom: 84px;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(13, 23, 34, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 38px rgba(13, 23, 34, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 42px;
    place-items: center;
    border-radius: 8px;
    background: var(--dark);
    color: #fff;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: var(--accent);
  }
}

@media (max-width: 430px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .brand {
    max-width: calc(100% - 86px);
  }

  .brand small {
    white-space: normal;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .proof-bar span {
    min-height: 58px;
  }

  .mobile-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
}
