:root {
  --accent: #0F6CBD;
  --accent-dark: #0A4E8C;
  --ink: #1A202C;
  --ink-soft: #4A5568;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --border: #E2E8F0;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 10px 30px rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 600; line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: 18px; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 22px; height: 22px; flex-shrink: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand-mark { display: flex; flex-direction: column; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.1; }
.brand-mark-sub { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--accent); }
.header-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { border-color: var(--accent); color: var(--accent); background: #fff; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* Hero */
.hero { background: linear-gradient(160deg, #0B1220 0%, #10233B 55%, var(--accent-dark) 100%); color: #fff; padding: 64px 0; }
.hero-sm { padding: 44px 0; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.hero h1 { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.hero-sub { color: #E7EDF5; font-size: 17px; max-width: 560px; text-shadow: 0 1px 6px rgba(0,0,0,.55); }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent); background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.hero .kicker svg { width: 16px; height: 16px; }
.hero-actions { display: flex; gap: 14px; margin: 22px 0; flex-wrap: wrap; }
.trust-row { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 22px; flex-wrap: wrap; }
.trust-row li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #CBD5E1; }
.trust-row svg { width: 18px; height: 18px; color: #34D399; }

.hero-media { display: flex; flex-direction: column; gap: 18px; }
.hero-photo-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 45px -10px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.14); aspect-ratio: 16 / 9; }
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-sm .hero-photo-card { aspect-ratio: 4 / 3; }
.lead-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-hover); }
.lead-card h2 { font-size: 20px; margin-bottom: 16px; }
.lead-form .form-row { margin-bottom: 14px; }
.lead-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 12px; color: var(--ink-soft); margin: 10px 0 0; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.sec-head .kicker { background: rgba(15,108,189,0.08); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(15,108,189,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--ink); }
.card-link { font-size: 14px; font-weight: 600; color: var(--accent); }
.service-card-sm { text-align: center; }
.service-card-sm .card-icon { margin: 0 auto 12px; }

.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .card-thumb { position: relative; aspect-ratio: 4 / 3; background: var(--bg-alt); overflow: hidden; }
.service-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.service-card:hover .card-thumb img { transform: scale(1.06); }
.service-card .card-thumb .card-icon { position: absolute; left: 18px; bottom: -20px; margin-bottom: 0; background: #fff; box-shadow: var(--shadow-hover); }
.service-card .card-body { padding: 32px 22px 22px; }

.feature { text-align: center; }
.feature svg { width: 34px; height: 34px; color: var(--accent); margin-bottom: 14px; }
.feature h3 { color: var(--ink); }

.step { text-align: center; padding: 10px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

.issue-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 10px; }
.issue-item svg { color: var(--accent); width: 18px; height: 18px; margin-top: 2px; }
.issue-item span { color: var(--ink); font-weight: 500; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; font-size: 20px; color: var(--accent); }
.faq[open] summary::after { content: '\2212'; }
.faq p { margin-top: 10px; }

.breadcrumbs { padding: 16px 20px; font-size: 13px; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 500; }

.legal-content h2 { margin-top: 1.5em; }
.legal-content ul { color: var(--ink-soft); }

/* Footer */
.site-footer { background: #0B1220; color: #CBD5E1; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.brand-mark-footer { color: #fff; font-size: 18px; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #CBD5E1; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-links svg { width: 16px; height: 16px; }
.site-footer .muted { font-size: 13px; color: #94A3B8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding-top: 20px; font-size: 13px; color: #94A3B8; }

/* Sticky mobile CTA */
.sticky-cta { display: none; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 16px; }
  .main-nav.nav-open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta .btn span { display: none; }
  .header-cta .btn { padding: 10px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; bottom: 0; z-index: 60; width: 50%; padding: 14px 0;
    font-weight: 700; font-size: 14px; color: #fff;
  }
  .sticky-call { left: 0; background: var(--accent); }
  .sticky-wa { right: 0; background: #128C7E; }
  body { padding-bottom: 54px; }
}

@media (prefers-color-scheme: dark) {
  :root { --bg: #0B1220; --bg-alt: #101A2C; --ink: #F1F5F9; --ink-soft: #94A3B8; --border: #1E293B; }
  .site-header { background: rgba(11,18,32,0.94); }
  .lead-card { background: #101A2C; }
  .card, .issue-item, .faq { background: #101A2C; }
}
