:root {
  --navy: #072b59;
  --navy-dark: #031a39;
  --blue: #16a9d4;
  --red: #e00027;
  --red-dark: #b90020;
  --white: #ffffff;
  --soft: #f4f8fc;
  --text: #13243a;
  --muted: #637083;
  --shadow: 0 22px 70px rgba(3, 26, 57, .16);
  --radius: 26px;
}

* { 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(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,43,89,.08);
}
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 210px; max-height: 70px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; color: var(--navy); }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 3px; border-radius: 3px;
  background: var(--red);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-cta { background: var(--red); color: white; padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 27px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(22,169,212,.22), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f7fbff 48%, #eaf4ff 100%);
  padding: 88px 0 110px;
}
.hero::before {
  content:"";
  position:absolute;
  width: 420px; height: 420px;
  border: 70px solid rgba(224,0,39,.06);
  border-radius: 50%;
  left: -190px; top: -210px;
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .82rem;
  font-weight: 900;
  color: var(--red);
}
.eyebrow::before { content:""; width: 30px; height: 3px; background: currentColor; border-radius: 4px; }
.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 18px 0 26px;
  color: var(--navy);
  max-width: 760px;
}
.hero h1 span { color: var(--red); }
.hero-copy > p { max-width: 670px; color: var(--muted); font-size: 1.16rem; margin: 0 0 30px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(3,26,57,.18); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { border-color: var(--navy); color: var(--navy); background: white; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin-top: 42px; border-top: 1px solid rgba(7,43,89,.12); padding-top: 24px; }
.trust-row div { display:flex; flex-direction:column; }
.trust-row strong { color: var(--navy); font-size: 1.05rem; }
.trust-row span { color: var(--muted); font-size: .92rem; }

.hero-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: white;
  border-radius: 38px;
  padding: 38px;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
}
.hero-card::after {
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 45%, rgba(22,169,212,.2));
  z-index:-1;
}
.hero-card img {
  background: white;
  border-radius: 24px;
  padding: 18px;
  max-height: 265px;
  width: 100%;
  object-fit: contain;
}
.route-line { display:grid; grid-template-columns:auto 1fr auto 1fr auto; align-items:center; gap:12px; margin:30px 0 16px; font-weight:900; }
.route-line i { height:2px; background:rgba(255,255,255,.45); position:relative; }
.route-line i::after { content:""; position:absolute; right:0; top:-3px; border-left:7px solid white; border-top:4px solid transparent; border-bottom:4px solid transparent; }
.route-line b { color: var(--blue); font-size: 1.4rem; }
.hero-badge { text-align:center; color:#d8e8ff; font-weight:700; margin-bottom:22px; }
.whatsapp-card { display:flex; justify-content:space-between; gap:16px; align-items:center; background:white; color:var(--navy); border-radius:18px; padding:17px 18px; }
.whatsapp-card span { color:var(--red); font-weight:900; }
.whatsapp-card strong { font-size:1.12rem; }
.hero-wave {
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:66px;
  background: white;
  clip-path: polygon(0 75%, 16% 52%, 34% 76%, 52% 48%, 73% 74%, 100% 38%, 100% 100%, 0 100%);
}

.quick-strip { padding: 25px 0 8px; }
.quick-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.quick-grid div { display:flex; align-items:center; gap:14px; padding:18px; background:var(--soft); border-radius:18px; }
.quick-grid span { font-size:1.65rem; }
.quick-grid p { margin:0; color:var(--muted); font-size:.93rem; line-height:1.35; }
.quick-grid strong { color:var(--navy); display:block; }

.section { padding: 100px 0; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align:center; }
.section-heading h2, .areas-grid h2, .contact-copy h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:14px 0 14px;
}
.section-heading p { color:var(--muted); margin:0; font-size:1.05rem; }
.cards { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; }
.service-card {
  border: 1px solid rgba(7,43,89,.1);
  border-radius: var(--radius);
  padding: 30px;
  background: white;
  box-shadow: 0 14px 38px rgba(3,26,57,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); }
