/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy: #0a1f44;
  --navy-dark: #061228;
  --navy-light: #1a3a6e;
  --red: #c0392b;
  --red-light: #e74c3c;
  --gold: #f0a500;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef1f7;
  --text: #1a1a2e;
  --text-light: #555577;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow: 0 4px 24px rgba(10,31,68,0.12);
  --shadow-lg: 0 8px 48px rgba(10,31,68,0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--off-white); }
.section-red { background: var(--red); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
p { font-size: 1.05rem; line-height: 1.75; }
.section-label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin-bottom: 48px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,57,43,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-phone { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-size: 1.2rem; }
.btn-phone:hover { background: #e09400; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,165,0,0.4); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header { background: var(--navy-dark); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--red); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; line-height: 1; }
.logo-sub { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.main-nav a:hover { color: var(--gold); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 10px 20px; border-radius: var(--radius); }
.nav-cta:hover { background: var(--red-light) !important; color: var(--white) !important; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0d2a5e 100%); color: var(--white); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent, rgba(192,57,43,0.08)); pointer-events: none; }
.hero-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,0.2); border: 1px solid rgba(192,57,43,0.4); padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-badge span { font-family: var(--font-heading); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #ff8080; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item .icon { font-size: 1.3rem; }
.trust-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-family: var(--font-heading); letter-spacing: 0.04em; }

/* ── CARDS ─────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(10,31,68,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 12px; color: var(--navy); }
.card p { color: var(--text-light); font-size: 0.98rem; }
.card-accent { border-top: 4px solid var(--red); }
.card-dark { background: var(--navy); color: var(--white); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.75); }

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(10,31,68,0.08); }
.service-card-header { background: var(--navy); padding: 24px 28px; }
.service-card-header h3 { color: var(--white); font-size: 1.3rem; }
.service-card-header .tag { display: inline-block; background: var(--red); color: var(--white); font-size: 0.7rem; font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.service-card-body { padding: 24px 28px; }
.service-card-body p { color: var(--text-light); margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.service-list li::before { content: '✓'; color: var(--red); font-weight: 700; }

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar { background: var(--red); padding: 32px 0; }
.stats-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; color: var(--white); }
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; line-height: 1; display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-heading); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.1rem; }
.cta-phone { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 8px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--light-gray); padding: 20px 0; }
.faq-question { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { color: var(--text-light); margin-top: 12px; font-size: 0.98rem; line-height: 1.75; }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 64px 0 48px; border-bottom: 4px solid var(--red); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-family: var(--font-heading); letter-spacing: 0.06em; }
.breadcrumb a { color: var(--gold); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 1.6rem; width: 48px; height: 48px; background: var(--light-gray); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text h4 { color: var(--navy); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { color: var(--text-light); font-size: 1rem; }
.contact-item-text a:hover { color: var(--red); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--light-gray); border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; color: var(--text); transition: border-color 0.2s; background: var(--off-white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.footer-logo span { font-size: 0.65rem; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; display: block; }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col h4 { color: var(--gold); margin-bottom: 16px; font-size: 0.8rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li, .footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-cta { display: inline-block; margin-top: 16px; background: var(--red); color: var(--white); padding: 10px 24px; border-radius: var(--radius); font-family: var(--font-heading); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-cta:hover { background: var(--red-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── UTILITIES ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.highlight-box { background: var(--light-gray); border-left: 4px solid var(--red); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }
.badge { display: inline-block; background: var(--red); color: var(--white); font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.badge-navy { background: var(--navy); }
.badge-gold { background: var(--gold); color: var(--navy-dark); }
.divider { height: 3px; background: linear-gradient(to right, var(--red), var(--navy)); border: none; margin: 48px 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 20px; gap: 16px; border-top: 2px solid var(--red); }
  .main-nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .site-header { position: relative; }
  .stats-inner { gap: 32px; }
  .hero { padding: 60px 0 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .section { padding: 56px 0; }
}
