*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --orange: #e85d04;
  --orange-dark: #c44d00;
  --gold: #f4a261;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(15, 39, 68, 0.12);
  --radius: 8px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

/* ── Top bar ── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 0;
  text-align: center;
}

.top-bar a {
  color: var(--gold);
  font-weight: 700;
}

.top-bar a:hover { text-decoration: underline; }

/* ── Header ── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.main-nav {
  background: var(--navy-light);
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-nav a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 14px;
  display: block;
  transition: background 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--orange);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-call {
  background: var(--orange);
  color: var(--white);
}

.btn-call:hover { background: var(--orange-dark); }

.btn-sms {
  background: var(--navy);
  color: var(--white);
}

.btn-sms:hover { background: var(--navy-light); }

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg { padding: 18px 36px; font-size: 1.125rem; }

.btn-sm { padding: 10px 18px; font-size: 0.875rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a5080 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,93,4,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
  opacity: 0.85;
}

.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.hero-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.hero-card li:last-child { border-bottom: none; }

.hero-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ── Sections ── */
section { padding: 64px 0; }

.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: transform 0.2s;
}

.service-card:hover { transform: translateY(-4px); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card a {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-card a:hover { text-decoration: underline; }

/* ── Why us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 24px 16px;
}

.why-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.why-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.why-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ── CTA band ── */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-band p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

.cta-band .btn-call {
  background: var(--white);
  color: var(--orange);
}

.cta-band .btn-call:hover { background: var(--gray-100); }

.cta-band .btn-sms {
  background: var(--navy);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Areas ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 48px 0;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 640px;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ── Content ── */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-main h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 32px 0 12px;
  font-weight: 800;
}

.content-main h2:first-child { margin-top: 0; }

.content-main p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.content-main ul {
  margin: 0 0 16px 24px;
  color: var(--gray-600);
}

.content-main li { margin-bottom: 8px; }

.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.sidebar-phone {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.sidebar-card .btn { width: 100%; margin-bottom: 10px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.faq-item h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── Mobile sticky bar ── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 10px 12px;
  gap: 8px;
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-bar .mb-call {
  background: var(--orange);
  color: var(--white);
}

.mobile-bar .mb-sms {
  background: var(--navy);
  color: var(--white);
}

/* ── Contact cards ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--orange);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { order: -1; }

  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .header-cta .btn-sms { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: 0;
  }

  .main-nav a { padding: 14px 20px; }

  .mobile-bar {
    display: flex;
  }

  body { padding-bottom: 70px; }

  section { padding: 48px 0; }

  .hero { padding: 48px 0; }
}
