@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Open+Sans:wght@400;700&display=swap');

/* ─── Design tokens ─────────────────────────────────── */
:root {
  --ink:        #112337;
  --muted:      #4a5568;
  --primary:    #204ce5;
  --primary-dk: #183fbd;
  --accent:     #f39c12;
  --canvas:     #f4f7f6;
  --surface:    #ffffff;
  --tint:       #e8f0fb;
  --radius:     4px;
  --measure:    62ch;
  --space:      clamp(22px, 5vw, 80px);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { padding: 0; list-style: none; }

/* ─── Header ─────────────────────────────────────────── */
.a-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  padding: 0 var(--space);
  background: var(--surface);
  border-bottom: 1px solid #dde3ea;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.a-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
}
.a-logo span { color: var(--ink); }
.a-nav {
  display: flex; align-items: center; gap: 30px;
  font-size: 14px; font-weight: 600;
}
.a-nav a:hover { color: var(--primary); }
.a-header-phones {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px; font-size: 13px; font-weight: 700;
}
.a-header-phones a { color: var(--primary); }
.a-header-phones a:hover { color: var(--primary-dk); }
.a-btn-sm {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  transition: filter .15s;
}
.a-btn-sm:hover { filter: brightness(1.08); }

/* ─── Hero ───────────────────────────────────────────── */
.a-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--ink);
  color: #fff;
}
.a-hero-copy {
  padding: clamp(60px, 9vw, 120px) var(--space);
  align-self: center;
}
.a-hero-copy h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.025em;
  max-width: 600px;
  margin-bottom: 28px;
}
.a-hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}
.a-hero-copy p {
  max-width: var(--measure);
  color: #b0bec5;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.a-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.a-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  background: var(--primary);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff;
  transition: background .15s;
}
.a-btn:hover { background: var(--primary-dk); }
.a-btn-accent {
  background: var(--accent); color: var(--ink);
}
.a-btn-accent:hover { filter: brightness(1.08); background: var(--accent); }
.a-btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.a-btn-ghost:hover { border-color: #fff; }
.a-hero-img {
  background: #1d2f45;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.a-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}

/* ─── Trust strip ────────────────────────────────────── */
.a-trust {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 12px;
  padding: 18px var(--space);
  background: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  text-align: center;
}

/* ─── Section shell ──────────────────────────────────── */
.a-section {
  padding: clamp(64px, 8vw, 120px) var(--space);
}
.a-section-head { margin-bottom: 44px; }
.a-section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.a-section-head p {
  max-width: var(--measure);
  color: var(--muted);
  font-size: 17px;
}

/* ─── Service cards ──────────────────────────────────── */
.a-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  border: 1px solid #dde3ea;
  border-radius: var(--radius);
  overflow: hidden;
}
.a-service-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid #dde3ea;
  transition: background .15s;
}
.a-service-card:hover { background: var(--tint); }
.a-service-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.a-service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.a-service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.a-link {
  font-size: 14px; font-weight: 700; color: var(--primary);
}
.a-link:hover { color: var(--primary-dk); }

/* ─── Before/After proof grid ────────────────────────── */
.a-before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.a-ba-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #dde3ea;
}
.a-ba-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.a-ba-caption {
  padding: 16px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
}

/* ─── Differentiators ───────────────────────────────── */
.a-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.a-why-icon {
  font-size: 32px; margin-bottom: 12px;
}
.a-why-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.a-why-item p {
  color: var(--muted); font-size: 15px; line-height: 1.65;
}

/* ─── Service area ───────────────────────────────────── */
.a-areas {
  background: var(--tint);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 80px) var(--space);
  text-align: center;
}
.a-areas h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800; margin-bottom: 16px;
}
.a-areas p { color: var(--muted); margin-bottom: 28px; }
.a-area-pills {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.a-pill {
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid #c8d5e8;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--primary);
}

/* ─── Guarantee banner ───────────────────────────────── */
.a-guarantee {
  background: var(--ink); color: #fff;
  padding: clamp(50px, 7vw, 100px) var(--space);
  text-align: center;
}
.a-guarantee h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 20px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.a-guarantee p {
  max-width: 540px; margin: 0 auto 36px;
  color: #90a4ae; font-size: 17px;
}
.a-guarantee-flags {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--accent);
  margin-bottom: 36px;
}
.a-guarantee-flags span::before { content: "✓ "; }

/* ─── Partners ───────────────────────────────────────── */
.a-partners {
  padding: clamp(40px, 5vw, 72px) var(--space);
  text-align: center;
}
.a-partners p {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.a-partner-logos {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center;
}
.a-partner-logos img {
  height: 44px; width: auto; opacity: .65;
  filter: grayscale(1);
  transition: opacity .2s;
}
.a-partner-logos img:hover { opacity: 1; filter: none; }

/* ─── CTA / enquire ─────────────────────────────────── */
.a-cta {
  background: var(--primary);
  color: #fff;
  padding: clamp(60px, 8vw, 110px) var(--space);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.a-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800; line-height: 1.02;
  max-width: 620px;
}
.a-cta p { color: rgba(255,255,255,.75); margin-top: 16px; font-size: 17px; }
.a-cta-contact {
  display: flex; flex-direction: column; gap: 16px; min-width: 220px; align-items: flex-start;
}
.a-cta-contact a.phone-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--accent);
  line-height: 1;
}
.a-cta-contact a.phone-link:hover { color: #fff; }

/* ─── Form ──────────────────────────────────────────── */
.a-form {
  display: grid; gap: 16px;
  max-width: 480px;
}
.a-form input, .a-form select, .a-form textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  color: #fff; font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}
.a-form input::placeholder, .a-form textarea::placeholder { color: rgba(255,255,255,.5); }
.a-form textarea { min-height: 100px; resize: vertical; }

/* ─── Footer ─────────────────────────────────────────── */
.a-footer {
  background: #0d1c2b;
  color: #7d99b0;
  padding: 36px var(--space);
  font-size: 13px;
}
.a-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1e3049;
  margin-bottom: 28px;
}
.a-footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.a-footer-brand span { color: #fff; }
.a-footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: 14px;
}
.a-footer a { display: block; margin-bottom: 8px; color: #7d99b0; }
.a-footer a:hover { color: #fff; }
.a-footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: #c5d8e8;
}
.a-footer-contact a:hover { color: #fff; }
.a-footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.a-footer-bottom a { color: #7d99b0; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .a-nav, .a-header-phones { display: none; }
  .a-hero { grid-template-columns: 1fr; }
  .a-hero-img { min-height: 260px; }
  .a-cta { grid-template-columns: 1fr; }
  .a-footer-top { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .a-hero-copy h1 { font-size: 42px; }
  .a-hero-actions { flex-direction: column; align-items: flex-start; }
}
