:root {
  --navy: #071426;
  --navy-2: #0d223b;
  --gold: #c7a24a;
  --gold-2: #f1d37a;
  --text: #172033;
  --muted: #657085;
  --soft: #f4f6f9;
  --white: #ffffff;
  --border: rgba(7, 20, 38, 0.12);
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7, 20, 38, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(199,162,74,0.3);
}
.brand strong { display:block; font-size: 18px; line-height:1; letter-spacing: .2px; }
.brand small { display:block; font-size: 11px; color: rgba(255,255,255,.72); margin-top: 4px; }
.nav-links { display:flex; align-items:center; gap: 28px; color: rgba(255,255,255,.84); font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  padding: 11px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
.menu-btn { display:none; background:none; color:var(--white); border:0; font-size:28px; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,20,38,.94) 0%, rgba(7,20,38,.84) 45%, rgba(7,20,38,.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(199,162,74,.35), transparent 25%),
    url('https://images.unsplash.com/photo-1560253023-3ec5d502959f?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  padding: 130px 0 70px;
}
.hero-grid { display:grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items:center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow.dark { color: var(--gold); }
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -2.7px;
  max-width: 820px;
}
.hero p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 660px; margin: 26px 0 0; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 14px; margin-top: 34px; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 18px 36px rgba(199,162,74,.24); }
.btn-outline { border-color: rgba(255,255,255,.28); color: var(--white); background: rgba(255,255,255,.06); }
.trust-row { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; max-width: 720px; }
.trust-row div { padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.trust-row strong { display:block; font-size: 14px; }
.trust-row span { display:block; color: rgba(255,255,255,.68); font-size: 12px; margin-top: 3px; }
.hero-card {
  background: rgba(255,255,255,.93);
  color: var(--text);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.55);
}
.hero-card h2 { margin:0 0 8px; font-size: 26px; color: var(--navy); }
.hero-card p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.hero-card ul { padding:0; margin:0 0 24px; list-style:none; display:grid; gap:10px; }
.hero-card li { padding: 11px 12px; background: var(--soft); border-radius: 12px; font-weight: 700; font-size: 14px; }
.hero-card a { display:block; text-align:center; background: var(--navy); color: var(--white); padding: 14px 18px; border-radius: 999px; font-weight:800; }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section h2 { color: var(--navy); margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -1.5px; }
.section-heading p, .about-content p, .why-list p, .contact p { color: var(--muted); font-size: 16px; }
.service-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(7,20,38,.06);
}
.service-card span { color: var(--gold); font-weight:900; font-size:13px; }
.service-card h3 { color: var(--navy); margin: 14px 0 8px; font-size: 21px; }
.service-card p { margin:0; color: var(--muted); }

.about { background: var(--soft); }
.about-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items:center; }
.about-image-card {
  min-height: 520px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,20,38,.05), rgba(7,20,38,.5)),
    url('https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?auto=format&fit=crop&w=1200&q=80') center/cover;
  box-shadow: var(--shadow);
}
.stat-card {
  position:absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  background: rgba(255,255,255,.94);
  border-radius: 22px;
  padding: 24px;
}
.stat-card strong { display:block; color: var(--navy); font-size: 28px; }
.stat-card span { color: var(--muted); font-weight: 700; }
.about-content p { margin: 20px 0 0; }
.mini-list { display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.mini-list span { padding: 13px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; font-weight: 800; color: var(--navy); }

.why-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.why-list { display:grid; gap: 18px; }
.why-list div { padding: 26px; border-left: 5px solid var(--gold); background: var(--soft); border-radius: 18px; }
.why-list h3 { margin:0 0 6px; color: var(--navy); }
.why-list p { margin:0; }

.cta-section { padding: 30px 0; background: var(--navy); }
.cta-box {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  padding: 46px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 10%, rgba(199,162,74,.35), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--white);
  border: 1px solid rgba(255,255,255,.09);
}
.cta-box h2 { margin:0; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; }
.cta-box p { color: rgba(255,255,255,.72); max-width: 650px; }

.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items:start; }
.contact-details { margin-top: 26px; padding: 24px; background: var(--soft); border-radius: 22px; }
.contact-details p { margin: 0 0 14px; }
.contact-details a { color: var(--navy); font-weight: 900; }
.quote-form {
  padding: 32px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.quote-form h3 { color: var(--white); margin:0 0 18px; font-size: 25px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width:100%;
  border: 1px solid rgba(255,255,255,.13);
  outline: none;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 15px 16px;
  border-radius: 14px;
  margin-bottom: 13px;
  font: inherit;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.58); }
.quote-form select { color: rgba(255,255,255,.75); }
.quote-form select option { color: var(--text); }
.quote-form button { width: 100%; margin-top: 4px; }

.footer { background: #040c17; color: var(--white); padding: 58px 0 22px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 30px; }
.footer p { color: rgba(255,255,255,.62); max-width: 430px; }
.footer h4 { color: var(--gold-2); margin: 0 0 12px; }
.footer a { display:block; color: rgba(255,255,255,.72); margin-bottom: 9px; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display:flex; justify-content:space-between; color: rgba(255,255,255,.55); font-size: 14px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display:none; }
  .menu-btn { display:block; }
  .nav-links.open {
    display:flex;
    position:absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    flex-direction:column;
    align-items:flex-start;
    background: var(--navy);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .hero-grid, .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .trust-row, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items:flex-start; padding: 32px; }
  .mini-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction:column; gap: 8px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, 1120px); }
  .hero { padding-top: 118px; }
  .hero h1 { letter-spacing: -1.6px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 72px 0; }
  .service-card, .quote-form, .hero-card { padding: 24px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}


.brand strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: #d6d6d6;
  font-size: 0.95rem;
  margin-top: 2px;
}

.brand-logo {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
}
