:root {
  --navy: #071a2f;
  --navy-2: #0c2745;
  --blue: #123e66;
  --orange: #f46b21;
  --orange-dark: #d8520a;
  --cream: #f5f1e9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #142335;
  --muted: #657181;
  --line: #dfe4e8;
  --green: #19a463;
  --shadow: 0 24px 60px rgba(7, 26, 47, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: var(--orange); color: white; padding: 10px 18px; border-radius: 4px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.topbar { background: #03101e; color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .03em; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 24px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 25px; }
.topbar a:hover { color: white; }
.navbar { position: relative; z-index: 50; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.09); }
.nav-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.brand img { height: 49px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 29px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 600; }
.nav-menu > a:not(.button) { position: relative; padding-block: 30px; }
.nav-menu > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 23px; width: 0; height: 2px; background: var(--orange); transition: width .25s ease; }
.nav-menu > a:not(.button):hover { color: white; }
.nav-menu > a:not(.button):hover::after { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); background: transparent; border-radius: 5px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 21px; height: 2px; background: white; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 0 25px; border-radius: 4px; border: 1px solid var(--orange); background: var(--orange); color: white; font-size: 14px; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(244,107,33,.24); }
.button-small { min-height: 43px; padding-inline: 19px; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.38); }
.button-outline:hover { background: white; color: var(--navy); border-color: white; box-shadow: none; }
.button-light-outline { background: transparent; border-color: rgba(255,255,255,.55); }
.button-light-outline:hover { background: white; color: var(--navy); border-color: white; box-shadow: none; }
.button-wide { width: 100%; min-height: 58px; }

