/* ==========================================================================
   NovaCurat — Curățenie profesională
   Design system: Soft UI Evolution · Cyan fresh + Verde curat
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-700: #155e75;
  --secondary: #22d3ee;
  --cta: #22c55e;
  --cta-dark: #16a34a;
  --bg: #ecfeff;
  --bg-soft: #f4feff;
  --surface: #ffffff;
  --text: #0c4a5e;
  --text-soft: #3f6f7e;
  --muted: #5b7c88;
  --border: #d3eef3;
  --shadow-sm: 0 2px 8px rgba(8, 145, 178, .08);
  --shadow-md: 0 10px 30px rgba(8, 145, 178, .12);
  --shadow-lg: 0 24px 60px rgba(8, 145, 178, .18);
  --shadow-cta: 0 12px 28px rgba(34, 197, 94, .35);
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Lexend', sans-serif; line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* ---------- Animated background ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; animation: float 18s var(--ease) infinite; }
.orb.o1 { width: 460px; height: 460px; background: radial-gradient(circle, #67e8f9, transparent 70%); top: -120px; left: -100px; }
.orb.o2 { width: 520px; height: 520px; background: radial-gradient(circle, #bbf7d0, transparent 70%); top: 40%; right: -160px; animation-delay: -6s; }
.orb.o3 { width: 380px; height: 380px; background: radial-gradient(circle, #a5f3fc, transparent 70%); bottom: -120px; left: 30%; animation-delay: -11s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 33% { transform: translate(40px,-30px) scale(1.08);} 66% { transform: translate(-30px,25px) scale(.95);} }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 16px; padding: 14px 26px; border-radius: 100px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; will-change: transform; }
.btn svg { width: 20px; height: 20px; }
.btn-cta { background: var(--cta); color: #fff; box-shadow: var(--shadow-cta); position: relative; overflow: hidden; }
.btn-cta::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(115deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); animation: btnshine 4.5s ease-in-out infinite; }
@keyframes btnshine { 0%, 55% { left: -120%; } 80%, 100% { left: 150%; } }
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(34,197,94,.45); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 28px rgba(8,145,178,.32); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--primary-700); border: 1.5px solid var(--border); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--primary-700); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Header ---------- */
.header { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; transition: top .3s var(--ease); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 14px 10px 16px; border-radius: 100px; background: rgba(255,255,255,.72); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.6); box-shadow: var(--shadow-sm); transition: box-shadow .3s, background .3s; }
.header.scrolled .nav { box-shadow: var(--shadow-md); background: rgba(255,255,255,.92); }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.02em; }
.brand .logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 16px rgba(8,145,178,.22); flex-shrink: 0; background: #fff; }
.brand b { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-soft); padding: 9px 13px; border-radius: 100px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--primary-700); background: rgba(8,145,178,.08); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 14.5px; color: var(--primary-700); padding: 10px 12px; border-radius: 100px; transition: background .2s; }
.nav-phone:hover { background: rgba(8,145,178,.08); }
.nav-phone svg { width: 18px; height: 18px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(8,145,178,.1); place-items: center; }
.burger svg { width: 24px; height: 24px; color: var(--primary-700); }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(34,197,94,.12); color: var(--cta-dark); font-weight: 600; font-size: 14.5px; padding: 8px 16px; border-radius: 100px; font-family: 'Lexend',sans-serif; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.5);} 70%{box-shadow:0 0 0 12px rgba(34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin: 22px 0 18px; font-weight: 800; }
.hero h1 .grad { background: linear-gradient(120deg, var(--primary), var(--secondary), var(--cta), var(--primary)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradshift 6s ease infinite; }
@keyframes gradshift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: var(--text-soft); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-mini { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-mini .mi { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--text-soft); font-weight: 500; }
.hero-mini .mi svg { width: 22px; height: 22px; color: var(--cta); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(160deg, #0891b2, #155e75); }
.hero-card .hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-card .shine { position: absolute; inset: 0; z-index: 2; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%); transform: translateX(-100%); animation: shine 5s ease-in-out infinite; pointer-events: none; }
@keyframes shine { 0%, 60% { transform: translateX(-120%);} 85%, 100% { transform: translateX(120%);} }
.float-card { position: absolute; z-index: 3; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; animation: bob 5s var(--ease) infinite; }
.float-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card .t { font-family: 'Lexend',sans-serif; font-weight: 700; font-size: 17px; line-height: 1.1; }
.float-card .s { font-size: 12.5px; color: var(--muted); }
.fc-1 { top: 26px; left: -22px; }
.fc-1 .ic { background: rgba(34,197,94,.15); color: var(--cta-dark); }
.fc-2 { bottom: 30px; right: -18px; animation-delay: -2.5s; }
.fc-2 .ic { background: rgba(8,145,178,.13); color: var(--primary); }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* ---------- Marquee strip ---------- */
.strip { background: linear-gradient(120deg, var(--primary-700), var(--primary)); padding: 16px 0; overflow: hidden; }
.marquee { display: flex; gap: 50px; white-space: nowrap; animation: scrollx 26s linear infinite; width: max-content; }
.marquee span { color: rgba(255,255,255,.92); font-family: 'Lexend',sans-serif; font-weight: 500; font-size: 16px; display: inline-flex; align-items: center; gap: 14px; }
.marquee span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Section heading ---------- */
.head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); background: rgba(8,145,178,.1); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.head p { color: var(--text-soft); font-size: 18px; }

/* ---------- Intro ---------- */
.intro { padding-bottom: 0; }
.intro-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px,4vw,48px); box-shadow: var(--shadow-md); text-align: center; max-width: 960px; margin: 0 auto; position: relative; overflow: hidden; }
.intro-card::before { content:""; position:absolute; top:0; left:0; width:6px; height:100%; background: linear-gradient(var(--primary), var(--secondary)); }
.intro-card p { font-size: clamp(16px,2vw,19px); color: var(--text-soft); line-height: 1.8; }
.intro-card b { color: var(--primary-700); }

