/* DryCleanVeda — shared responsive design system */
:root {
  --ink: #12343b; --muted: #60777c; --primary: #0f766e; --primary-dark: #0b5f59;
  --teal: #14b8a6; --mint: #ccfbf1; --pale: #f0fdfa; --accent: #f59e0b;
  --accent-dark: #d97706; --white: #fff; --line: #dce9e8; --surface: #f7fbfa;
  --danger: #dc2626; --shadow: 0 18px 50px rgba(15, 118, 110, .11);
  --shadow-sm: 0 8px 25px rgba(18, 52, 59, .08); --radius: 22px; --radius-sm: 14px;
  --container: 1180px; --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: var(--font); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
body:not(.loaded) { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-tint { background: var(--surface); }
.section-dark { color: var(--white); background: var(--ink); }
.section-head { max-width: 690px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2, .page-hero h1 { margin: 8px 0 14px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.12; letter-spacing: -.045em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow { color: var(--primary); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-dark .eyebrow { color: #5eead4; }
.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; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

/* Loader and animation */
.page-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: #f7fffd; transition: opacity .45s, visibility .45s; }
.loaded .page-loader { opacity: 0; visibility: hidden; }
.loader-mark { width: 58px; height: 58px; animation: loader 1.1s ease-in-out infinite; }
@keyframes loader { 50% { transform: translateY(-7px) rotate(6deg); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* Header */
.offer-bar { min-height: 38px; padding: 7px 24px; display: flex; gap: 22px; align-items: center; justify-content: center; background: var(--ink); color: #dffbf5; font-size: .79rem; }
.offer-bar span { opacity: .7; }
.offer-bar strong { color: #fff; }
.offer-bar a { color: #fbbf24; font-weight: 800; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,233,232,.8); backdrop-filter: blur(15px); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; font-size: 1.33rem; letter-spacing: -.04em; }
.brand img { width: 42px; }
.brand > span > span { color: var(--primary); }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; color: #405b60; font-weight: 650; font-size: .94rem; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--primary); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-link, .cart-link, .menu-toggle { width: 44px; height: 44px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); background: #fff; border-radius: 50%; cursor: pointer; transition: .2s; }
.icon-link:hover, .cart-link:hover, .menu-toggle:hover { color: #fff; border-color: var(--primary); background: var(--primary); transform: translateY(-2px); }
.cart-badge { position: absolute; top: -6px; right: -4px; min-width: 19px; height: 19px; display: grid; place-items: center; padding: 0 4px; color: #fff; background: var(--accent); border: 2px solid #fff; border-radius: 10px; font-size: .63rem; font-weight: 800; }
.menu-toggle { display: none; }
.mobile-nav { display: none; padding: 0 20px 16px; }
.mobile-nav a { display: block; padding: 11px 14px; border-radius: 9px; font-weight: 650; }
.mobile-nav a[aria-current="page"] { color: var(--primary); background: var(--pale); }

/* Buttons and forms */
.btn { position: relative; overflow: hidden; min-height: 50px; padding: 13px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; cursor: pointer; transition: transform .22s, box-shadow .22s, background .22s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 10px 24px rgba(15,118,110,.24); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 14px 30px rgba(15,118,110,.3); }
.btn-accent { color: #2c2108; background: #fbbf24; }
.btn-outline { color: var(--primary); border-color: #9edbd5; background: #fff; }
.btn-ghost { color: var(--ink); background: var(--pale); }
.btn-danger { color: var(--danger); border-color: #fecaca; background: #fff; }
.btn-block { width: 100%; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.42); transform: scale(0); animation: ripple .65s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(2.5); opacity: 0; } }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 750; }
.field label span { color: var(--danger); }
.field input, .field select, .field textarea, .search-box input, .newsletter input { width: 100%; border: 1px solid #cbdedc; background: #fff; border-radius: 12px; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { min-height: 52px; padding: 0 15px; }
.field textarea { min-height: 120px; padding: 13px 15px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .search-box input:focus, .newsletter input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.1); }
.field .error { display: none; color: var(--danger); font-size: .78rem; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #f87171; }

/* Hero and page hero */
.hero { position: relative; overflow: hidden; padding: 75px 0 85px; background: linear-gradient(125deg, #f5fffd 0%, #effcf9 55%, #fffaf0 100%); }
.hero::before { content: ""; position: absolute; width: 410px; height: 410px; top: -230px; left: 38%; background: #99f6e4; opacity: .25; filter: blur(2px); border-radius: 50%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 46px; }
.hero-copy h1 { max-width: 640px; margin: 12px 0 20px; font-size: clamp(2.75rem, 5.5vw, 5rem); line-height: .99; letter-spacing: -.065em; }
.hero-copy h1 em { color: var(--primary); font-style: normal; }
.hero-copy > p { max-width: 580px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { margin: 30px 0 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: .9rem; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; margin-left: -8px; display: grid; place-items: center; border: 2px solid white; background: var(--mint); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }
.floating-card { position: absolute; padding: 12px 16px; display: flex; gap: 10px; align-items: center; background: rgba(255,255,255,.92); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8); border-radius: 14px; backdrop-filter: blur(10px); font-size: .82rem; font-weight: 750; }
.floating-card i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--primary); background: var(--mint); border-radius: 10px; font-style: normal; }
.fc-one { left: 1%; bottom: 13%; }.fc-two { right: -2%; top: 16%; }
.trust-strip { padding: 20px 0; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 5px 26px; display: flex; gap: 12px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }.trust-item strong { display: block; font-size: .94rem; }.trust-item span { color: var(--muted); font-size: .78rem; }.trust-icon { font-size: 1.45rem; }
.page-hero { padding: 72px 0; text-align: center; background: linear-gradient(130deg, var(--pale), #fff9ed); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 630px; margin: 0 auto; color: var(--muted); }
.breadcrumbs { display: flex; justify-content: center; gap: 9px; margin-bottom: 16px; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { color: var(--primary); }

/* Cards and home sections */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card { padding: 28px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .28s; }
.feature-card:hover { transform: translateY(-7px); border-color: #9ee4dc; box-shadow: var(--shadow); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; color: var(--primary); background: var(--pale); border-radius: 15px; font-size: 1.45rem; }
.feature-card h3 { margin: 18px 0 8px; font-size: 1.08rem; }.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.service-showcase { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.showcase-card { min-height: 280px; padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; border-radius: var(--radius); background: var(--primary); transition: transform .25s; }
.showcase-card:nth-child(2) { background: #155e75; }.showcase-card:nth-child(3) { background: #854d0e; }.showcase-card:nth-child(4) { background: #334155; }
.showcase-card::before { content: attr(data-icon); position: absolute; right: -7px; top: -30px; font-size: 9rem; opacity: .12; transform: rotate(10deg); }
.showcase-card:hover { transform: translateY(-6px); }.showcase-card h3 { margin: 0 0 8px; font-size: 1.35rem; }.showcase-card p { margin: 0; color: rgba(255,255,255,.75); font-size: .9rem; }.showcase-card a { margin-top: 18px; color: #fff; font-weight: 800; }
.pricing-preview { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center; }
.price-list { overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--radius); }
.price-row { padding: 17px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }.price-row:last-child { border: 0; }.price-row small { display: block; color: var(--muted); }.price-row strong { color: var(--primary); font-size: 1.06rem; }
.pickup-banner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; padding: 54px 62px; color: #fff; background: linear-gradient(110deg,#0f766e,#0e7490); border-radius: 30px; }.pickup-banner::after { content: "✦"; position: absolute; right: 6%; top: -60px; font-size: 14rem; opacity: .09; }.pickup-banner h2 { margin: 6px 0 12px; font-size: clamp(2rem,4vw,3rem); line-height: 1.08; }.pickup-banner p { color: #ccfbf1; }.pickup-art { text-align: center; font-size: 7rem; filter: drop-shadow(0 20px 30px rgba(0,0,0,.2)); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 34px; counter-reset: process; }.process-step { position: relative; text-align: center; }.process-step:not(:last-child)::after { content: ""; position: absolute; top: 34px; left: 68%; width: 64%; border-top: 2px dashed #a7d8d3; }.step-number { width: 68px; height: 68px; margin: 0 auto 19px; display: grid; place-items: center; color: #fff; background: var(--primary); border: 7px solid var(--mint); border-radius: 50%; font-weight: 850; }.process-step h3 { margin: 0 0 7px; }.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }.review-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }.stars { color: #f59e0b; letter-spacing: 2px; }.review-card blockquote { margin: 15px 0 21px; color: #405b60; }.reviewer { display: flex; align-items: center; gap: 11px; }.reviewer span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--primary); background: var(--mint); border-radius: 50%; font-weight: 800; }.reviewer small { display: block; color: var(--muted); }
.faq-list { max-width: 800px; margin: 0 auto; }.faq-item { border-bottom: 1px solid var(--line); }.faq-question { width: 100%; padding: 20px 4px; display: flex; justify-content: space-between; gap: 20px; border: 0; background: none; text-align: left; font-weight: 750; cursor: pointer; }.faq-question span:last-child { color: var(--primary); font-size: 1.35rem; transition: transform .25s; }.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }.faq-answer p { margin: 0; padding: 0 38px 20px 4px; }.faq-item.open .faq-answer { max-height: 220px; }.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.contact-cta { padding: 58px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #fff; background: var(--ink); border-radius: 28px; }.contact-cta h2 { margin: 0 0 8px; font-size: clamp(1.8rem,4vw,2.8rem); }.contact-cta p { margin: 0; color: #b9d2d4; }

/* Pricing */
.pricing-tools { position: sticky; z-index: 20; top: 78px; padding: 16px 0; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }.tools-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }.search-box { position: relative; width: min(100%,390px); }.search-box input { height: 48px; padding: 0 45px 0 16px; }.search-box span { position: absolute; right: 15px; top: 11px; }.filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }.filter-btn { padding: 10px 17px; border: 1px solid var(--line); background: #fff; border-radius: 999px; white-space: nowrap; font-weight: 700; cursor: pointer; }.filter-btn.active { color: #fff; border-color: var(--primary); background: var(--primary); }.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }.service-card { padding: 24px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); transition: .25s; }.service-card:hover { transform: translateY(-4px); border-color: #a8dfda; box-shadow: var(--shadow-sm); }.service-meta { display: flex; justify-content: space-between; gap: 12px; }.category-tag { padding: 5px 10px; color: var(--primary); background: var(--pale); border-radius: 999px; font-size: .72rem; font-weight: 800; }.service-card h3 { margin: 17px 0 2px; font-size: 1.05rem; }.service-card .unit { color: var(--muted); font-size: .82rem; }.service-price { margin: 15px 0 18px; color: var(--primary); font-size: 1.42rem; font-weight: 850; }.service-price small { color: var(--muted); font-size: .75rem; font-weight: 500; }.add-row { display: flex; gap: 10px; }.qty-control { height: 46px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }.qty-control button { width: 36px; height: 100%; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; }.qty-control span, .qty-control input { width: 28px; border: 0; text-align: center; background: transparent; font-weight: 800; }.add-row .btn { min-height: 46px; flex: 1; padding: 9px 15px; }.no-results { grid-column: 1/-1; padding: 65px; text-align: center; color: var(--muted); }

/* Cart and checkout */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 32px; align-items: start; }.cart-panel, .checkout-form, .summary-card, .content-card { border: 1px solid var(--line); background: #fff; border-radius: var(--radius); }.cart-panel { overflow: hidden; }.cart-head { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }.cart-head h2 { margin: 0; font-size: 1.15rem; }.text-button { padding: 4px; color: var(--danger); border: 0; background: none; font-weight: 700; cursor: pointer; }.cart-item { padding: 21px 24px; display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }.cart-item:last-child { border: 0; }.cart-item h3 { margin: 0 0 3px; font-size: 1rem; }.cart-item small { color: var(--muted); }.item-price { text-align: right; min-width: 90px; }.item-price strong { display: block; }.remove-item { padding: 2px; color: var(--danger); border: 0; background: none; font-size: .75rem; cursor: pointer; }.summary-card { position: sticky; top: 106px; padding: 25px; box-shadow: var(--shadow-sm); }.summary-card h2 { margin: 0 0 20px; font-size: 1.2rem; }.summary-line { padding: 8px 0; display: flex; justify-content: space-between; color: var(--muted); }.summary-line.total { margin-top: 10px; padding-top: 18px; color: var(--ink); border-top: 1px solid var(--line); font-size: 1.18rem; font-weight: 850; }.summary-card .btn { margin-top: 20px; }.safe-note { margin: 15px 0 0; color: var(--muted); text-align: center; font-size: .76rem; }.empty-state { padding: 72px 25px; text-align: center; }.empty-icon { width: 82px; height: 82px; margin: 0 auto 18px; display: grid; place-items: center; background: var(--pale); border-radius: 50%; font-size: 2.2rem; }.empty-state h2 { margin: 0 0 8px; }.empty-state p { margin: 0 0 22px; color: var(--muted); }
.checkout-form { padding: 30px; }.checkout-form h2 { margin: 0 0 7px; }.checkout-form > p { margin: 0 0 25px; color: var(--muted); }.checkout-items { max-height: 260px; overflow: auto; }.checkout-mini { padding: 10px 0; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); font-size: .85rem; }.whatsapp-note { margin: 20px 0 0; padding: 14px; color: #166534; background: #f0fdf4; border-radius: 11px; font-size: .8rem; }.success-screen { max-width: 700px; margin: 0 auto; padding: 65px 30px; text-align: center; border: 1px solid var(--line); background: #fff; border-radius: 28px; box-shadow: var(--shadow); }.success-check { width: 86px; height: 86px; margin: 0 auto 20px; display: grid; place-items: center; color: #fff; background: #22c55e; border-radius: 50%; font-size: 2.3rem; }.success-screen h1 { margin: 0 0 10px; }.success-screen p { color: var(--muted); }

/* Content and contact */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }.story-art { min-height: 440px; position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg,var(--mint),#ecfeff); border-radius: 30px; font-size: 10rem; }.story-art::after { content: "Quality, every time"; position: absolute; right: 22px; bottom: 22px; padding: 12px 17px; background: #fff; box-shadow: var(--shadow-sm); border-radius: 12px; font-size: .8rem; font-weight: 800; }.stats-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }.stat { padding: 16px; background: var(--pale); border-radius: 13px; }.stat strong { display: block; color: var(--primary); font-size: 1.5rem; }.stat span { color: var(--muted); font-size: .78rem; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }.contact-info { padding: 33px; color: #fff; background: var(--primary); border-radius: var(--radius); }.contact-info h2 { margin-top: 0; }.contact-info > p { color: #c8f5ed; }.contact-detail { margin-top: 25px; display: flex; gap: 13px; }.contact-detail i { width: 42px; height: 42px; display: grid; place-items: center; flex: none; color: var(--primary); background: #fff; border-radius: 12px; font-style: normal; }.contact-detail small { display: block; color: #b8eee5; }.contact-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }.contact-form h2 { margin-top: 0; }.map-wrap { height: 400px; overflow: hidden; border-radius: var(--radius); }.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.legal-wrap { max-width: 850px; margin: 0 auto; }.legal-wrap h2 { margin: 36px 0 8px; font-size: 1.4rem; }.legal-wrap p, .legal-wrap li { color: #4e686d; }.legal-meta { padding: 15px 18px; background: var(--pale); border-radius: 12px; }.content-card { padding: 35px; }

/* Local SEO service-area pages */
.area-search-wrap { position: sticky; z-index: 25; top: 78px; padding: 16px 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.area-search-wrap .container { display: flex; align-items: center; gap: 18px; }
.area-search-wrap input { min-width: 0; flex: 1; height: 52px; padding: 0 18px; border: 1px solid #cbdedc; border-radius: 999px; outline: none; }
.area-search-wrap input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.1); }
.area-search-wrap span { color: var(--muted); font-size: .82rem; font-weight: 750; white-space: nowrap; }
.area-directory { padding-top: 65px; }
.area-group { margin-bottom: 50px; }
.area-group h2 { margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 1.35rem; }
.area-directory-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.area-directory-grid a { min-height: 48px; padding: 11px 14px; display: flex; align-items: center; justify-content: space-between; gap: 9px; color: #37565b; border: 1px solid var(--line); background: #fff; border-radius: 11px; font-size: .84rem; transition: .2s; }
.area-directory-grid a span { color: var(--teal); }
.area-directory-grid a:hover { color: var(--primary); border-color: #93d8d1; background: var(--pale); transform: translateY(-2px); }
.area-no-results { padding: 60px 20px; text-align: center; }
.area-hero { overflow: hidden; padding: 72px 0; background: linear-gradient(125deg,#f3fffc,#effcfa 58%,#fff9ed); }
.area-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 55px; }
.area-hero .breadcrumbs { justify-content: flex-start; }
.area-hero h1 { margin: 10px 0 20px; font-size: clamp(2.5rem,5vw,4.5rem); line-height: 1.02; letter-spacing: -.055em; }
.area-hero p { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.area-visual img { width: 100%; animation: float 5s ease-in-out infinite; }
.local-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #3c6667; font-size: .82rem; font-weight: 700; }
.area-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.area-service-grid a { padding: 28px 24px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); transition: .25s; }
.area-service-grid a:hover { transform: translateY(-5px); border-color: #9edbd5; box-shadow: var(--shadow-sm); }
.area-service-grid a > span { font-size: 2rem; }.area-service-grid h3 { margin: 14px 0 6px; }.area-service-grid p { margin: 0; color: var(--muted); font-size: .87rem; }
.local-conversion { display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; align-items: center; }
.local-conversion h2 { margin: 8px 0 25px; font-size: clamp(2rem,4vw,3rem); line-height: 1.1; }
.local-steps { margin: 0; padding: 0; list-style: none; counter-reset: localstep; }
.local-steps li { position: relative; padding: 0 0 24px 54px; counter-increment: localstep; }
.local-steps li::before { content: counter(localstep); position: absolute; left: 0; top: 0; width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: var(--primary); border-radius: 50%; font-weight: 800; }
.local-steps li:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 38px; height: calc(100% - 38px); border-left: 2px dashed #a7d8d3; }
.local-steps b, .local-steps span { display: block; }.local-steps span { color: var(--muted); font-size: .9rem; }
.local-order-card { padding: 34px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); border-radius: 24px; }
.local-order-card h3 { margin: 8px 0; font-size: 1.45rem; }.local-order-card p { color: var(--muted); }.local-phone { margin-top: 14px; display: block; color: var(--primary); text-align: center; font-size: .84rem; font-weight: 750; }
.nearby-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 11px; }
.nearby-grid a { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: 12px; font-size: .86rem; }
.nearby-grid a span { color: var(--teal); }.nearby-grid a:hover { color: var(--primary); background: var(--pale); border-color: #9edbd5; }
.all-areas-link { margin-top: 28px; text-align: center; }
.mobile-order-bar { display: none; }

/* Footer */
.site-footer { padding-top: 0; color: #d4e4e5; background: #0b2d33; }.newsletter { padding: 42px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }.newsletter h2 { margin: 3px 0 0; color: #fff; font-size: 1.5rem; }.newsletter form { width: min(100%,430px); display: flex; gap: 9px; }.newsletter input { height: 50px; padding: 0 16px; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: #fff; }.newsletter input::placeholder { color: #9bb4b7; }.newsletter .eyebrow { color: #5eead4; }.footer-grid { padding: 60px 0 45px; display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: 50px; }.brand-light { color: #fff; }.brand-light > span > span { color: #5eead4; }.footer-grid h3 { margin: 5px 0 18px; color: #fff; font-size: .95rem; }.footer-grid p { color: #9eb5b8; font-size: .87rem; }.footer-grid > div > a:not(.brand) { margin-bottom: 9px; display: block; color: #b9ccce; font-size: .88rem; }.footer-grid > div > a:hover { color: #5eead4; }.socials { margin-top: 20px; display: flex; gap: 8px; }.socials a { width: 35px; height: 35px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-weight: 800; }.socials a:hover { background: var(--primary); }.open-pill { display: inline-flex; align-items: center; gap: 7px; font-size: .75rem; }.open-pill i { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 4px rgba(74,222,128,.12); }.footer-bottom { padding: 20px 0 25px; display: flex; justify-content: space-between; gap: 20px; color: #7f9da1; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }

/* Floating UI */
.floating-actions { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 9px; }.float-btn { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; border: 0; border-radius: 50%; box-shadow: 0 8px 25px rgba(18,52,59,.22); cursor: pointer; transition: .22s; }.float-btn:hover { transform: translateY(-3px) scale(1.03); }.float-call { background: #2563eb; }.float-whatsapp { background: #22c55e; font-weight: 900; }.back-top { opacity: 0; visibility: hidden; background: var(--ink); transform: translateY(10px); }.back-top.visible { opacity: 1; visibility: visible; transform: none; }.toast-region { position: fixed; z-index: 9998; right: 24px; top: 130px; display: grid; gap: 10px; }.toast { max-width: 340px; padding: 13px 18px; color: #fff; background: var(--ink); border-left: 4px solid var(--teal); box-shadow: var(--shadow); border-radius: 10px; opacity: 0; transform: translateX(30px); transition: .25s; }.toast.show { opacity: 1; transform: none; }.toast.error { border-color: #f87171; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }.menu-toggle { display: grid; }.mobile-nav.open { display: block; }.hero-grid, .pricing-preview, .split-grid, .area-hero-grid { grid-template-columns: 1fr; }.hero-copy { text-align: center; }.hero-copy > p, .hero-copy h1 { margin-inline: auto; }.hero-actions, .hero-proof { justify-content: center; }.hero-visual, .area-visual { max-width: 650px; margin: 0 auto; }.feature-grid, .service-showcase, .area-service-grid { grid-template-columns: repeat(2,1fr); }.services-grid { grid-template-columns: repeat(2,1fr); }.reviews-grid { grid-template-columns: 1fr 1fr; }.review-card:last-child { grid-column: 1/-1; }.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1/-1; }.contact-grid { grid-template-columns: 1fr; }.pricing-tools { top: 78px; }.area-directory-grid, .nearby-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }.section { padding: 72px 0; }.section-sm { padding: 55px 0; }.offer-bar span { display: none; }.offer-bar { gap: 10px; padding-inline: 12px; text-align: center; font-size: .7rem; }.nav-wrap { height: 68px; }.hide-mobile { display: none; }.hero { padding: 55px 0 65px; }.hero-grid { gap: 20px; }.hero-copy h1 { font-size: clamp(2.65rem,13vw,4.4rem); }.fc-two { right: 0; }.fc-one { left: 0; }.trust-grid { grid-template-columns: repeat(2,1fr); }.trust-item { border-bottom: 1px solid var(--line); }.trust-item:nth-child(2) { border-right: 0; }.trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }.feature-grid, .service-showcase, .services-grid, .reviews-grid { grid-template-columns: 1fr; }.review-card:last-child { grid-column: auto; }.pickup-banner { grid-template-columns: 1fr; padding: 38px 28px; text-align: center; }.pickup-art { display: none; }.process-grid { grid-template-columns: 1fr 1fr; }.process-step::after { display: none; }.contact-cta, .newsletter { align-items: stretch; flex-direction: column; text-align: center; }.contact-cta { padding: 38px 25px; }.newsletter form { margin: 0 auto; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }.footer-bottom { flex-direction: column; text-align: center; }.tools-inner { align-items: stretch; flex-direction: column; }.search-box { width: 100%; }.pricing-tools { position: static; }.cart-layout, .checkout-layout { grid-template-columns: 1fr; }.summary-card { position: static; }.cart-item { grid-template-columns: 1fr auto; }.cart-item .qty-control { grid-row: 2; }.item-price { grid-column: 2; grid-row: 1/3; }.form-grid { grid-template-columns: 1fr; }.field.full { grid-column: auto; }.stats-grid { grid-template-columns: 1fr; }.area-search-wrap { top: 68px; }.area-directory-grid, .nearby-grid { grid-template-columns: repeat(2,1fr); }.local-conversion { grid-template-columns: 1fr; }.area-hero { padding: 54px 0; }.area-hero h1 { font-size: clamp(2.4rem,11vw,4rem); }.area-hero .breadcrumbs { justify-content: center; }.area-hero-grid > div:first-child { text-align: center; }.area-hero-grid .hero-actions, .local-trust { justify-content: center; }
}
@media (max-width: 500px) {
  .brand { font-size: 1.12rem; }.brand img { width: 36px; }.nav-actions { gap: 6px; }.icon-link, .cart-link, .menu-toggle { width: 40px; height: 40px; }.hero-actions .btn { width: 100%; }.hero-visual { margin-top: 15px; }.floating-card { padding: 9px 11px; font-size: .7rem; }.trust-item { padding: 12px 8px; }.feature-grid { gap: 13px; }.process-grid { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }.newsletter form { flex-direction: column; }.cart-item { padding: 18px 16px; }.checkout-form, .content-card { padding: 22px 18px; }.page-hero { padding: 55px 0; }.floating-actions { right: 13px; bottom: 74px; }.float-btn { width: 44px; height: 44px; }.toast-region { left: 14px; right: 14px; top: 112px; }.toast { max-width: none; }.area-directory-grid, .nearby-grid, .area-service-grid { grid-template-columns: 1fr; }.area-search-wrap .container { align-items: stretch; flex-direction: column; gap: 8px; }.area-search-wrap span { text-align: center; }.mobile-order-bar { position: fixed; z-index: 950; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 9px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(18,52,59,.1); }.mobile-order-bar a { padding: 11px 8px; color: #fff; background: var(--primary); text-align: center; font-size: .78rem; font-weight: 800; }.mobile-order-bar a:first-child { background: var(--ink); border-radius: 999px 0 0 999px; }.mobile-order-bar a:last-child { background: #22c55e; border-radius: 0 999px 999px 0; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