.hero { position: relative; min-height: 710px; overflow: hidden; background: radial-gradient(circle at 77% 40%, rgba(35,100,147,.26), transparent 29%), linear-gradient(115deg, #06172a 0%, #08233d 58%, #0a2946 100%); color: white; }
.hero::before { content: ""; position: absolute; top: -200px; right: -180px; width: 670px; height: 670px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 110px rgba(255,255,255,.015), 0 0 0 220px rgba(255,255,255,.01); }
.hero-grid-overlay { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, transparent, black 60%); }
.hero-layout { position: relative; z-index: 2; min-height: 710px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 45px; padding-block: 72px 90px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 23px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { width: 33px; height: 2px; background: var(--orange); }
.eyebrow.dark { color: #5e6976; }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(48px, 5.2vw, 76px); line-height: .99; letter-spacing: -.052em; font-weight: 400; }
.hero h1 strong { color: var(--orange); font-weight: 750; }
.hero-lead { max-width: 630px; margin: 27px 0 31px; color: rgba(255,255,255,.74); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 45px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust b { font-size: 13px; }
.hero-trust span { color: rgba(255,255,255,.54); font-size: 11px; line-height: 1.45; }
.hero-visual { position: relative; }
.hero-card { position: relative; }
.hero-card::before { content: ""; position: absolute; inset: 12% 1% 0 11%; background: linear-gradient(150deg, rgba(244,107,33,.28), rgba(48,128,183,.09)); filter: blur(50px); border-radius: 50%; }
.hero-card img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 34px 38px rgba(0,0,0,.36)); }
.route-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 13px; background: rgba(5,24,42,.82); border: 1px solid rgba(255,255,255,.15); border-radius: 5px; color: rgba(255,255,255,.86); backdrop-filter: blur(12px); font-size: 11px; font-weight: 750; box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.route-chip i { width: 8px; height: 8px; border-radius: 50%; background: #54d08c; box-shadow: 0 0 0 4px rgba(84,208,140,.14); }
.route-chip-one { left: 1%; bottom: 23%; }
.route-chip-two { right: 0; top: 24%; }
.hero-scroll { position: absolute; z-index: 4; left: max(20px, calc((100% - var(--container))/2)); bottom: 20px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.46); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.hero-scroll span { color: var(--orange); font-size: 17px; }

.intro-strip { background: white; border-bottom: 1px solid var(--line); }
.intro-strip-inner { min-height: 104px; display: flex; align-items: center; gap: 35px; }
.intro-strip p { white-space: nowrap; margin: 0; color: #87909b; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.intro-items { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); }
.intro-items span { padding: 8px 25px; border-left: 1px solid var(--line); color: var(--navy); font-size: 13px; font-weight: 750; text-align: center; }

.section { padding: 118px 0; }
.two-column { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: start; }
.section-heading h2, .why-copy h2, .coverage-copy h2, .quote-intro h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4vw, 57px); line-height: 1.08; letter-spacing: -.04em; font-weight: 650; }
.section-heading.centered { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { max-width: 630px; margin: 19px auto 0; color: var(--muted); }
.about { background: var(--paper); }
.about-copy { padding-top: 6px; }
.about-copy p { color: var(--muted); }
.about-copy .lead { margin-top: 0; color: var(--navy); font-size: 21px; line-height: 1.65; font-weight: 550; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 28px; margin-top: 28px; }
.check-grid span { position: relative; padding-left: 27px; color: var(--navy); font-size: 14px; font-weight: 700; }
.check-grid span::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 900; }

.services { background: #eef1f3; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 34px 31px 31px; overflow: hidden; background: white; border: 1px solid transparent; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(244,107,33,.35); box-shadow: var(--shadow); }
.service-number { position: absolute; top: 26px; right: 28px; color: #dfe4e8; font-size: 13px; font-weight: 800; }
.icon-box { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 54px; background: #fff2ea; color: var(--orange); }
.icon-box svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.service-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 22px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.why-us { background: var(--navy); color: white; }
.why-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 95px; align-items: center; }
.visual-panel { position: relative; min-height: 610px; display: grid; align-items: end; overflow: hidden; background: linear-gradient(145deg, #123b60, #082037); border: 1px solid rgba(255,255,255,.1); }
.visual-panel::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 66% 27%, rgba(244,107,33,.28), transparent 24%); }
.visual-panel img { position: relative; z-index: 2; width: 100%; }
.visual-caption { position: absolute; z-index: 3; left: 27px; right: 27px; bottom: 25px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 17px 19px; background: rgba(4,18,32,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(9px); }
.visual-caption strong, .visual-caption span { display: block; }
.visual-caption strong { font-size: 13px; }
.visual-caption span { color: rgba(255,255,255,.58); font-size: 11px; }
.why-copy h2 { color: white; }
.why-copy > p { margin: 25px 0 31px; color: rgba(255,255,255,.63); font-size: 16px; }
.feature-list { border-top: 1px solid rgba(255,255,255,.13); }
.feature-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.feature-list > div > b { color: var(--orange); font-size: 11px; }
.feature-list > div > span { color: rgba(255,255,255,.58); font-size: 13px; }
.feature-list strong { display: block; margin-bottom: 3px; color: white; font-size: 16px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 28px; color: white; font-size: 13px; font-weight: 800; }
.text-link span { color: var(--orange); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.process { background: var(--paper); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; }
.process-grid::before { content:""; position:absolute; top: 25px; left: 12.5%; right: 12.5%; height: 1px; background: #cfd6dc; }
.process-step { position: relative; text-align: center; }
.process-step > span { position: relative; z-index: 2; width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 28px; background: var(--paper); border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); font-size: 14px; font-weight: 900; }
.process-step h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; }

.coverage { position: relative; min-height: 620px; overflow: hidden; background: #0b2a49; color: white; }
.coverage::before { content:""; position:absolute; inset:0; opacity:.15; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 1px); background-size: 30px 30px; }
.coverage-layout { position: relative; z-index: 3; min-height: 620px; display: flex; align-items: center; }
.coverage-copy { width: 53%; padding: 90px 0; }
.coverage-copy h2 { color: white; }
.coverage-copy > p { max-width: 640px; color: rgba(255,255,255,.66); }
.coverage-map { position: absolute; z-index: 2; right: max(0px, calc((100% - var(--container))/2 - 80px)); bottom: 0; width: min(48vw, 630px); opacity: .92; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.coverage-tags span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 750; }
.coverage-note { margin-top: 20px; font-size: 11px; }

.quote { background: var(--cream); }
.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.quote-intro { position: sticky; top: 35px; }
.quote-intro > p { margin: 22px 0 34px; color: var(--muted); font-size: 16px; }
.contact-mini { border-top: 1px solid #d9d5cc; }
.contact-mini a { display: flex; flex-direction: column; gap: 2px; padding: 18px 0; border-bottom: 1px solid #d9d5cc; }
.contact-mini span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.contact-mini strong { color: var(--navy); font-size: 17px; }
.quote-form { padding: 43px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 800; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #d8dee3; border-radius: 3px; outline: none; background: #fbfcfd; color: var(--ink); font-size: 14px; font-weight: 450; transition: border-color .2s, box-shadow .2s; }
.form-grid input, .form-grid select { height: 52px; padding: 0 14px; }
.form-grid textarea { padding: 14px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,107,33,.12); }
.quote-form .button { margin-top: 23px; }
.form-note { margin: 12px 0 0; color: #8a949d; font-size: 10px; text-align: center; }

.faq { background: white; }
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 22px 45px 22px 0; color: var(--navy); font-size: 16px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--orange); font-size: 24px; font-weight: 350; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: -2px 45px 22px 0; color: var(--muted); font-size: 13px; }

.contact-banner { padding: 67px 0; background: var(--orange); color: white; }
.contact-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.contact-banner span { color: rgba(255,255,255,.72); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.contact-banner h2 { margin: 4px 0 0; font-size: clamp(35px, 4vw, 54px); line-height: 1.1; letter-spacing: -.04em; }
.contact-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-banner .button { background: var(--navy); border-color: var(--navy); }
.contact-banner .button:hover { background: #03101e; border-color: #03101e; }
.contact-banner .button-light-outline { background: transparent; border-color: rgba(255,255,255,.55); }
.contact-banner .button-light-outline:hover { background: white; border-color: white; color: var(--navy); }

.footer { background: #041322; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 65px; padding-top: 75px; padding-bottom: 55px; }
.footer-brand img { width: 220px; height: auto; margin-bottom: 19px; }
.footer-brand p { max-width: 360px; margin: 0; font-size: 13px; line-height: 1.8; }
.footer h3 { margin: 7px 0 21px; color: white; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer a:hover { color: white; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.whatsapp-float { position: fixed; z-index: 100; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; background: #25d366; border-radius: 50%; box-shadow: 0 12px 30px rgba(0,0,0,.24); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: white; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay, .reveal-delay-one { transition-delay: .12s; }
.reveal-delay-two { transition-delay: .22s; }
.reveal-delay-three { transition-delay: .32s; }

@media (max-width: 1040px) {
  .nav-menu { gap: 18px; }
  .hero-layout { grid-template-columns: 1.04fr .96fr; gap: 15px; }
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-trust div { display: grid; grid-template-columns: 120px 1fr; }
  .why-layout { gap: 55px; }
  .quote-layout { gap: 50px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-inner { min-height: 76px; }
  .menu-toggle { display: flex; }
  .nav-menu { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 24px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.09); box-shadow: 0 20px 30px rgba(0,0,0,.2); }
  .nav-menu.open { display: flex; }
  .nav-menu > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-menu > a:not(.button)::after { display: none; }
  .nav-menu .button { margin-top: 14px; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 730px; }
  .hero-visual { max-width: 700px; margin: -15px auto -30px; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
  .hero-trust div { display: flex; }
  .intro-strip-inner { flex-direction: column; align-items: stretch; gap: 14px; padding-block: 22px; }
  .intro-items span:first-child { border-left: 0; }
  .two-column, .why-layout, .quote-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-visual { max-width: 650px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .process-grid::before { display: none; }
  .coverage-copy { width: 60%; }
  .coverage-map { right: -70px; width: 55vw; }
  .quote-intro { position: static; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 82px 0; }
  .brand img { height: 43px; }
  .hero { min-height: auto; }
  .hero-layout { min-height: auto; padding: 70px 0 86px; }
  .hero h1 { font-size: clamp(43px, 13vw, 59px); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; margin-top: 32px; }
  .hero-trust div { display: grid; grid-template-columns: 125px 1fr; }
  .hero-visual { margin-top: 5px; }
  .route-chip { display: none; }
  .hero-scroll { display: none; }
  .intro-items { grid-template-columns: repeat(2, 1fr); }
  .intro-items span { border: 0; border-top: 1px solid var(--line); padding: 13px 5px; }
  .intro-items span:nth-child(even) { border-left: 1px solid var(--line); }
  .two-column { gap: 28px; }
  .section-heading h2, .why-copy h2, .coverage-copy h2, .quote-intro h2 { font-size: 38px; }
  .check-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .why-layout { gap: 38px; }
  .visual-panel { min-height: 480px; }
  .visual-caption { left: 14px; right: 14px; bottom: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 52px 1fr; column-gap: 17px; text-align: left; }
  .process-step > span { grid-row: 1 / 3; margin: 0; }
  .process-step h3 { margin-top: 2px; }
  .coverage { min-height: auto; }
  .coverage-layout { min-height: 690px; align-items: flex-start; }
  .coverage-copy { width: 100%; padding: 75px 0 340px; }
  .coverage-map { right: 50%; transform: translateX(50%); bottom: -5px; width: 430px; max-width: 110%; }
  .quote-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .contact-banner-inner { flex-direction: column; align-items: flex-start; }
  .contact-banner-actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-block: 20px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}
