:root {
  --navy: #071427;
  --navy-2: #0d213b;
  --yellow: #ffc400;
  --yellow-dark: #e5aa00;
  --red: #c42026;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5f6878;
  --line: #dfe4ea;
  --surface: #f5f7fa;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(7, 20, 39, .10);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-dark { color: var(--white); background: var(--navy); }
.section-muted { background: var(--surface); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 14px; background: var(--yellow); color: var(--navy); font-weight: 800;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 20, 39, .96);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: block; width: 218px; flex: 0 0 auto; overflow: hidden; }
.brand img { width: 100%; height: 72px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: rgba(255,255,255,.86); text-decoration: none; font-weight: 700; font-size: .94rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--yellow); }
.main-nav .nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--yellow); color: var(--navy); }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: var(--navy); background: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 8px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 2px; }

.hero { padding: 82px 0 88px; overflow: hidden; position: relative; }
.hero::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -260px;
  border-radius: 50%; background: rgba(255,196,0,.10); filter: blur(10px); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 72px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.section-dark .eyebrow, .contact-section .eyebrow { color: var(--yellow); }
h1, h2, h3 { margin-top: 0; line-height: 1.13; letter-spacing: 0; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: 4.85rem; }
h2 { margin-bottom: 16px; font-size: 3.25rem; }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
.hero-text { max-width: 680px; margin: 0 0 30px; color: rgba(255,255,255,.76); font-size: 1.18rem; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border: 2px solid transparent; border-radius: 10px;
  font-weight: 900; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--yellow); box-shadow: 0 10px 24px rgba(255,196,0,.17); }
.button-primary:hover { background: #ffd028; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.30); background: transparent; }
.button-secondary:hover { border-color: var(--white); }
.button-dark { color: var(--white); background: var(--navy); }
.button-full { width: 100%; border: 0; }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 28px 0 0; padding: 0; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 700; }
.trust-list li::before { content: "✓"; color: var(--yellow); margin-right: 7px; font-weight: 900; }

.hero-card { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.07); box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.hero-card-label { display: inline-block; margin-bottom: 20px; color: var(--navy); background: var(--yellow); padding: 5px 9px; border-radius: 5px; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.hero-card h2 { font-size: 2rem; }
.hero-card p { color: rgba(255,255,255,.74); }
.hero-card small { display: block; margin-top: 20px; color: rgba(255,255,255,.52); }
.text-link { color: var(--yellow); font-weight: 900; text-decoration: none; }

.section-heading { max-width: 690px; margin-bottom: 40px; }
.section-heading p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.service-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(7,20,39,.04); }
.service-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 12px; background: var(--yellow); }
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--navy); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { color: var(--muted); }
.service-card span { display: block; margin-top: 20px; color: var(--red); font-size: .75rem; font-weight: 900; line-height: 1.4; }
.centered-action { margin-top: 34px; text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.testimonial-card { margin: 0; padding: 28px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.stars { color: var(--yellow-dark); letter-spacing: .12em; }
.testimonial-card blockquote { margin: 18px 0 20px; font-size: 1.08rem; font-weight: 650; }
.testimonial-card figcaption { color: var(--muted); font-size: .84rem; font-weight: 800; }
.trust-card h3 { margin: 14px 0 8px; }
.trust-card p { margin: 0; color: var(--muted); }
.trust-number {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: var(--navy); background: var(--yellow); font-size: .85rem; font-weight: 900;
}

.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
.about-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.about-points { display: grid; gap: 18px; }
.about-points article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.about-points article:last-child { border-bottom: 0; }
.about-points strong { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--navy); background: var(--yellow); }
.about-points p { margin: 0; color: var(--muted); }

.contact-section { padding: 82px 0; color: var(--white); background: var(--navy-2); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.contact-copy { display: block; min-width: 0; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.70); }
.contact-callouts { position: relative; z-index: 1; display: grid; gap: 14px; margin-top: 28px; }
.contact-callout { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.06); }
.contact-callout h3 { margin-bottom: 7px; color: var(--white); font-size: 1.05rem; }
.contact-callout p { margin: 0 0 10px; color: rgba(255,255,255,.68); }
.contact-link { color: var(--yellow); font-weight: 900; overflow-wrap: anywhere; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.contact-form { padding: 30px; border-radius: var(--radius); color: var(--ink); background: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.form-intro { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-intro strong { display: block; color: var(--navy); font-size: 1.18rem; line-height: 1.2; }
.form-intro p { margin: 6px 0 0; color: var(--muted); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: .88rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; min-height: 48px; border: 1px solid #cfd5dd; border-radius: 9px; padding: 11px 13px;
  color: var(--ink); background: var(--white); outline: none;
}
.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 3px rgba(255,196,0,.18); }
.optional-label { color: var(--muted); font-weight: 600; }
.consent { grid-template-columns: 18px 1fr; align-items: start; font-weight: 500 !important; line-height: 1.45; }
.consent input { width: 18px; min-height: 18px; margin: 3px 0 0; }
.consent a { color: var(--red); }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }
.form-note.is-error { color: var(--red); font-weight: 800; }
.form-note.is-success { color: #187a3b; font-weight: 800; }

.site-footer { padding: 38px 0 90px; color: rgba(255,255,255,.66); background: #030b16; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; }
.footer-inner strong { color: var(--white); }
.footer-inner p { margin: 3px 0 0; }
.footer-inner nav { display: flex; gap: 22px; }
.footer-inner a { color: inherit; text-decoration: none; }
.footer-inner a:hover { color: var(--yellow); }
.social-links { grid-column: 2; display: flex; justify-content: flex-end; gap: 10px; }
.social-link {
  position: relative; z-index: 1; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; color: rgba(255,255,255,.78); background: rgba(255,255,255,.05);
  pointer-events: auto;
}
.social-link:hover { color: var(--yellow); background: rgba(255,196,0,.10); border-color: rgba(255,196,0,.65); }
.social-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-link[data-social="facebook"] svg { fill: currentColor; stroke: none; }
.footer-inner small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); }
.mobile-cta { display: none; }

@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-grid, .contact-grid { gap: 38px; }
  .about-grid { gap: 48px; }
  .main-nav { gap: 18px; }
  h1 { font-size: 4rem; }
  h2 { font-size: 2.85rem; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 64px 0; }
  .header-inner { min-height: 68px; }
  .brand { width: 190px; }
  .brand img { height: 62px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; left: 12px; right: 12px; top: calc(100% + 8px);
    display: none; padding: 14px; border: 1px solid rgba(255,255,255,.10); border-radius: 14px;
    background: var(--navy); box-shadow: 0 18px 40px rgba(0,0,0,.26);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { text-align: center; }
  .hero { padding: 58px 0 64px; }
  .hero-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .hero-card { padding: 24px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-card { padding: 23px; }
  .about-points article { padding: 18px 0; }
  .contact-section { padding: 64px 0; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { flex-wrap: wrap; }
  .social-links { grid-column: auto; justify-content: flex-start; }
  .footer-inner small { grid-column: auto; }
  .site-footer { padding-bottom: 96px; }
  .mobile-cta {
    position: fixed; z-index: 90; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
    display: flex; min-height: 52px; align-items: center; justify-content: center;
    border-radius: 12px; color: var(--navy); background: var(--yellow); box-shadow: 0 12px 34px rgba(0,0,0,.28);
    font-weight: 900; text-decoration: none;
  }
}

@media (max-width: 380px) {
  .brand { width: 168px; }
  .brand img { height: 58px; }
  h1 { font-size: 2.62rem; }
  h2 { font-size: 2.05rem; }
  .service-card, .testimonial-card, .contact-form { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