/* ---------- Offers banner ---------- */
.offers { background: linear-gradient(120deg, var(--primary-700), var(--primary)); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.offers-deco { position: absolute; top: -60%; right: -5%; width: 50%; height: 220%; background: radial-gradient(circle, rgba(34,211,238,.4), transparent 60%); pointer-events: none; }
.offers-body { position: relative; z-index: 1; }
.offers-tag { display: inline-block; font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.18); padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; }
.offers h2 { color: #fff; font-size: clamp(22px,3vw,32px); margin-bottom: 8px; }
.offers p { color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.offers .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { background: var(--surface); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .35s var(--ease), box-shadow .35s var(--ease); position: relative; overflow: hidden; }
.svc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc:hover::before { transform: scaleX(1); }
.svc .ic { width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, rgba(8,145,178,.12), rgba(34,211,238,.18)); display: grid; place-items: center; margin-bottom: 20px; transition: transform .35s var(--ease); }
.svc:hover .ic { transform: scale(1.08) rotate(-4deg); }
.svc .ic svg { width: 30px; height: 30px; color: var(--primary); animation: iconfloat 4s ease-in-out infinite; }
.svc:nth-child(2n) .ic svg { animation-delay: -1.3s; }
.svc:nth-child(3n) .ic svg { animation-delay: -2.6s; }
@keyframes iconfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.svc h3 { font-size: 20px; margin-bottom: 10px; }
.svc p { color: var(--text-soft); font-size: 15.5px; }

/* ---------- Before/After gallery ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 940px; margin: 0 auto; }
.ba-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.ba-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ba-photo { overflow: hidden; background: #e6f6f9; }
.ba-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.ba-item:hover .ba-photo img { transform: scale(1.05); }
.ba-item figcaption { padding: 20px 24px 24px; }
.ba-item h3 { font-size: 20px; margin-bottom: 6px; }
.ba-item p { color: var(--text-soft); font-size: 15px; }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(135deg, var(--primary-700), var(--primary)); border-radius: var(--radius-lg); padding: clamp(36px,5vw,56px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.stats::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(34,211,238,.4), transparent 50%); }
.stat { text-align: center; position: relative; z-index: 1; }
.stat .n { font-family: 'Lexend',sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 54px); color: #fff; line-height: 1; }
.stat .l { color: rgba(255,255,255,.82); font-size: 15px; margin-top: 8px; font-weight: 500; }

/* ---------- Equipment ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.equip { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.equip:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.equip .ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-700)); display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 20px rgba(8,145,178,.3); }
.equip .ic svg { width: 28px; height: 28px; color: #fff; }
.equip h3 { font-size: 19px; margin-bottom: 16px; }
.equip ul { display: flex; flex-direction: column; gap: 11px; }
.equip li { position: relative; padding-left: 28px; color: var(--text-soft); font-size: 15.5px; }
.equip li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: rgba(34,197,94,.15); }
.equip li::after { content: ""; position: absolute; left: 5px; top: 11px; width: 5px; height: 8px; border: solid var(--cta-dark); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Advantages ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.adv { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; transition: transform .3s var(--ease), box-shadow .3s; }
.adv:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.adv .ic { width: 50px; height: 50px; border-radius: 15px; background: var(--cta); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 8px 18px rgba(34,197,94,.3); }
.adv .ic svg { width: 25px; height: 25px; color: #fff; }
.adv p { font-size: 16px; color: var(--text); font-weight: 500; line-height: 1.5; }
.adv.guarantee { grid-column: span 3; background: linear-gradient(120deg, rgba(34,197,94,.1), rgba(8,145,178,.08)); border-color: rgba(34,197,94,.3); align-items: center; justify-content: center; text-align: left; }
.adv.guarantee p { font-size: 18px; }
.adv.guarantee b { color: var(--cta-dark); }

/* ---------- Zones ---------- */
.zones { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 760px; margin: 0 auto; }
.zone { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); padding: 13px 22px; border-radius: 100px; font-family: 'Lexend',sans-serif; font-weight: 500; font-size: 16px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, color .25s; }
.zone svg { width: 20px; height: 20px; color: var(--primary); }
.zone:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--primary-700); }