.service-card .icon { width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:#eaf4ff; font-size:1.8rem; }
.service-card h3 { color:var(--navy); margin:22px 0 10px; font-size:1.22rem; }
.service-card p { color:var(--muted); margin:0; }

.process-section { background:linear-gradient(135deg, var(--navy), var(--navy-dark)); color:white; position:relative; overflow:hidden; }
.process-section::after { content:""; position:absolute; width:500px; height:500px; border:90px solid rgba(255,255,255,.04); border-radius:50%; right:-220px; top:-220px; }
.section-heading.light h2 { color:white; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; position:relative; z-index:2; }
.process-grid article { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:24px; padding:28px; }
.process-grid span { font-size:2.6rem; font-weight:950; color:var(--blue); }
.process-grid h3 { margin:12px 0 8px; font-size:1.24rem; }
.process-grid p { margin:0; color:#cad9ec; }

.promo-section { background:var(--soft); }
.promo-card { display:grid; grid-template-columns:1.5fr .5fr; align-items:center; gap:35px; background:white; border-radius:34px; padding:50px; box-shadow:var(--shadow); border-left:10px solid var(--red); }
.promo-copy h2 { color:var(--navy); font-size:clamp(2rem,4vw,3.5rem); line-height:1.08; letter-spacing:-.04em; margin:14px 0 18px; }
.promo-copy h2 strong { color:var(--red); white-space:nowrap; }
.promo-copy p { color:var(--muted); max-width:720px; margin-bottom:28px; }
.promo-price { width:230px; aspect-ratio:1; border-radius:50%; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; background:var(--red); color:white; box-shadow:0 18px 38px rgba(224,0,39,.28); padding:24px; justify-self:end; }
.promo-price small { font-weight:900; letter-spacing:.1em; }
.promo-price strong { font-size:4rem; line-height:1; margin:6px 0; }
.promo-price span { font-size:.8rem; line-height:1.25; }

.areas-grid { display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:70px; }
.areas-grid p { color:var(--muted); font-size:1.06rem; }
.location-card { display:flex; gap:18px; align-items:flex-start; background:linear-gradient(145deg,#fff,#edf6ff); border-radius:28px; padding:32px; box-shadow:var(--shadow); border:1px solid rgba(7,43,89,.08); }
.location-card > span { font-size:2rem; }
.location-card strong { color:var(--navy); font-size:1.1rem; }
.location-card p { margin:8px 0 0; }

.faq-section { background:var(--soft); }
.faq-list { max-width:880px; margin:auto; display:grid; gap:14px; }
details { background:white; border-radius:18px; padding:0 22px; border:1px solid rgba(7,43,89,.08); }
summary { cursor:pointer; list-style:none; padding:20px 38px 20px 0; font-weight:850; color:var(--navy); position:relative; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; position:absolute; right:0; top:13px; font-size:1.8rem; color:var(--red); }
details[open] summary::after { content:"–"; }
details p { color:var(--muted); margin:-4px 0 22px; }

.contact-section { background:linear-gradient(145deg,#fff,#eef6ff); }
.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start; }
.contact-copy > p { color:var(--muted); }
.contact-links { display:grid; gap:13px; margin-top:30px; }
.contact-links > * { display:flex; align-items:center; gap:14px; background:white; border-radius:16px; padding:15px; border:1px solid rgba(7,43,89,.08); }
.contact-links > * > span { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; background:#eaf4ff; color:var(--navy); font-weight:900; }
.contact-links small { display:block; color:var(--muted); }
.contact-links strong { color:var(--navy); }

.pickup-form { background:white; border-radius:30px; padding:34px; box-shadow:var(--shadow); display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.pickup-form label { display:flex; flex-direction:column; gap:7px; font-weight:800; color:var(--navy); font-size:.92rem; }
.pickup-form label:nth-child(3), .pickup-form label:nth-child(4) { grid-column:1 / -1; }
.pickup-form input, .pickup-form textarea {
  width:100%;
  border:1px solid #cdd9e7;
  background:#f9fbfe;
  color:var(--text);
  border-radius:13px;
  padding:14px 15px;
  outline:none;
  resize:vertical;
}
.pickup-form input:focus, .pickup-form textarea:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(22,169,212,.13); }
.form-submit { grid-column:1 / -1; border:0; }
.form-note { grid-column:1 / -1; margin:0; text-align:center; font-size:.82rem; color:var(--muted); }

footer { background:var(--navy-dark); color:white; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px; padding:60px 0; }
.footer-brand img { width:190px; background:white; border-radius:18px; padding:10px; }
.footer-brand p { color:#b9cae0; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; gap:9px; }
.footer-grid strong { color:var(--blue); margin-bottom:4px; }
.footer-grid a { color:#d3deec; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); }
.footer-bottom .container { min-height:58px; display:flex; justify-content:space-between; align-items:center; color:#afc0d6; font-size:.88rem; }

.floating-whatsapp {
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  background:#22c55e;
  color:white;
  font-weight:900;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:0 15px 34px rgba(0,0,0,.23);
}
.floating-whatsapp::before { content:"◉"; margin-right:8px; }

@media (max-width: 980px) {
  .menu-toggle { display:block; }
  .main-nav {
    display:none;
    position:absolute;
    left:20px; right:20px; top:76px;
    background:white;
    border-radius:20px;
    padding:22px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:16px;
  }
  .main-nav.open { display:flex; }
  .main-nav .nav-cta { text-align:center; }
  .hero-grid, .areas-grid, .contact-grid { grid-template-columns:1fr; }
  .hero { padding-top:60px; }
  .hero-copy { text-align:center; }
  .hero-copy > p { margin-inline:auto; }
  .hero-actions { justify-content:center; }
  .trust-row { margin-inline:auto; }
  .hero-card { max-width:600px; margin:auto; }
  .cards, .process-grid { grid-template-columns:repeat(2,1fr); }
  .quick-grid { grid-template-columns:repeat(2,1fr); }
  .promo-card { grid-template-columns:1fr; text-align:center; }
  .promo-price { justify-self:center; }
  .promo-copy .btn { margin:auto; }
}
@media (max-width: 640px) {
  .container { width:min(100% - 26px, 1160px); }
  .nav-wrap { height:72px; }
  .brand img { width:165px; max-height:58px; }
  .hero { padding:46px 0 88px; }
  .hero h1 { font-size:clamp(2.65rem,14vw,4.1rem); }
  .hero-grid { gap:40px; }
  .hero-card { padding:22px; border-radius:28px; }
  .trust-row { gap:8px; }
  .trust-row span { font-size:.78rem; }
  .quick-grid, .cards, .process-grid { grid-template-columns:1fr; }
  .section { padding:76px 0; }
  .promo-card { padding:30px 22px; border-left:0; border-top:8px solid var(--red); }
  .promo-price { width:190px; }
  .pickup-form { grid-template-columns:1fr; padding:24px; }
  .pickup-form label, .pickup-form label:nth-child(3), .pickup-form label:nth-child(4), .form-submit, .form-note { grid-column:1; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom .container { flex-direction:column; justify-content:center; gap:4px; padding:14px 0; text-align:center; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp { width:58px; height:58px; padding:0; display:grid; place-items:center; border-radius:50%; font-size:0; }
  .floating-whatsapp::before { font-size:22px; margin:0; }
}
