:root {
  --blue-950: #04234f;
  --blue-900: #073f91;
  --blue-800: #0754b8;
  --blue-700: #0b6bd7;
  --blue-100: #dceeff;
  --blue-50: #eff8ff;
  --cyan: #41c9f4;
  --ice: #effbff;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #607089;
  --line: #d9e5ef;
  --green: #14a765;
  --shadow-sm: 0 8px 24px rgba(10, 49, 93, .10);
  --shadow-lg: 0 22px 60px rgba(4, 35, 79, .20);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-140%); background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 82px;
  transition: .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 30px rgba(3, 33, 73, .08);
  backdrop-filter: blur(16px);
  border-color: rgba(8, 64, 145, .08);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 200px; }
.brand img { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; box-shadow: 0 7px 20px rgba(0,0,0,.12); }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-family: "Montserrat", sans-serif; font-size: 1.05rem; letter-spacing: .06em; color: #fff; }
.brand small { color: rgba(255,255,255,.74); font-size: .72rem; margin-top: 3px; }
.site-header.scrolled .brand strong { color: var(--blue-900); }
.site-header.scrolled .brand small { color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { text-decoration: none; color: #fff; font-size: .91rem; font-weight: 700; position: relative; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--cyan); transition: .25s ease; }
.main-nav > a:hover::after { right: 0; }
.site-header.scrolled .main-nav > a { color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.14); cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .25s; }
.site-header.scrolled .menu-toggle { background: var(--blue-50); }
.site-header.scrolled .menu-toggle span { background: var(--blue-900); }

.btn { border: 0; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 21px; border-radius: 13px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); box-shadow: 0 10px 25px rgba(7, 84, 184, .25); }
.btn-accent { background: linear-gradient(135deg, #57d8ff, #9be9ff); color: var(--blue-950); box-shadow: 0 12px 30px rgba(65, 201, 244, .25); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-light { color: var(--blue-900); background: #fff; box-shadow: var(--shadow-sm); }
.btn-outline { color: var(--blue-900); border: 1px solid var(--blue-900); background: #fff; }
.btn-whatsapp { color: #fff; background: linear-gradient(135deg, #15b96f, #0d8f55); box-shadow: 0 10px 24px rgba(20, 167, 101, .20); }
.btn-small { padding: 11px 16px; font-size: .86rem; }
.btn-full { width: 100%; margin-top: 18px; }

.hero { position: relative; min-height: 780px; display: flex; align-items: center; overflow: hidden; background: var(--blue-950); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,31,70,.95) 0%, rgba(3,31,70,.80) 42%, rgba(3,31,70,.20) 76%, rgba(3,31,70,.10) 100%), linear-gradient(0deg, rgba(3,31,70,.35), transparent 40%); }
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-copy { max-width: 680px; color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; color: #a8ecff; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--blue-700); }
.hero h1, h2, h3 { margin-top: 0; }
.hero h1 { font-family: "Montserrat", sans-serif; font-size: clamp(2.8rem, 5.6vw, 5.35rem); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 24px; }
.hero h1 span { color: #9be9ff; }
.hero-copy > p { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 590px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { margin-top: 44px; display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.hero-trust div { min-width: 142px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-trust div:first-child { padding-left: 0; }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong { display: block; font-family: "Montserrat", sans-serif; font-size: 1.55rem; color: #fff; line-height: 1; }
.hero-trust span { display: block; color: rgba(255,255,255,.68); font-size: .75rem; margin-top: 7px; }

.quick-strip { position: relative; z-index: 5; margin-top: -48px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.quick-item { display: flex; align-items: center; gap: 15px; padding: 26px 28px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item .icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: var(--blue-50); font-size: 1.35rem; }
.quick-item div { display: grid; }
.quick-item strong { font-size: .93rem; }
.quick-item small { color: var(--muted); font-size: .76rem; margin-top: 2px; }

.section { padding: 110px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 38px; }
.section-heading h2, .benefit-copy h2, .delivery-copy h2 { font-family: "Montserrat", sans-serif; font-size: clamp(2rem, 3.8vw, 3.45rem); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 0; }
.section-heading > div { max-width: 650px; }
.section-heading > p { max-width: 430px; color: var(--muted); margin: 0; }
.section-heading.centered { display: grid; justify-items: center; text-align: center; }
.section-heading.centered > p { max-width: 640px; }

.products { background: linear-gradient(180deg, #fff, var(--blue-50)); overflow: hidden; }
.slider-controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 15px; }
.slider-btn { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue-900); cursor: pointer; font-size: 1.15rem; transition: .2s; }
.slider-btn:hover { background: var(--blue-900); color: #fff; border-color: var(--blue-900); }
.product-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(290px, 33.333%); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 2px 28px; scrollbar-width: none; cursor: grab; }
.product-slider::-webkit-scrollbar { display: none; }
.product-slider.dragging { cursor: grabbing; scroll-behavior: auto; }
.product-card { scroll-snap-align: start; min-height: 480px; background: #fff; border: 1px solid rgba(7,84,184,.10); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-art { height: 240px; position: relative; overflow: hidden; background: radial-gradient(circle at 70% 15%, #d8f7ff, transparent 25%), linear-gradient(145deg, #dff5ff, #9cddff); }
.product-art::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(255,255,255,.65); right: -70px; top: -85px; }
.product-body { padding: 25px; }
.product-tag { font-size: .69rem; color: var(--blue-700); background: var(--blue-50); font-weight: 800; padding: 6px 9px; border-radius: 999px; display: inline-flex; margin-bottom: 12px; }
.product-body h3 { font-family: "Montserrat", sans-serif; font-size: 1.4rem; margin-bottom: 8px; }
.product-body p { color: var(--muted); font-size: .91rem; min-height: 72px; margin-bottom: 16px; }
.text-btn { padding: 0; border: 0; background: transparent; color: var(--blue-800); font-weight: 800; cursor: pointer; }
.text-btn span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-btn:hover span { transform: translateX(5px); }

.cube-art span { position: absolute; width: 72px; height: 72px; border-radius: 16px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(181,232,255,.74)); border: 2px solid rgba(255,255,255,.8); box-shadow: inset -8px -10px 18px rgba(56,155,208,.20), 0 15px 25px rgba(13,96,157,.13); transform: rotate(18deg); }
.cube-art span:nth-child(1) { left: 42px; top: 92px; }
.cube-art span:nth-child(2) { left: 102px; top: 44px; transform: rotate(-12deg); }
.cube-art span:nth-child(3) { left: 154px; top: 106px; transform: rotate(8deg); }
.cube-art span:nth-child(4) { left: 224px; top: 58px; transform: rotate(26deg); }
.cube-art span:nth-child(5) { left: 255px; top: 130px; transform: rotate(-14deg); }
.crushed-art .cup { position: absolute; width: 160px; height: 132px; left: 50%; bottom: 25px; transform: translateX(-50%); background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.9)); clip-path: polygon(9% 0, 91% 0, 78% 100%, 22% 100%); border-bottom: 8px solid rgba(8,104,184,.25); }
.crushed-art i { position: absolute; width: 38px; height: 30px; background: rgba(255,255,255,.88); border-radius: 10px; box-shadow: inset -5px -4px 10px rgba(12,121,184,.16); transform: rotate(20deg); }
.crushed-art i:nth-of-type(1) { left: 105px; top: 74px; }.crushed-art i:nth-of-type(2) { left: 145px; top: 52px; transform: rotate(-11deg); }.crushed-art i:nth-of-type(3) { left: 185px; top: 82px; }.crushed-art i:nth-of-type(4) { left: 215px; top: 54px; transform: rotate(-25deg); }.crushed-art i:nth-of-type(5) { left: 126px; top: 112px; }.crushed-art i:nth-of-type(6) { left: 193px; top: 118px; transform: rotate(-10deg); }
.abc-art .bowl { position: absolute; width: 230px; height: 95px; left: 50%; bottom: 28px; transform: translateX(-50%); background: linear-gradient(#0b63c0, #073f91); border-radius: 0 0 120px 120px; box-shadow: 0 15px 30px rgba(4,63,145,.20); }
.abc-art .ice-mound { position: absolute; width: 185px; height: 130px; left: 50%; bottom: 91px; transform: translateX(-50%); background: linear-gradient(145deg, #fff, #d7f5ff); clip-path: polygon(50% 0, 88% 31%, 100% 100%, 0 100%, 12% 31%); border-radius: 40%; }
.abc-art .syrup { position: absolute; width: 19px; height: 91px; border-radius: 20px; bottom: 101px; z-index: 2; transform: rotate(19deg); opacity: .8; }
.abc-art .syrup.one { left: 42%; background: #ff516a; }.abc-art .syrup.two { left: 51%; background: #25b877; transform: rotate(-6deg); }.abc-art .syrup.three { left: 59%; background: #f0aa1e; transform: rotate(-21deg); }
.cup-art .ice-cup { position: absolute; width: 145px; height: 154px; left: 50%; bottom: 25px; transform: translateX(-50%); background: rgba(255,255,255,.60); border: 3px solid rgba(255,255,255,.8); clip-path: polygon(8% 0, 92% 0, 80% 100%, 20% 100%); }
.cup-art .ice-cup span { position: absolute; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.88); box-shadow: inset -6px -6px 10px rgba(34,144,202,.16); }
.cup-art .ice-cup span:nth-child(1) { left: 28px; top: 24px; transform: rotate(18deg); }.cup-art .ice-cup span:nth-child(2) { left: 69px; top: 59px; transform: rotate(-12deg); }.cup-art .ice-cup span:nth-child(3) { left: 24px; top: 92px; transform: rotate(8deg); }
.cup-art .lid { position: absolute; width: 170px; height: 15px; border-radius: 20px; background: var(--blue-800); left: 50%; bottom: 173px; transform: translateX(-50%); box-shadow: 0 8px 0 rgba(255,255,255,.7); }
.pack-art .bag { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: linear-gradient(145deg, rgba(255,255,255,.93), rgba(226,247,255,.82)); border: 2px solid rgba(255,255,255,.9); box-shadow: 0 18px 30px rgba(7,84,184,.17); display: grid; place-items: center; align-content: center; color: var(--blue-900); clip-path: polygon(5% 4%, 95% 4%, 100% 95%, 50% 100%, 0 95%); }
.pack-art .bag b { font-family: "Montserrat", sans-serif; line-height: .8; }.pack-art .bag span { font-family: "Montserrat", sans-serif; font-weight: 900; letter-spacing: .18em; }
.small-pack .bag { width: 150px; height: 185px; }.small-pack .bag b { font-size: 3.7rem; }.small-pack .bag span { font-size: 1.05rem; }
.big-pack .bag { width: 205px; height: 205px; }.big-pack .bag b { font-size: 4.6rem; }.big-pack .bag span { font-size: 1.25rem; }

.benefits { background: #fff; }
.benefits-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; }
.benefit-image { position: relative; }
.benefit-image img { width: 100%; height: 600px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-badge { position: absolute; right: -28px; bottom: 35px; min-width: 225px; padding: 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); }
.image-badge strong { color: var(--blue-900); font-family: "Montserrat", sans-serif; display: block; }
.image-badge span { color: var(--muted); font-size: .78rem; }
.benefit-copy > p { color: var(--muted); margin: 22px 0 28px; }
.benefit-list { display: grid; gap: 21px; margin-bottom: 31px; }
.benefit-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; }
.benefit-list > div > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: var(--blue-900); background: var(--blue-50); font-weight: 900; }
.benefit-list strong { font-size: .98rem; }
.benefit-list p { color: var(--muted); font-size: .84rem; margin: 3px 0 0; }

.delivery { padding-top: 30px; }
.delivery-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 58px; align-items: center; background: linear-gradient(135deg, #063b87, #0a6fdc); color: #fff; border-radius: var(--radius-lg); padding: 68px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.delivery-wrap::after { content: "❄"; position: absolute; right: -30px; bottom: -100px; font-size: 330px; color: rgba(255,255,255,.05); line-height: 1; }
.delivery-copy { position: relative; z-index: 2; }
.delivery-copy p { color: rgba(255,255,255,.74); margin: 19px 0 28px; }
.area-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.area-grid span { display: grid; place-items: center; min-height: 66px; padding: 12px; text-align: center; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.19); border-radius: 15px; font-weight: 800; font-size: .84rem; backdrop-filter: blur(7px); }

.contact { background: linear-gradient(180deg, #fff, var(--blue-50)); }
.contact-grid { display: grid; grid-template-columns: minmax(280px, 520px); justify-content: center; gap: 22px; }
.contact-card { padding: 35px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-align: center; }
.avatar { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 22px; background: linear-gradient(135deg, #dff6ff, #b5e6ff); color: var(--blue-900); font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 1.25rem; }
.contact-card h3 { font-family: "Montserrat", sans-serif; margin-bottom: 3px; }
.contact-card p { color: var(--muted); margin: 0 0 20px; font-size: .86rem; }
.contact-card .btn { width: 100%; font-size: .84rem; }
.address-card { display: grid; grid-template-columns: 82px 1fr auto; gap: 22px; align-items: center; margin-top: 26px; padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.address-logo img { width: 82px; height: 82px; object-fit: cover; border-radius: 18px; }
.address-card span { color: var(--blue-700); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.address-card h3 { margin: 4px 0 0; font-size: 1rem; }

.site-footer { background: var(--blue-950); color: #fff; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr auto auto; gap: 35px; align-items: center; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 58px; height: 58px; border-radius: 15px; object-fit: cover; }
.footer-brand strong { font-family: "Montserrat", sans-serif; }
.footer-brand p { color: rgba(255,255,255,.58); margin: 3px 0 0; font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 700; }
.copyright { color: rgba(255,255,255,.48); font-size: .73rem; margin: 0; text-align: right; }

.floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; background: var(--green); color: #fff; text-decoration: none; box-shadow: 0 14px 34px rgba(6,101,58,.28); }
.floating-whatsapp span { font-size: 1.2rem; }.floating-whatsapp b { font-size: .83rem; }

.modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .25s ease; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 23, 51, .72); backdrop-filter: blur(6px); }
.modal-panel { position: relative; z-index: 1; width: min(790px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 38px; border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: .25s ease; }
.modal.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 15px; right: 15px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--blue-50); color: var(--blue-900); font-size: 1.7rem; cursor: pointer; }
.modal-panel h2 { font-family: "Montserrat", sans-serif; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.1; margin-bottom: 10px; }
.modal-panel > p { color: var(--muted); font-size: .89rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 25px; }
.form-grid label { display: grid; gap: 7px; font-size: .78rem; font-weight: 800; color: var(--ink); }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: #fbfdff; outline: 0; transition: .2s; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(11,107,215,.10); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .main-nav > a { display: none; }
  .product-slider { grid-auto-columns: minmax(300px, 48%); }
  .benefits-grid { gap: 45px; }
  .delivery-wrap { padding: 48px; gap: 35px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr auto; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 47px; height: 47px; border-radius: 12px; }
  .brand small { display: none; }
  .main-nav { position: fixed; inset: 72px 14px auto; display: grid; gap: 0; padding: 16px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a { display: block; color: var(--ink) !important; padding: 12px; border-bottom: 1px solid var(--line); }
  .main-nav .btn { margin-top: 10px; }
  .menu-toggle { display: block; }
  .hero { min-height: 720px; }
  .hero-bg { object-position: 65% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,31,70,.96), rgba(3,31,70,.73)), linear-gradient(0deg, rgba(3,31,70,.35), transparent); }
  .hero-content { padding-top: 72px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
  .hero-copy > p { font-size: .96rem; }
  .hero-trust { gap: 20px; }
  .hero-trust div { min-width: 0; padding: 0 16px 0 0; }
  .quick-strip { margin-top: -28px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 21px; }
  .quick-item:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading { display: grid; gap: 17px; align-items: start; }
  .section-heading h2, .benefit-copy h2, .delivery-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .slider-controls { justify-content: flex-start; }
  .product-slider { grid-auto-columns: 88%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-image img { height: 430px; }
  .image-badge { right: 14px; bottom: 20px; }
  .delivery { padding-top: 0; }
  .delivery-wrap { grid-template-columns: 1fr; padding: 38px 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .address-card { grid-template-columns: 65px 1fr; }
  .address-logo img { width: 65px; height: 65px; }
  .address-card .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 14px; }
  .copyright { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .modal-panel { padding: 31px 20px 23px; }
}

@media (max-width: 430px) {
  .hero-actions .btn { width: 100%; }
  .hero-trust div { width: calc(33.333% - 14px); }
  .hero-trust span { font-size: .67rem; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; }
}

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