/* ---------- Testimonials ---------- */
.tslider { position: relative; max-width: 820px; margin: 0 auto; overflow: hidden; padding: 6px; }
.ttrack { display: flex; transition: transform .6s var(--ease); }
.tslide { min-width: 100%; padding: 0 8px; }
.tcard { background: var(--surface); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); text-align: center; }
.tcard .stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; color: #fbbf24; }
.tcard .stars svg { width: 22px; height: 22px; }
.tcard p { font-size: 19px; color: var(--text); line-height: 1.6; margin-bottom: 24px; font-weight: 400; }
.tcard .who { display: flex; align-items: center; gap: 14px; justify-content: center; }
.tcard .av { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: 'Lexend',sans-serif; font-weight: 700; font-size: 18px; color: #fff; background: linear-gradient(135deg,var(--primary),var(--secondary)); }
.tcard .nm { font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 17px; text-align: left; }
.tcard .rl { font-size: 14px; color: var(--muted); text-align: left; }
.tnav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.tnav button { width: 50px; height: 50px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, background .2s; }
.tnav button:hover { background: var(--primary); box-shadow: var(--shadow-md); transform: scale(1.08); }
.tnav button:hover svg { color: #fff; }
.tnav button svg { width: 22px; height: 22px; color: var(--primary); transition: color .2s; }
.tdots { display: flex; gap: 9px; flex-wrap: wrap; max-width: 280px; justify-content: center; }
.tdots .d { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: width .3s, background .3s; cursor: pointer; }
.tdots .d.on { width: 28px; border-radius: 100px; background: var(--primary); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--cta-dark), var(--cta)); border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; top:-50%; right:-10%; width:60%; height:200%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); }
.cta-band h2 { color: #fff; font-size: clamp(28px,4vw,44px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 19px; max-width: 600px; margin: 0 auto 30px; position: relative; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .btn-white { color: var(--cta-dark); }
.cta-band .btn-outline { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.24); transform: translateY(-3px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.cinfo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cinfo .ic { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg,rgba(8,145,178,.12),rgba(34,211,238,.18)); display: grid; place-items: center; flex-shrink: 0; }
.cinfo .ic svg { width: 24px; height: 24px; color: var(--primary); }
.cinfo .k { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.cinfo .v { font-family: 'Lexend',sans-serif; font-weight: 600; font-size: 17px; color: var(--text); }
.cinfo a.v:hover { color: var(--primary); }
.contact-actions { display: flex; gap: 12px; margin-top: 6px; }
.contact-actions .btn { flex: 1; justify-content: center; }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); min-height: 360px; }
.map-card iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(160deg, #0c4a5e, #083344); color: rgba(255,255,255,.78); padding: 64px 0 26px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b { color: var(--secondary); }
.footer .brand .logo-img { box-shadow: 0 4px 14px rgba(0,0,0,.3); }
.footer .about { font-size: 15px; max-width: 320px; }
.footer h5 { color: #fff; font-family: 'Lexend',sans-serif; font-size: 16px; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 15px; transition: color .2s, padding-left .2s; }
.footer ul a:hover { color: var(--secondary); padding-left: 5px; }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer .socials a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer .socials a svg { width: 21px; height: 21px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 14px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 45; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: transform .25s var(--ease); animation: bob 4s var(--ease) infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::before { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid #25d366; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.6);opacity:0;} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px) scale(.97); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .equip-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .adv.guarantee { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .offers { justify-content: center; text-align: center; }
  .offers-body { flex: 1 1 100%; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: grid; }
  .nav { padding: 8px 8px 8px 14px; }
  .nav-cta .btn-cta { padding: 9px 15px; font-size: 13.5px; white-space: nowrap; }
  .mobile-menu { display: block; position: fixed; top: 80px; left: 14px; right: 14px; background: rgba(255,255,255,.97); backdrop-filter: blur(18px); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 14px; z-index: 49; opacity: 0; transform: translateY(-14px) scale(.98); pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 13px 18px; border-radius: 14px; font-family: 'Lexend',sans-serif; font-weight: 500; color: var(--text); transition: background .2s; }
  .mobile-menu a:hover { background: rgba(8,145,178,.08); }
  .mobile-menu .mm-cta { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
  .mobile-menu .btn { width: 100%; justify-content: center; }
  .ba-grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-cta .btn-cta { padding: 8px 14px; font-size: 13px; }
  .brand { font-size: 18px; }
  .brand .logo-img { width: 40px; height: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv.guarantee { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 40px; }
  .hero-mini { gap: 14px; }
  .tcard { padding: 26px 20px; }
  .tcard p { font-size: 17px; }
  .float-card { padding: 11px 14px; }
  .fc-1 { left: -6px; }
  .fc-2 { right: -6px; }
  .stat .n { font-size: 40px; }
  .contact-actions { flex-direction: column; }
}

/* ---------- Extra mobile animation ---------- */
@media (max-width: 760px) {
  .hero-card { animation: heroIn 1s var(--ease) both; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(40px) scale(.94); } to { opacity: 1; transform: none; } }
  .hero-badge { animation: badgeIn .8s var(--ease) both; }
  @keyframes badgeIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }
  .float-card { box-shadow: var(--shadow-lg); }
  .zone { animation: zonePop .5s var(--ease) both; }
  .zones .zone:nth-child(1){animation-delay:.05s} .zones .zone:nth-child(2){animation-delay:.12s}
  .zones .zone:nth-child(3){animation-delay:.19s} .zones .zone:nth-child(4){animation-delay:.26s}
  .zones .zone:nth-child(5){animation-delay:.33s} .zones .zone:nth-child(6){animation-delay:.40s}
  @keyframes zonePop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }
  .svc:active, .equip:active, .adv:active, .ba-item:active { transform: scale(.98); transition: transform .15s; }
  .marquee { animation-duration: 18s; }
}

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