﻿:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --ink: #0b1a34;
  --muted: #51627f;
  --line: #d9e2ef;
  --primary: #cda03a;
  --primary-dark: #a97c1c;
  --royal: #e3ba58;
  --green: #cda03a;
  --dark: #071126;
  --dark-soft: #14284d;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(16, 26, 58, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

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

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0; color: var(--muted); }

.section { padding: 76px 0; }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
.section-head h2 {
  margin-top: 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 12px;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #7a869f;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: #f1dba8;
  color: #61420a;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
}

.top-strip {
  background: linear-gradient(90deg, #061029, #0d2348);
  color: #f6e8c5;
  border-top: 6px solid #050a17;
}
.top-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  min-height: 42px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.top-strip-grid span { text-align: center; }
.top-strip a { color: #fff; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(8, 12, 31, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 270px;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
}
.brand-logo {
  background: #000;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 18px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-list > li { position: relative; }
.nav-list a,
.dropdown-toggle {
  color: #e5e9f6;
  font-size: 16px;
  font-weight: 700;
}
.dropdown-toggle {
  background: none;
  border: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
}
.caret {
  font-size: 12px;
  opacity: 0.85;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 330px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: none;
  box-shadow: var(--shadow);
}
.has-dropdown.open .dropdown-menu { display: block; }
@media (min-width: 961px) {
  .has-dropdown:hover .dropdown-menu { display: block; }
}
.dropdown-menu a {
  display: block;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 10px;
}
.dropdown-menu a:hover { background: #edf3ff; }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  color: #fff;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--royal));
  color: #fff;
  box-shadow: 0 8px 20px rgba(205, 160, 58, 0.3);
}
.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-dark-outline {
  border-color: #1c274f;
  color: #1c274f;
  background: transparent;
}
.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: brightness(0.43) saturate(0.9);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(3, 7, 20, 0.92) 0%, rgba(8, 18, 44, 0.88) 55%, rgba(10, 24, 56, 0.88) 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.08) 76%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
}
.hero .pill {
  background: rgba(255,255,255,0.13);
  color: #eef3ff;
}
.hero h1 {
  margin-top: 16px;
  font-size: clamp(40px, 5.8vw, 72px);
  letter-spacing: -0.03em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45), 0 14px 30px rgba(0, 0, 0, 0.42);
}
.hero p {
  margin: 16px auto 0;
  max-width: 820px;
  color: #d7dff6;
  font-size: clamp(17px, 1.7vw, 24px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44);
}
.cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.quick-facts {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
}
.fact {
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.fact:last-child { border-right: 0; }
.fact strong {
  display: block;
  font-size: clamp(38px, 4.3vw, 50px);
  line-height: 1;
}
.fact span {
  color: #d5e2ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 13px;
}

.page-hero {
  padding: 92px 0 70px;
  background: linear-gradient(140deg, #091031, #17285f);
  color: #fff;
}
.page-hero p {
  margin-top: 12px;
  max-width: 720px;
  color: #d6e1ff;
}
.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 64px);
}

.grid-2,
.services-grid,
.process-grid,
.testimonials-grid,
.quote-grid,
.content-grid,
.standards-grid,
.area-flex {
  display: grid;
  gap: 22px;
}
.grid-2,
.standards-grid,
.area-flex { grid-template-columns: 1fr 1fr; }
.services-grid,
.process-grid,
.testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-grid { grid-template-columns: 1.5fr 0.9fr; align-items: start; }
.content-grid { grid-template-columns: 1.45fr 0.8fr; align-items: start; }

.frame {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #dfe5f0;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-stat {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.float-stat .dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--royal));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.float-stat strong { font-size: 22px; }
.float-stat span { color: #5f6e92; font-size: 13px; }

.check-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.check-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}
.check-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}
.check-item strong { display: block; }

