:root {
  --bg: #0a0f1a;
  --panel: #101826;
  --panel-2: #172131;
  --text: #e8edf7;
  --muted: #b4bfd3;
  --white: #ffffff;
  --accent: #f6b01e;
  --accent-2: #ff4b3a;
  --line: rgba(255,255,255,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.28);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  color: #131a28;
  background: #f3f5f8;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-dark { background: linear-gradient(180deg, #0b1220, #121d2e); color: var(--text); }
.section-light-alt { background: #eef2f7; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-2);
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading.align-left { text-align: left; margin-left: 0; }
.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.section-heading p { margin: 0; color: #556073; font-size: 1.08rem; }
.section-heading.light p { color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,15,26,.86);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo {
  width: 62px; height: 62px; object-fit: cover; border-radius: 18px; border: 1px solid rgba(255,255,255,.12);
}
.brand-text { display: flex; flex-direction: column; color: var(--white); }
.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: #afbdd3; }
.site-nav { display: flex; align-items: center; gap: 22px; color: #e1e8f7; }
.site-nav a { font-weight: 600; }
.site-nav a:hover { color: var(--accent); }
.header-actions { display: flex; gap: 10px; }
.menu-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.16); color: var(--white);
  border-radius: 12px; padding: 10px 14px; font-weight: 700;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 22px; font-weight: 800; transition: .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 16px; font-size: .95rem; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #ffd154); color: #10151f; box-shadow: 0 14px 28px rgba(246,176,30,.28); }
.btn-secondary { background: #182234; color: var(--white); border-color: rgba(255,255,255,.08); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.18); }
.light-btn { background: rgba(255,255,255,.12); }
.full-width { width: 100%; }
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b1220, #151f31 48%, #0f1624);
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(255,75,58,.2), transparent 35%),
              radial-gradient(circle at bottom right, rgba(246,176,30,.2), transparent 32%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: center;
  padding: 72px 0 64px;
}
.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: .98;
  max-width: 760px;
}
.hero-text { color: #cfdaea; font-size: 1.12rem; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 18px; }
.hero-points {
  list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-points li, .hero-badges span, .tag-list span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 14px; border-radius: 999px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; color: #e9edf7; }
.hero-media { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.quick-contact { background: #0f1726; color: var(--white); padding: 0 0 34px; }
.quick-contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; transform: translateY(-28px);
}
.quick-card {
  background: linear-gradient(180deg, #182338, #101927);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 22px; box-shadow: var(--shadow);
}
.quick-title { display:block; color: #9fb0ca; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; margin-bottom: 8px; }
.quick-card strong { display:block; font-size: 1.25rem; margin-bottom: 6px; }
.quick-card small { color: #c9d3e2; }
.service-grid, .faq-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.service-card, .faq-card {
  background: var(--white); border-radius: 20px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,38,.08);
}
.service-card h3, .faq-card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.3rem; }
.service-card p, .faq-card p { margin: 0; color: #576378; font-size: 1.03rem; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.process-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px;
}
.process-card span {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffd154); color: #121826; font-weight: 800; margin-bottom: 14px;
}
.process-card h3 { margin: 0 0 10px; }
.process-card p { margin: 0; color: var(--muted); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.gallery-card {
  background: var(--white); border-radius: 22px; overflow: hidden; box-shadow: 0 10px 30px rgba(15,23,38,.10);
}
.gallery-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery-card.featured { grid-column: span 2; }
.gallery-card.featured img { aspect-ratio: 2 / 1; }
.gallery-card figcaption { padding: 14px 16px 18px; font-weight: 700; }
.review-widget-wrap { padding: 22px; background: var(--white); }
.area-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: start;
}
.area-card {
  background: linear-gradient(180deg, #121c2c, #1a2638); color: var(--white);
  border-radius: 24px; padding: 28px; box-shadow: var(--shadow);
}
.tag-list { display:flex; flex-wrap:wrap; gap:10px; margin-top: 18px; }
.cta-band {
  background: linear-gradient(135deg, #0f1726, #172338 60%, #192742);
  color: var(--white);
}
.cta-band-inner {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p:last-child { margin: 0; color: #cfd8e8; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr .95fr; gap: 22px; align-items: start;
}
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  background: var(--white); border-radius: 20px; padding: 18px 20px; box-shadow: 0 10px 30px rgba(15,23,38,.08);
}
.contact-card span { display:block; color:#657288; text-transform: uppercase; letter-spacing:.12em; font-size:.78rem; margin-bottom:8px; }
.contact-card strong { font-size: 1.15rem; }
.quote-form {
  background: var(--white); border-radius: 24px; padding: 26px; box-shadow: var(--shadow);
}
.quote-form h3 { margin-top: 0; font-size: 1.5rem; }
.quote-form label { display: block; font-weight: 700; margin-bottom: 14px; }
.quote-form input, .quote-form textarea {
  width: 100%; margin-top: 8px; border: 1px solid #d5dbe5; border-radius: 14px; padding: 14px 16px;
  font: inherit; resize: vertical;
}
.form-note { color:#617085; font-size:.95rem; margin: 14px 0 0; }
.site-footer {
  background: #0b1220; color: var(--white); padding: 28px 0; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-wrap { display:flex; justify-content:space-between; gap: 18px; align-items:center; }
.footer-links { display:flex; gap: 18px; flex-wrap:wrap; }
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; top: 84px; left: 16px; right: 16px;
    background: #0f1726; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 16px;
    flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .header-actions { margin-left: auto; }
  .hero-grid, .area-grid, .contact-grid, .cta-band-inner { grid-template-columns: 1fr; display:grid; }
  .quick-contact-grid, .service-grid, .process-grid, .faq-grid, .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand-text small { display:none; }
  .header-actions { display:none; }
  .quick-contact-grid, .service-grid, .process-grid, .faq-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
  .gallery-card.featured img { aspect-ratio: 1 / 1; }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 74px; }
  .site-nav { top: 74px; }
  .hero-grid { padding: 56px 0 54px; }
  .hero-actions, .hero-points, .hero-badges, .cta-band-actions { flex-direction: column; align-items: stretch; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
