/* ---------- Base ---------- */
:root {
  --navy: #0a2540;
  --navy-deep: #071a30;
  --navy-ink: #0e2f50;
  --water: #1e9be0;
  --cyan: #29c6f7;
  --foam: #eaf6fd;
  --white: #ffffff;
  --slate: #44586e;
  --line: #d8e6f2;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--navy-ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand span, .step-n, .footer-brand {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

section { padding: 84px 26px; max-width: 1120px; margin: 0 auto; scroll-margin-top: 70px; }

.kicker {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--water);
  margin-bottom: 12px;
}
.sec-head { max-width: 640px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}
.btn-solid { background: var(--water); color: #fff; }
.btn-solid:hover { background: #1786c4; }
.btn-solid:active { transform: translateY(1px); }
.btn-ghost { border-color: var(--line); color: var(--navy); }
.btn-ghost:hover { border-color: var(--water); color: var(--water); }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #bcd9ef;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 26px;
  flex-wrap: wrap;
}
.topbar a { color: var(--cyan); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 26px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; }
.brand-mark rect { fill: var(--navy); }
.brand-mark .drop { fill: var(--cyan); }
.brand span { font-size: 1.42rem; color: var(--navy); }
.brand em { font-style: normal; color: var(--water); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 600; font-size: 0.97rem; color: var(--slate); }
.nav a:not(.nav-cta):hover { color: var(--water); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 9px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--navy-ink); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}
.hero h1 {
  font-size: clamp(2.9rem, 6.5vw, 4.9rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--water); display: inline-block; }
.hero-sub { font-size: 1.13rem; color: var(--slate); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-row { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row li {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-ink);
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.trust-row--dark li { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #d7ecfa; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 18px;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.22);
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: var(--navy);
  color: #cfe9fa;
  border-radius: 14px;
  padding: 14px 18px;
  max-width: 210px;
  box-shadow: 0 14px 34px rgba(7, 26, 48, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-badge span { font-size: 0.86rem; line-height: 1.35; }

/* ---------- Services ---------- */
.services { padding-top: 40px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--white);
  transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: #bcdcf2;
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
}
.svc-card svg {
  width: 40px; height: 40px;
  fill: none;
  stroke: var(--water);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 14px;
}
.svc-card h3 { font-size: 1.32rem; margin-bottom: 8px; color: var(--navy); }
.svc-card p { font-size: 0.97rem; color: var(--slate); }

/* ---------- Work ---------- */
.work {
  max-width: none;
  background: var(--navy);
  color: #e8f4fc;
}
.work > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.sec-head--light h2 { color: #fff; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-grid figure { border-radius: var(--radius); overflow: hidden; background: var(--navy-deep); }
.work-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.25s ease;
}
.work-grid figure:hover img { transform: scale(1.03); }
.work-grid figcaption { padding: 14px 16px; font-size: 0.92rem; color: #b9d7ec; }
.work-grid figcaption strong { color: #fff; font-weight: 600; }

/* ---------- Process ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  counter-reset: step;
}
.steps li { position: relative; padding-top: 8px; }
.step-n {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--foam);
  border: 1px solid var(--line);
  color: var(--water);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.steps h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.steps p { color: var(--slate); font-size: 0.99rem; }

/* ---------- Why / reviews ---------- */
.why { max-width: none; background: var(--foam); }
.why-inner { max-width: 1120px; margin: 0 auto; }
.why h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--navy); max-width: 620px; margin-bottom: 34px; }
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  margin-bottom: 52px;
}
.why-list li {
  padding-left: 30px;
  position: relative;
  color: var(--slate);
  font-size: 1.02rem;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--water);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 2%, 40% 68%);
}
.why-list strong { color: var(--navy); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.reviews p { font-size: 0.99rem; color: var(--navy-ink); margin-bottom: 14px; }
.reviews cite { font-style: normal; font-size: 0.88rem; font-weight: 600; color: var(--slate); }

/* ---------- Areas ---------- */
.areas-sub { color: var(--slate); margin-top: 10px; }
.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list li {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-ink);
}

/* ---------- Quote ---------- */
.quote { max-width: none; background: var(--navy); color: #dbeefb; }
.quote-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote-info h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.quote-info p { font-size: 1.08rem; margin-bottom: 24px; max-width: 460px; }
.quote-info a { color: var(--cyan); font-weight: 700; }
.quote-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 30px 32px;
  box-shadow: 0 24px 60px rgba(7, 26, 48, 0.35);
}
.quote-card label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.quote-card input,
.quote-card textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font: inherit;
  font-weight: 400;
  color: var(--navy-ink);
  background: #fbfdff;
}
.quote-card input:focus,
.quote-card textarea:focus { outline: none; border-color: var(--water); }
.quote-card textarea { resize: vertical; }
.sent-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--foam);
  color: var(--navy);
  border-radius: 9px;
  font-size: 0.92rem;
}
.sent-msg em { color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #9dbdd6; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 26px;
  display: grid;
  gap: 8px;
}
.footer-brand { font-size: 1.5rem; color: #fff; }
.footer-brand em { font-style: normal; color: var(--cyan); }
.footer-inner p { font-size: 0.94rem; }
.footer-demo a { color: var(--cyan); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero-media img { aspect-ratio: 4 / 3; }
  .hero-badge { left: 14px; }
  .svc-grid, .work-grid, .steps, .reviews { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav a:not(.nav-cta) { display: none; }
  .svc-grid, .work-grid, .steps, .reviews { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .topbar p { display: none; }
  .topbar { justify-content: center; }
}
