:root {
  --navy: #0d2a52;
  --navy-2: #173b6d;
  --blue: #1f88dc;
  --blue-soft: #eef6ff;
  --text: #142033;
  --muted: #667085;
  --line: #e4e9f0;
  --white: #ffffff;
  --bg: #f7f9fc;
  --radius: 18px;
  --shadow: 0 16px 45px rgba(13, 42, 82, 0.10);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(228,233,240,.8); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 48px; height: 48px; object-fit: cover; border-radius: 999px; border: 2px solid #e7edf7; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-size: 14px; }
.brand-text strong { font-size: 16px; color: var(--navy); }
.brand-text span { color: var(--muted); }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav > a:not(.btn):hover { color: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }
.hero { padding: 88px 0 78px; background: radial-gradient(circle at 82% 15%, rgba(31,136,220,.14), transparent 32%), linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%); }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 56px; }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p, ul { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(44px, 6vw, 68px); line-height: 1.02; letter-spacing: -.05em; color: var(--navy); }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; color: var(--navy); }
h3 { margin-bottom: 10px; font-size: 21px; color: var(--navy); }
.hero-lead { max-width: 680px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; transition: .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 8px 24px rgba(31,136,220,.24); }
.btn-primary:hover { background: #1877c4; }
.btn-secondary { background: white; border-color: var(--line); color: var(--navy); }
.btn-secondary-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); color: white; }
.btn-small { min-height: 42px; padding: 0 16px; }
.btn-full { width: 100%; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: #41506a; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.trust-row span::before { content: "✓"; color: var(--blue); margin-right: 7px; }
.service-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.service-pills span { background: white; border: 1px solid var(--line); color: var(--navy); padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; box-shadow: 0 8px 22px rgba(13,42,82,.05); }
.hero-showcase { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 14px; box-shadow: var(--shadow); }
.hero-showcase-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.hero-badge { background: var(--navy); color: white; border-radius: 999px; padding: 10px 14px; font-size: 13px; font-weight: 800; }
.hero-mini-card { text-align: right; background: var(--blue-soft); color: var(--navy); border-radius: 14px; padding: 10px 14px; }
.hero-mini-card strong { display: block; font-size: 14px; }
.hero-mini-card span { color: var(--muted); font-size: 12px; }
.hero-showcase img { width: 100%; border-radius: 16px; aspect-ratio: 1 / 1; object-fit: cover; }
.section { padding: 88px 0; }
.section-heading { max-width: 860px; margin-bottom: 42px; }
.section-heading p:last-child { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: white; box-shadow: 0 10px 30px rgba(13,42,82,.05); }
.service-image { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 18px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.split-section { padding: 76px 0; background: var(--navy); color: white; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.15); }
.split-grid > div { background: var(--navy); padding: 22px 46px; }
.split-grid h2 { color: white; }
.split-grid p { color: rgba(255,255,255,.78); }
.text-link { font-weight: 800; color: #9fd0ff; }
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-card { margin: 0; background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(13,42,82,.05); }
.gallery-card img { width: 100%; height: 280px; object-fit: cover; }
.gallery-card figcaption { padding: 14px 16px; font-weight: 700; color: var(--navy); }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: start; }
.why-grid > div:first-child > p:last-child { color: var(--muted); font-size: 17px; }
.brand-banner { border: 1px solid var(--line); border-radius: 18px; margin-top: 26px; box-shadow: 0 10px 30px rgba(13,42,82,.05); }
.why-list { display: grid; gap: 12px; }
.why-list > div { border: 1px solid var(--line); border-radius: 14px; padding: 19px 20px; display: flex; flex-direction: column; }
.why-list strong { color: var(--navy); }
.why-list span { color: var(--muted); font-size: 14px; margin-top: 3px; }
.reviews { background: var(--white); }
.review-summary { display: grid; grid-template-columns: 340px 1fr; gap: 22px; align-items: stretch; }
.rating-card, .review-copy { border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 28px; box-shadow: 0 10px 30px rgba(13,42,82,.05); }
.rating-card .btn { margin-top: 18px; width: 100%; }
.stars { font-size: 28px; letter-spacing: 3px; color: #f4b400; margin-bottom: 10px; }
.rating-card strong { display: block; color: var(--navy); font-size: 28px; margin-bottom: 4px; }
.rating-card span, .review-copy p { color: var(--muted); }
.review-points { padding-left: 18px; margin: 14px 0 0; color: var(--muted); }
.review-points li { margin: 8px 0; }
.service-area { padding-top: 0; background: var(--bg); }
.service-area-box { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; border-radius: 24px; padding: 46px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.service-area-box h2 { color: white; margin-bottom: 8px; }
.service-area-box p:last-child { margin-bottom: 0; color: rgba(255,255,255,.78); }
.faq-list { max-width: 900px; display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; background: white; }
summary { cursor: pointer; padding: 20px 0; font-weight: 800; color: var(--navy); }
details p { padding-bottom: 20px; color: var(--muted); margin-bottom: 0; }
.quote { background: linear-gradient(180deg, #f6f9fd 0%, #eef5fc 100%); }
.quote-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 58px; align-items: start; }
.quote-grid > div > p { color: var(--muted); font-size: 17px; }
.contact-details { margin-top: 30px; display: grid; gap: 12px; }
.contact-details a { border: 1px solid var(--line); background: white; padding: 16px 18px; border-radius: 12px; display: flex; flex-direction: column; }
.contact-details span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-details strong { margin-top: 3px; color: var(--navy); overflow-wrap: anywhere; }
.quote-form { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-size: 13px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea { width: 100%; border: 1px solid #cfd7e3; border-radius: 10px; padding: 13px 14px; background: white; color: var(--text); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,127,211,.12); }
textarea { resize: vertical; }
.form-note { margin: 12px 0 0; text-align: center; font-size: 12px; color: var(--muted); }
.site-footer { background: #091d39; color: white; padding: 42px 0 26px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.footer-grid p { margin: 4px 0 0; color: rgba(255,255,255,.65); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.85); }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 20px; color: rgba(255,255,255,.55); font-size: 13px; }
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .hero-grid, .why-grid, .quote-grid, .review-summary { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .trust-row { flex-direction: column; gap: 7px; }
  .service-pills { gap: 8px; }
  .service-grid, .gallery-grid, .split-grid, .field-row { grid-template-columns: 1fr; }
  .gallery-card img { height: 250px; }
  .split-grid > div { padding: 28px 20px; }
  .hero-showcase-top { flex-direction: column; align-items: flex-start; }
  .hero-mini-card { text-align: left; width: 100%; }
  .service-area-box { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .service-area-box .btn { width: 100%; }
  .quote-form { padding: 22px; }
  .footer-grid { flex-direction: column; }
}
