:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-alt: #e8f3fa;
  --text: #001c34;
  --muted: #5c6c79;
  --border: #d8e6ef;
  --accent: #00a8f5;
  --accent-dark: #006fa3;
  --dark: #001c34;
  --dark-muted: #b9d7e8;
  --shadow: 0 20px 50px rgba(0, 28, 52, 0.08);
  --radius: 22px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar span {
  color: var(--dark-muted);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 248, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 230, 239, 0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 168, 245, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 14px 28px rgba(0, 168, 245, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 168, 245, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 28, 52, 0.08), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 168, 245, 0.12);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-text {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.trust-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.trust-card span {
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  background: var(--dark);
  color: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-placeholder {
  min-height: 330px;
  background:
    linear-gradient(rgba(0, 28, 52, 0.08), rgba(0, 28, 52, 0.5)),
    url("images/main-header.webp") center/cover;
}

.quote-box {
  padding: 30px;
}

.quote-box h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.quote-box p {
  color: var(--dark-muted);
  margin-bottom: 22px;
}

section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading span {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-top: 10px;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.04);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0, 168, 245, 0.12);
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.split {
  background: var(--surface-alt);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(216, 230, 239, 0.9);
  border-radius: 18px;
  padding: 16px;
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 1px;
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
}

.feature-item p {
  color: var(--muted);
  font-size: 15px;
}

.photo-card {
  min-height: 520px;
  border-radius: 32px;
  background:
    linear-gradient(rgba(0, 28, 52, 0.08), rgba(0, 28, 52, 0.5)),
    url("images/after-01.webp") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #ffffff;
}

.photo-card-inner {
  background: rgba(0, 28, 52, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 24px;
}

.photo-card-inner h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.photo-card-inner p {
  color: var(--dark-muted);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.pill {
  padding: 10px 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}

.process-card::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.process-card p {
  color: var(--muted);
  font-size: 15px;
}

.cta {
  background: var(--dark);
  color: #ffffff;
  padding: 86px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta h2 {
  margin-top: 0;
}

.cta p {
  color: var(--dark-muted);
  max-width: 740px;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-card,
form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.04);
}

.contact-card h3,
form h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-method {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.contact-method strong {
  display: block;
  margin-bottom: 4px;
}

.contact-method span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 168, 245, 0.12);
}

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

.full {
  grid-column: 1 / -1;
}

.form-alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
}

.form-alert.success {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.form-alert.error {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

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

.cf-turnstile {
  margin-top: 4px;
}

footer {
  background: var(--dark);
  color: #ffffff;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--dark-muted);
  font-size: 14px;
}

.footer-inner strong {
  color: #ffffff;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

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

  .cta-card {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .topbar-inner {
    display: grid;
    gap: 4px;
  }

  .nav {
    height: 68px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav .btn {
    display: none;
  }

  .hero {
    padding: 54px 0 48px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .trust-row,
  .services-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .hero-panel,
  .photo-card {
    border-radius: 24px;
  }

  .image-placeholder {
    min-height: 240px;
  }

  section {
    padding: 56px 0;
  }

  .photo-card {
    min-height: 420px;
    padding: 18px;
  }

  .contact-card,
  form {
    padding: 22px;
  }
}
