:root {
  --navy: #073252;
  --navy-deep: #04243b;
  --aqua: #08a8a2;
  --aqua-dark: #078d8a;
  --mint: #dff7f2;
  --pale: #f1faf9;
  --text: #173449;
  --muted: #6d8290;
  --white: #ffffff;
  --border: #dce9e9;
  --shadow: 0 18px 50px rgba(7, 50, 82, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); font-family: "DM Sans", sans-serif; background: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.topbar {
  height: 32px; display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--navy-deep); color: #d6eef0; font-size: 12px; letter-spacing: .03em;
}
.topbar-separator { color: #36d3c5; }
.site-header {
  height: 82px; padding: 0 max(5vw, 24px); display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(7,50,82,.08); position: sticky; top: 0; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font: 800 23px/1 "Manrope", sans-serif; color: var(--navy); }
.brand > span:last-child > span { color: var(--aqua); }
.brand-mark { width: 28px; height: 34px; display: inline-flex; }
.brand-mark svg { width: 100%; fill: var(--aqua); }
.brand-mark .drop-shine { fill: none; stroke: #a9f2eb; stroke-width: 2.2; stroke-linecap: round; }
.desktop-nav { display: flex; gap: 31px; font-size: 14px; font-weight: 600; }
.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--aqua); }
.header-call { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 700; font-size: 14px; }
.header-call small { display: block; color: var(--muted); font-weight: 500; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.phone-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--aqua); background: var(--mint); }
.menu-button { display: none; border: 0; background: none; color: var(--navy); font-size: 24px; }

.hero { min-height: 610px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 70px max(7vw, 32px); }
.hero-image { position: absolute; inset: 0; background: url("assets/water-delivery-hero.png") center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(241,251,250,.99) 0%, rgba(240,250,249,.94) 35%, rgba(240,250,249,.25) 62%, rgba(0,0,0,.04) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 610px; }
.eyebrow, .section-kicker {
  color: var(--aqua-dark); text-transform: uppercase; font-size: 12px; letter-spacing: .15em; font-weight: 800;
}
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 27px; height: 2px; background: var(--aqua); }
h1, h2, h3 { font-family: "Manrope", sans-serif; color: var(--navy); margin-top: 0; }
h1 { font-size: clamp(50px, 5.3vw, 78px); line-height: 1.03; letter-spacing: -.052em; margin: 20px 0 22px; }
h1 em, h2 em { color: var(--aqua); font-style: normal; }
.hero-content > p { max-width: 565px; color: #516d7e; font-size: 18px; line-height: 1.65; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 52px; padding: 0 25px;
  border-radius: 8px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .2s, background .2s, box-shadow .2s;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--aqua); color: white; box-shadow: 0 10px 25px rgba(8,168,162,.22); }
.button-primary:hover { background: var(--aqua-dark); }
.button-ghost { background: rgba(255,255,255,.8); border-color: #bcd5d6; color: var(--navy); }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 13px; }
.trust-faces { display: flex; }
.trust-faces span {
  width: 32px; height: 32px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%;
  margin-left: -7px; color: white; background: var(--navy); font-size: 11px; font-weight: 700;
}
.trust-faces span:nth-child(2) { background: var(--aqua); }
.trust-faces span:nth-child(3) { background: #e0a660; }
.hero-trust strong, .hero-trust small { display: block; }
.hero-trust strong { font-size: 13px; color: var(--navy); }
.hero-trust small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.hero-badge {
  position: absolute; right: 5%; bottom: 35px; z-index: 3; display: flex; gap: 11px; align-items: center;
  background: rgba(255,255,255,.94); border-radius: 10px; padding: 13px 17px; box-shadow: var(--shadow);
}
.badge-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--aqua); }
.hero-badge strong, .hero-badge small { display: block; }
.hero-badge strong { color: var(--navy); font-size: 13px; }
.hero-badge small { color: var(--muted); font-size: 10px; margin-top: 2px; }

