/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2e4a;
  --navy2:  #243d61;
  --orange: #f97316;
  --orange2:#ea6a08;
  --white:  #ffffff;
  --gray50: #f8fafc;
  --gray100:#f1f5f9;
  --gray200:#e2e8f0;
  --gray500:#64748b;
  --gray700:#334155;
  --gray900:#0f172a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray900);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-header {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-header:hover { background: var(--orange2); }

.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.logo-text span { color: var(--orange); }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 0 90px;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

/* ─── Section base ─── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

section h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--gray900);
}

.section-sub {
  font-size: 17px;
  color: var(--gray500);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── Services ─── */
.services {
  padding: 80px 0;
  background: var(--gray50);
}

.services .section-sub { margin-left: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--gray200);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-icon { font-size: 32px; margin-bottom: 14px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card ul { display: flex; flex-direction: column; gap: 6px; }

.service-card li {
  font-size: 14px;
  color: var(--gray700);
  padding-left: 14px;
  position: relative;
}
.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}

.service-price {
  margin-top: 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
}

.services-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray500);
  background: var(--white);
  border: 1px solid var(--gray200);
  padding: 16px 24px;
  border-radius: var(--radius);
}

/* ─── Why Us ─── */
.why-us {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}

.why-us h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}

.why-icon { font-size: 32px; margin-bottom: 14px; }

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p { font-size: 14px; color: rgba(255,255,255,.7); }

/* ─── Areas ─── */
.areas {
  padding: 80px 0;
  background: var(--white);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.area-chip {
  background: var(--gray100);
  border: 1px solid var(--gray200);
  color: var(--gray700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 99px;
  transition: all .2s;
}
.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.areas-note {
  font-size: 14px;
  color: var(--gray500);
}
.areas-note a { color: var(--orange); font-weight: 600; }

/* ─── Reviews ─── */
.reviews {
  padding: 80px 0;
  background: var(--gray50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray200);
}

.stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }

.review-card p {
  font-size: 15px;
  color: var(--gray700);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.reviewer { font-size: 13px; font-weight: 600; color: var(--gray500); }

/* ─── Contact ─── */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left h2 { margin-bottom: 16px; }
.contact-left p { color: var(--gray500); margin-bottom: 32px; }

.contact-options { display: flex; flex-direction: column; gap: 12px; }

.contact-opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  transition: color .2s;
}
.contact-opt:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray900);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
}
.contact-form textarea { resize: vertical; }

/* ─── Footer ─── */
.footer {
  background: var(--gray900);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.logo-sm .logo-mark { width: 30px; height: 30px; font-size: 15px; }
.logo-sm .logo-text { font-size: 15px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  margin-top: 8px;
  max-width: 600px;
  line-height: 1.5;
}

/* ─── Sticky CTA (mobile) ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--gray200);
  padding: 12px 16px;
  gap: 10px;
}

.btn-sticky { flex: 1; justify-content: center; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .hero { padding: 60px 0 70px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