.service-card,
.process-card,
.t-card,
.side-card,
.contact-panel,
.areas-card,
.price-card,
.faq-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card { overflow: hidden; }
.service-media {
  height: 255px;
  position: relative;
  background: #dbe1ee;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  right: 14px;
  bottom: -18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d5e0fa;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.service-body { padding: 22px; }
.service-body h3 { font-size: 21px; }
.service-body p { margin-top: 8px; }
.service-body a {
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 800;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.process-card,
.t-card { padding: 24px; }
.process-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.process-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #4d7cf2;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.process-card h3 { font-size: 22px; }
.process-card p { margin-top: 8px; }

.stars { color: #f2bc00; font-size: 22px; letter-spacing: 2px; }
.t-card blockquote {
  margin: 12px 0 14px;
  color: #293558;
  font-size: 21px;
}
.t-meta {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e8edf7;
}
.t-name { font-weight: 800; }
.t-role { color: #7a869f; font-size: 13px; }

.blue-band {
  background: linear-gradient(135deg, #3456d7, #446df0);
  color: #fff;
}
.blue-band .section-head h2,
.blue-band .section-head p,
.blue-band h3,
.blue-band p { color: #e9efff; }
.areas-card {
  padding: 26px;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
}
.area-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.area-item {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  font-weight: 700;
}
.areas-note {
  margin-top: 14px;
  color: #d9e6ff;
}
.map-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,0.22);
}
.map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.youtube-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-box { padding: 10px 24px; }
.faq-box details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq-box details:last-child { border-bottom: 0; }
.faq-box summary {
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  list-style: none;
}
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box p { margin-top: 8px; }

.pricing-grid-main,
.pricing-grid-boss {
  display: grid;
  gap: 18px;
}
.pricing-grid-main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid-boss { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.price-card {
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card h4 { font-size: 34px; }
.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-dark);
}
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: #3f4f75;
}
.price-card .btn { margin-top: auto; }
.featured {
  border: 2px solid var(--green);
}
.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0b1a34;
  color: #f7d88a;
  border-radius: 9px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, #091735, #173463);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #e8edff; }

.embed {
  border: 2px dashed #d7deeb;
  border-radius: 18px;
  min-height: 680px;
  overflow: hidden;
  background: #f8faff;
}
.embed iframe { width: 100%; height: 100%; min-height: 680px; border: 0; }
.contact-panel {
  padding: 24px;
}
.contact-panel h3 { font-size: 22px; }
.contact-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.contact-list strong { display: block; font-size: 13px; color: #7d88a2; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-list span,
.contact-list a { font-size: 22px; color: #223057; font-weight: 700; }

.quote-photo-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.photo-gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.photo-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.photo-gallery figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #51627f;
  font-weight: 600;
}

.footer {
  background: #131938;
  color: #c8d0e6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 24px;
  padding: 72px 0 26px;
}
.footer h3 {
  margin-bottom: 10px;
  color: #edf2ff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer p,
.footer a { color: #cad5f3; }
.footer a:hover { color: #fff; }
.footer .brand { min-width: auto; font-size: 24px; margin-bottom: 10px; }
.copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: block;
  text-align: center;
  padding: 16px 0 22px;
  color: #93a4cd;
}

.service-hero {
  padding: 88px 0 70px;
  background: linear-gradient(140deg, #06112a, #193b69);
  color: #fff;
}
.service-hero .pill { background: rgba(255, 224, 156, 0.2); color: #ffe4a8; }
.service-hero h1 { margin-top: 12px; font-size: clamp(36px, 5vw, 58px); }
.service-hero p { margin-top: 12px; max-width: 760px; color: #d6e2ff; }

.page-content { padding: 74px 0; }
.side-card { padding: 22px; }
.side-card + .side-card { margin-top: 14px; }
.side-card h3 { margin-bottom: 8px; }
.side-card p { margin-top: 8px; }

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

@media (max-width: 1100px) {
  .nav-wrap { min-height: 74px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #0d1433;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-panel.open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
  }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .top-strip-grid { grid-template-columns: 1fr; text-align: center; padding: 10px 0; }

  .grid-2,
  .standards-grid,
  .area-flex,
  .quote-grid,
  .content-grid,
  .pricing-grid-main,
  .pricing-grid-boss,
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .photo-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 78vh; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .quick-facts { grid-template-columns: 1fr; gap: 14px; }
  .fact { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 14px; }
  .fact:last-child { border-bottom: 0; padding-bottom: 0; }
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .photo-gallery { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .section-head h2 { font-size: clamp(30px, 8vw, 40px); }
  .section-head p,
  .service-body p,
  .process-card p,
  .t-card blockquote { font-size: 17px; }
  .service-body h3,
  .process-card h3,
  .contact-panel h3,
  .price-card h4 { font-size: 27px; }
  .contact-list span,
  .contact-list a,
  .t-name,
  .t-role,
  .price,
  .faq-box summary,
  .footer .brand,
  .brand { font-size: 19px; }
}