.quick-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 25px max(7vw, 30px); background: var(--navy);
  color: white; position: relative; z-index: 5;
}
.benefit { display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid rgba(255,255,255,.15); }
.benefit:last-child { border-right: 0; }
.benefit > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(49,211,199,.12); color: #43d5c9; font-weight: 700; }
.benefit p { margin: 0; }
.benefit strong, .benefit small { display: block; }
.benefit strong { font-size: 13px; }
.benefit small { color: #9ab2bf; font-size: 10px; margin-top: 3px; }

.section { padding: 95px max(7vw, 30px); }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section h2, .order-copy h2 { font-size: clamp(34px, 3.5vw, 48px); line-height: 1.15; letter-spacing: -.04em; margin: 12px 0 14px; }
.section-heading p { color: var(--muted); margin: 0; line-height: 1.7; }
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: auto; }
.step-card { position: relative; padding: 36px 32px 32px; border: 1px solid var(--border); border-radius: 14px; background: white; transition: transform .2s, box-shadow .2s; }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-card.featured { border-color: #a8deda; box-shadow: 0 15px 40px rgba(7,50,82,.08); }
.step-number { position: absolute; right: 22px; top: 18px; color: #e6eff0; font: 800 38px "Manrope"; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 12px; color: var(--aqua); background: var(--mint); font-size: 24px; margin-bottom: 25px; }
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { color: var(--muted); line-height: 1.6; font-size: 14px; margin: 0; }

.pricing-section { background: var(--pale); display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.pricing-copy { max-width: 550px; }
.pricing-copy > p { color: var(--muted); line-height: 1.7; }
.pricing-copy ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 15px; }
.pricing-copy li { font-size: 14px; font-weight: 600; }
.pricing-copy li span { width: 24px; height: 24px; display: inline-grid; place-items: center; margin-right: 10px; border-radius: 50%; background: #d8f4ef; color: var(--aqua-dark); }
.price-card { position: relative; min-height: 370px; padding: 42px; display: flex; align-items: center; gap: 38px; background: white; border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.popular-tag { position: absolute; right: -35px; top: 24px; width: 150px; padding: 7px 0; transform: rotate(45deg); text-align: center; background: #f7c969; color: #6a4b0b; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.can-illustration { width: 145px; flex: 0 0 145px; display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 15px 16px rgba(3,105,151,.2)); }
.can-cap { width: 48px; height: 17px; border-radius: 5px 5px 2px 2px; background: #0f7bad; }
.can-neck { width: 70px; height: 29px; background: linear-gradient(90deg,#a8e9f5,#e5fbff,#a1dce9); border-radius: 7px 7px 2px 2px; }
.can-body { width: 136px; height: 205px; display: grid; place-items: center; border-radius: 40px 40px 24px 24px; border: 2px solid #80d5e7; background: linear-gradient(90deg,rgba(65,190,222,.45),rgba(217,249,255,.75),rgba(46,169,204,.48)); box-shadow: inset 10px 0 18px rgba(255,255,255,.42); }
.can-body span { color: #0c82a9; font: 800 24px "Manrope"; opacity: .75; }
.price-label { color: var(--aqua-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.price { margin: 8px 0 4px; color: var(--navy); font: 800 54px "Manrope"; letter-spacing: -.05em; }
.price sup { font-size: 25px; vertical-align: 16px; }
.price small { font: 500 13px "DM Sans"; color: var(--muted); letter-spacing: 0; }
.price-details > p { color: var(--muted); font-size: 12px; margin: 0; }
.price-note { margin: 18px 0; padding: 9px 11px; border-radius: 6px; background: var(--pale); color: #57717e; font-size: 11px; }
.full { width: 100%; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1100px; margin: auto; }
.why-grid article { text-align: center; padding: 20px 35px; }
.why-icon { width: 62px; height: 62px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--aqua); font-size: 26px; }
.why-grid h3 { font-size: 18px; margin-bottom: 9px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.order-section { padding: 85px max(8vw, 35px); display: grid; grid-template-columns: 1fr 520px; gap: 90px; align-items: center; background: var(--navy); }
.section-kicker.light { color: #58ded3; }
.order-copy { max-width: 600px; }
.order-copy h2 { color: white; font-size: clamp(38px, 4vw, 54px); }
.order-copy > p { color: #aec2cd; line-height: 1.75; max-width: 520px; }
.order-copy > .button { margin-top: 12px; }
.contact-row { display: flex; gap: 13px; align-items: center; margin-top: 33px; color: white; }
.contact-row > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(58,214,202,.12); color: #59ddd2; }
.contact-row small, .contact-row a { display: block; }
.contact-row small { color: #91aab7; font-size: 11px; }
.contact-row a { font-weight: 700; margin-top: 2px; }
.order-form { padding: 34px; border-radius: 15px; background: white; box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.form-heading h3 { margin: 0; font-size: 22px; }
.form-heading span { padding: 6px 10px; border-radius: 20px; background: var(--mint); color: var(--aqua-dark); font-size: 10px; font-weight: 800; }
.order-form label { display: block; color: #496473; font-size: 11px; font-weight: 700; margin-bottom: 14px; }
.order-form input, .order-form textarea, .order-form select {
  width: 100%; margin-top: 6px; padding: 12px 13px; border: 1px solid #d7e4e6; border-radius: 7px; outline: none; color: var(--text); background: white;
}
.order-form input:focus, .order-form textarea:focus, .order-form select:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(8,168,162,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quantity-control { display: grid; grid-template-columns: 38px 1fr 38px; margin-top: 6px; border: 1px solid #d7e4e6; border-radius: 7px; overflow: hidden; }
.quantity-control button { border: 0; background: var(--pale); color: var(--navy); font-size: 18px; }
.quantity-control input { margin: 0; border: 0; text-align: center; border-radius: 0; padding: 10px 0; }
.total-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin: 2px 0 10px; border-top: 1px solid #edf2f3; color: var(--muted); font-size: 12px; }
.total-line strong { font: 800 20px "Manrope"; color: var(--navy); }
.whatsapp-button { border: 0; background: var(--aqua); color: white; }
.whatsapp-button:hover { background: var(--aqua-dark); }
.whatsapp-button:disabled { cursor: wait; opacity: .7; transform: none; }
.form-note { display: block; text-align: center; margin-top: 10px; color: #92a3ac; font-size: 9px; }
.order-preview {
  min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  background: radial-gradient(circle at 50% 35%, rgba(65,220,210,.25), rgba(255,255,255,.05) 55%);
  color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.preview-drop { font-size: 74px; filter: drop-shadow(0 15px 22px rgba(0,0,0,.2)); }
.order-preview strong { margin-top: 15px; font: 800 27px "Manrope"; }
.order-preview small { margin-top: 5px; color: #acc3cd; }
.preview-status { margin-top: 25px; padding: 9px 14px; border-radius: 30px; background: rgba(4,29,48,.5); font-size: 11px; }
.preview-status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #48e5a0; box-shadow: 0 0 0 4px rgba(72,229,160,.12); }

body.modal-open { overflow: hidden; }
.order-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.order-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,23,38,.76); backdrop-filter: blur(5px); animation: fadeIn .2s ease; }
.modal-panel {
  position: relative; z-index: 1; width: min(100%, 520px); max-height: calc(100vh - 40px); overflow-y: auto;
  border-radius: 18px; background: #f5fbfa; box-shadow: 0 30px 90px rgba(0,0,0,.35); animation: modalIn .25s ease;
}
.modal-close {
  position: absolute; right: 16px; top: 15px; z-index: 2; width: 34px; height: 34px; border: 0;
  border-radius: 50%; background: rgba(255,255,255,.18); color: white; font-size: 24px; line-height: 1;
}
.modal-top { display: flex; align-items: center; gap: 16px; padding: 28px 55px 25px 28px; background: var(--navy); }
.modal-icon { width: 55px; height: 55px; flex: 0 0 55px; display: grid; place-items: center; border-radius: 15px; background: rgba(56,215,202,.13); font-size: 28px; }
.modal-top h2 { color: white; font-size: 27px; margin: 4px 0; letter-spacing: -.03em; }
.modal-top p { color: #aec2cd; font-size: 11px; margin: 0; }
.modal-form { border-radius: 0; box-shadow: none; padding: 27px 28px 30px; }
.order-success { padding: 45px 32px 40px; text-align: center; background: white; }
.success-check { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: #dff8eb; color: #19a661; font-size: 35px; font-weight: 800; }
.order-success h3 { margin: 10px 0 12px; font-size: 24px; }
.order-success p { color: var(--muted); font-size: 13px; line-height: 1.7; margin: 0 0 25px; }
.order-success p strong { color: var(--navy); }
.exchange-check { display: flex !important; align-items: center; gap: 9px; cursor: pointer; }
.exchange-check input { width: 17px; height: 17px; margin: 0; accent-color: var(--aqua); }
.exchange-check span { color: #496473; }
.location-button {
  width: 100%; display: flex; align-items: center; gap: 11px; margin: -3px 0 15px; padding: 10px 12px;
  border: 1px dashed #9dd8d3; border-radius: 8px; background: #effaf8; color: var(--navy); text-align: left;
}
.location-button:hover { border-color: var(--aqua); background: #e4f7f4; }
.location-button:disabled { cursor: wait; opacity: .72; }
.location-target { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border-radius: 50%; background: var(--aqua); color: white; font-size: 17px; }
.location-button strong, .location-button small { display: block; }
.location-button strong { font-size: 11px; }
.location-button small { color: var(--muted); font-size: 9px; margin-top: 2px; }
.location-button.location-success { border-style: solid; border-color: #80dcb1; background: #effbf5; }
.location-button.location-error { border-color: #e5a8a8; background: #fff5f5; }
.location-button.location-error .location-target { background: #d45d5d; }
.footer-order-link { padding: 0; border: 0; background: none; color: #98afba; font-size: 11px; cursor: pointer; }
.footer-order-link:hover { color: #47d8ce; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }

footer { background: #031d30; color: #98afba; }
.footer-main { padding: 58px max(7vw, 30px); display: grid; grid-template-columns: 1.5fr .7fr 1fr 1.1fr; gap: 55px; }
.footer-brand { color: white; margin-bottom: 17px; }
.footer-main > div:first-child p { max-width: 290px; line-height: 1.7; font-size: 12px; }
.footer-main h4 { color: white; margin: 4px 0 18px; font-size: 13px; }
.footer-main a, .footer-main p { display: block; font-size: 11px; line-height: 1.9; margin: 0 0 6px; }
.footer-main a:hover { color: #47d8ce; }
.footer-bottom { padding: 18px max(7vw, 30px); display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.floating-whatsapp { display: none; position: fixed; right: 18px; bottom: 18px; z-index: 30; align-items: center; gap: 7px; padding: 12px 17px; border: 0; border-radius: 30px; color: white; background: #20b968; box-shadow: 0 8px 25px rgba(0,0,0,.25); font-size: 13px; font-weight: 700; }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .hero { min-height: 570px; }
  .quick-benefits { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .benefit:nth-child(2) { border-right: 0; }
  .pricing-section { gap: 40px; }
  .price-card { padding: 35px 25px; gap: 20px; }
  .can-illustration { transform: scale(.8); margin-left: -15px; margin-right: -15px; }
  .order-section { grid-template-columns: 1fr 460px; gap: 45px; }
}

@media (max-width: 760px) {
  .topbar { font-size: 10px; }
  .site-header { height: 68px; padding: 0 18px; }
  .header-call { display: none; }
  .menu-button { display: block; }
  .desktop-nav.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; padding: 22px; flex-direction: column; gap: 18px; background: white; box-shadow: var(--shadow); }
  .hero { min-height: 650px; padding: 55px 22px 130px; align-items: flex-start; }
  .hero-image { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(240,250,249,.98) 0%, rgba(240,250,249,.9) 50%, rgba(240,250,249,.3) 100%); }
  h1 { font-size: 48px; }
  .hero-content > p { font-size: 16px; }
  .hero-badge { right: 18px; bottom: 20px; }
  .quick-benefits { padding: 25px 18px; }
  .benefit { justify-content: flex-start; padding-left: 8px; }
  .benefit > span { width: 30px; height: 30px; }
  .section { padding: 72px 20px; }
  .steps-grid, .why-grid, .pricing-section, .order-section { grid-template-columns: 1fr; }
  .steps-grid { gap: 15px; }
  .pricing-section { gap: 48px; }
  .price-card { min-height: 340px; }
  .why-grid article { padding: 18px 20px; }
  .order-section { padding: 70px 20px; gap: 40px; }
  .order-form { padding: 26px 20px; }
  .order-preview { min-height: 270px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 22px; gap: 36px 25px; }
  .footer-bottom { padding: 18px 22px; display: block; line-height: 1.8; }
  .footer-bottom span { display: block; }
  .floating-whatsapp { display: flex; }
}

@media (max-width: 480px) {
  .topbar-separator, .topbar span:last-child { display: none; }
  .hero-actions .button { width: 100%; }
  .quick-benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 10px; }
  .benefit:last-child { border-bottom: 0; }
  .price-card { display: block; text-align: center; }
  .can-illustration { margin: -35px auto -5px; transform: scale(.62); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-modal { padding: 10px; }
  .modal-panel { max-height: calc(100vh - 20px); }
  .modal-top { padding: 22px 45px 20px 20px; }
  .modal-icon { width: 45px; height: 45px; flex-basis: 45px; font-size: 23px; }
  .modal-top h2 { font-size: 23px; }
  .modal-form { padding: 22px 19px 25px; }
  .footer-main { grid-template-columns: 1fr; }
}

/* Subscription option */
.subscribe-check { margin-top: 4px; }
.subscribe-days { margin: 4px 0 14px; padding: 12px 14px; border-radius: 12px; background: #f1faf9; border: 1px solid #d7e9e7; }
.subscribe-days > small { display: block; margin-bottom: 9px; color: #5a7682; font-size: 11px; line-height: 1.5; }
.day-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.day-chips label { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: 52px; padding: 8px 10px; border-radius: 9px; background: #fff; border: 1px solid #cfe2e0; color: #355; font-size: 12px; font-weight: 600; cursor: pointer; user-select: none; }
.day-chips input { position: absolute; opacity: 0; pointer-events: none; }
.day-chips label:has(input:checked) { background: #08a8a2; border-color: #08a8a2; color: #fff; }
