/* =========================================================
   MV JunkBots — 2026 refresh
   Brand palette pulled from the original site:
   primary #05A1B1 (teal) · secondary #F4A604 (amber)
   dark    #1d2746 / #002359 · ink #232323 · body #666
   ========================================================= */

:root {
  /* brand */
  --teal:        #05A1B1;
  --teal-dark:   #048391;
  --teal-deep:   #036774;
  --teal-tint:   #D2E8E9;
  --teal-wash:   #eef7f8;
  --amber:       #F4A604;
  --amber-dark:  #d68f00;
  --navy:        #1d2746;
  --navy-deep:   #14203a;
  --ink:         #1c2430;
  --body:        #5a6573;
  --muted:       #8a94a3;
  --line:        #e7ebee;
  --bg:          #ffffff;
  --bg-soft:     #f5f9fa;
  --bg-gray:     #eef0f6;

  --radius:      22px;
  --radius-sm:   14px;
  --radius-lg:   30px;
  --shadow-sm:   0 2px 10px rgba(20,32,58,.06);
  --shadow:      0 18px 50px -20px rgba(5,161,177,.28);
  --shadow-lg:   0 30px 70px -25px rgba(20,32,58,.35);
  --grad-teal:   linear-gradient(135deg, #05A1B1 0%, #0bbfc9 60%, #20d6c4 100%);
  --grad-dark:   linear-gradient(150deg, #1d2746 0%, #0c3a4e 70%, #036774 100%);

  --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-head:   'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --maxw:        1180px;
  --ease:        cubic-bezier(.4,.14,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  --c: var(--teal);
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad-teal); color: #fff; box-shadow: 0 12px 26px -10px rgba(5,161,177,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(5,161,177,.75); }
.btn-secondary { background: var(--amber); color: #3a2a00; box-shadow: 0 12px 26px -10px rgba(244,166,4,.7); }
.btn-secondary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--teal-deep); border: 1.5px solid var(--teal-tint); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--teal); background: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.04rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- promo bar ---------- */
.promo-bar { position: relative; z-index: 101; background: var(--navy); color: #fff; }
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: .62rem 52px; }
.promo-text { margin: 0; display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .94rem; }
.promo-tag {
  background: var(--amber); color: #3a2a00; font-family: var(--font-head); font-weight: 800;
  font-size: .76rem; letter-spacing: .05em; padding: .24rem .62rem; border-radius: 999px;
  animation: pulseTag 2.2s ease-in-out infinite;
}
@keyframes pulseTag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,166,4,.55); }
  50% { box-shadow: 0 0 0 7px rgba(244,166,4,0); }
}
.promo-cta { color: var(--amber); font-weight: 700; font-family: var(--font-head); font-size: .92rem; white-space: nowrap; }
.promo-cta:hover { text-decoration: underline; }
.promo-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: rgba(255,255,255,.6); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 4px; }
.promo-close:hover { color: #fff; }
.promo-bar.hidden { display: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { box-shadow: 0 6px 30px -16px rgba(20,32,58,.3); border-color: var(--line); background: rgba(255,255,255,.92); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 600; font-size: 1.28rem; color: var(--navy); letter-spacing: -.02em; }
.brand strong { color: var(--teal); font-weight: 800; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-logo-footer { height: 66px; margin-bottom: .2rem; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--grad-teal); color: #fff; border-radius: 12px;
  box-shadow: 0 8px 18px -8px rgba(5,161,177,.8);
}
.main-nav { display: flex; gap: .3rem; margin-left: auto; }
.main-nav a { font-weight: 600; font-size: .96rem; color: var(--ink); padding: .5rem .8rem; border-radius: 10px; transition: color .2s, background .2s; }
.main-nav a:hover { color: var(--teal-deep); background: var(--teal-wash); }
.header-actions { display: flex; align-items: center; gap: .6rem; }
.lang-toggle {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--teal-deep);
  background: var(--teal-wash); border: 1px solid var(--teal-tint); border-radius: 999px;
  width: 42px; height: 36px; cursor: pointer; transition: background .2s;
}
.lang-toggle:hover { background: var(--teal-tint); }
.lang-es { display: none; }
.btn-phone {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-family: var(--font-head);
  color: var(--navy); font-size: .95rem; padding: .5rem .7rem; border-radius: 10px;
}
.btn-phone:hover { color: var(--teal-deep); }
.btn-phone svg { color: var(--teal); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; right: -150px; width: 620px; height: 620px; pointer-events: none;
  background: radial-gradient(circle, rgba(5,161,177,.18), transparent 62%);
}
.hero::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, transparent, var(--bg-soft)); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(1rem,4vw,3rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--teal-deep);
  background: var(--teal-wash); border: 1px solid var(--teal-tint); padding: .42rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(244,166,4,.2); }
.hero-copy h1 { color: var(--navy); }
.hero-copy h1 { background: none; }
.hero-copy p { font-size: 1.12rem; max-width: 33ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.8rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--teal-deep); font-weight: 800; }
.hero-trust span { font-size: .86rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-card {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-dark); box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-fallback { display: none; }
.hero-photo.is-placeholder { display: grid; place-items: center; }
.hero-photo.is-placeholder .photo-fallback {
  display: grid; place-items: center; gap: .6rem; color: rgba(255,255,255,.65);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; text-align: center;
}
.hero-badge {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.96); border-radius: 16px; padding: .7rem .95rem;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(8px);
}
.hero-badge .hb-icon { font-size: 1.4rem; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink); }
.hero-badge small { color: var(--muted); font-size: .8rem; }
.hero-badge-a { top: 22px; left: -26px; animation: float 5s ease-in-out infinite; }
.hero-badge-b { bottom: 30px; right: -22px; animation: float 6s ease-in-out infinite .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* trust bar */
.trust-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.2rem;
  margin: clamp(1.5rem,4vw,2.5rem) 0 0; padding: 1.4rem 1.2rem; border-top: 1px solid var(--line);
}
.trust-bbb { line-height: 0; flex-shrink: 0; transition: transform .2s var(--ease); }
.trust-bbb:hover { transform: translateY(-3px); }
.trust-bbb img { height: 62px; width: auto; display: block; }
.trust-list { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; justify-content: center; list-style: none; margin: 0; padding: 0; }
.trust-list li { display: flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--ink); font-size: .94rem; }
.tb-ic { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-wash); color: var(--teal-deep); font-size: .75rem; font-weight: 800; }

/* ---------- section heads ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem,4vw,3.4rem); }
.kicker { display: inline-block; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: .7rem; }
.kicker-light { color: var(--amber); }
.section-head p { font-size: 1.08rem; color: var(--body); margin: 0; }

/* ---------- benefits ---------- */
.benefits { padding-top: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-tint); }
.b-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--teal-wash); color: var(--teal-deep); margin-bottom: 1.1rem; }
.benefit h3 { margin-bottom: .4rem; }
.benefit p { margin: 0; font-size: .98rem; }

/* ---------- services ---------- */
.services { background: var(--bg-soft); }
/* featured free service */
.service-featured {
  position: relative; display: flex; align-items: center; gap: 1.6rem;
  background: var(--grad-dark); color: #fff; border-radius: var(--radius);
  padding: 2.1rem 2.3rem; margin-bottom: 1.4rem; overflow: hidden; box-shadow: var(--shadow-lg);
}
.service-featured::before { content: ""; position: absolute; top: -80px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,166,4,.22), transparent 64%); pointer-events: none; }
.featured-ribbon {
  position: absolute; top: 20px; right: -40px; transform: rotate(45deg);
  background: var(--amber); color: #3a2a00; font-family: var(--font-head); font-weight: 800;
  font-size: .82rem; letter-spacing: .05em; padding: .35rem 3rem; box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.sf-icon { position: relative; width: 76px; height: 76px; border-radius: 20px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--amber); flex-shrink: 0; }
.sf-body { position: relative; }
.sf-kicker { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: .35rem; }
.sf-body h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.7rem); margin-bottom: .45rem; }
.sf-body p { color: rgba(255,255,255,.85); font-size: .98rem; margin-bottom: 1.2rem; max-width: 66ch; }
.sf-body p strong { color: var(--amber); }
.sf-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-teal); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-tint); }
.service-card:hover::after { transform: scaleX(1); }
.s-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--grad-teal); color: #fff; margin-bottom: 1.1rem; box-shadow: 0 10px 22px -10px rgba(5,161,177,.8); }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .96rem; margin-bottom: 1rem; }
.s-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.s-list li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: var(--ink); font-weight: 500; }
.s-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

/* ---------- how it works ---------- */
.how { background: var(--bg); }
.steps { display: flex; align-items: stretch; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step { flex: 1; min-width: 240px; max-width: 320px; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem; }
.step-num { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; box-shadow: 0 12px 24px -12px rgba(29,39,70,.9); }
.step h3 { margin-bottom: .4rem; }
.step p { margin: 0; font-size: .95rem; }
.step-arrow { align-self: center; color: var(--teal); font-size: 1.8rem; font-weight: 700; }

/* ---------- what we take ---------- */
.take { background: var(--bg-soft); }
.take-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; }
.take-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.take-card h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.3rem; margin-bottom: 1.2rem; }
.take-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.take-yes ul { grid-template-columns: 1fr 1fr; }
.take-card li { position: relative; padding-left: 1.6rem; font-weight: 500; color: var(--ink); font-size: .95rem; }
.ty-ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: var(--teal-wash); color: var(--teal-deep); font-weight: 800; }
.tn-ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: #fdecea; color: #d8482f; font-weight: 800; }
.take-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.take-no li::before { content: "✕"; position: absolute; left: 0; color: #d8482f; font-weight: 800; }
.take-note { margin: 1.3rem 0 0; padding-top: 1.1rem; border-top: 1px dashed var(--line); font-size: .9rem; color: var(--muted); }

/* ---------- service area ---------- */
.area { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.area-copy p { max-width: 42ch; margin-bottom: 1.6rem; }
.area-cities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: .7rem; }
.area-cities li { background: var(--teal-wash); border: 1px solid var(--teal-tint); color: var(--teal-deep); font-weight: 600; font-size: .88rem; text-align: center; padding: .7rem .4rem; border-radius: 12px; transition: transform .2s, background .2s; }
.area-cities li:hover { transform: translateY(-3px); background: var(--teal-tint); }

/* ---------- reviews ---------- */
.reviews { background: var(--bg-soft); }
.stars-row { color: var(--amber); font-size: 1.4rem; letter-spacing: 2px; margin-top: .6rem; }
.stars-num { color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-left: .4rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.r-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.2rem; font-size: 1rem; color: var(--ink); line-height: 1.6; }
.review figcaption { margin-top: auto; }
.review figcaption strong { display: block; font-family: var(--font-head); color: var(--navy); }
.review figcaption span { color: var(--muted); font-size: .88rem; }
.reviews-note { text-align: center; color: var(--muted); font-size: .82rem; margin: 1.8rem 0 0; }
.rev-carousel { position: relative; }
.rev-track {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  padding: .5rem 4px 1.4rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.rev-track::-webkit-scrollbar { height: 6px; }
.rev-track::-webkit-scrollbar-thumb { background: var(--teal-tint); border-radius: 999px; }
.rev-track .review { flex: 0 0 auto; width: 380px; max-width: 85vw; scroll-snap-align: center; margin: 0; }
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer;
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: transform .2s, color .2s;
}
.rev-arrow:hover { color: var(--teal-deep); transform: translateY(-50%) scale(1.08); }
.rev-prev { left: -10px; }
.rev-next { right: -10px; }

/* ---------- gallery ---------- */
.gallery { background: var(--bg); }
.gal-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2rem; }
.gal-chip {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 999px;
  padding: .55rem 1.1rem; cursor: pointer; transition: all .2s var(--ease);
}
.gal-chip:hover { border-color: var(--teal-tint); color: var(--teal-deep); }
.gal-chip.active { background: var(--grad-teal); border-color: transparent; color: #fff; box-shadow: 0 10px 22px -10px rgba(5,161,177,.8); }
.gal-carousel { position: relative; }
.gal-grid {
  display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  padding: .5rem 4px 1.4rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.gal-grid::-webkit-scrollbar { height: 6px; }
.gal-grid::-webkit-scrollbar-thumb { background: var(--teal-tint); border-radius: 999px; }
.gal-item {
  position: relative; display: block; flex: 0 0 auto; width: 340px; max-width: 80vw; aspect-ratio: 4/3;
  margin: 0; padding: 0; border: 0; scroll-snap-align: center;
  border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer;
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: transform .2s, color .2s;
}
.gal-arrow:hover { color: var(--teal-deep); transform: translateY(-50%) scale(1.08); }
.gal-prev { left: -10px; }
.gal-next { right: -10px; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,58,.4), transparent 45%); opacity: 0; transition: opacity .3s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover::after { opacity: 1; }
.gal-badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 2; font-family: var(--font-head); font-weight: 700;
  font-size: .76rem; color: #fff; background: rgba(5,161,177,.92); padding: .3rem .7rem; border-radius: 999px;
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
}
.gal-item:hover .gal-badge { opacity: 1; transform: none; }
.gal-item.hide { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(12,18,34,.92); backdrop-filter: blur(6px); padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: min(92vw, 1000px); max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lb-figure img { max-width: 100%; max-height: 80vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lb-figure figcaption { color: rgba(255,255,255,.85); font-size: .92rem; text-align: center; max-width: 60ch; }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; line-height: 1;
  transition: background .2s, transform .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 20px; right: 22px; font-size: 1.8rem; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- tiktok carousel ---------- */
.tiktok { background: var(--bg-soft); }
.tk-carousel { position: relative; }
.tk-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  padding: .5rem 4px 1.4rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.tk-track::-webkit-scrollbar { height: 6px; }
.tk-track::-webkit-scrollbar-thumb { background: var(--teal-tint); border-radius: 999px; }
.tk-slide { flex: 0 0 auto; scroll-snap-align: center; }
.tk-track .tiktok-embed { width: 325px; max-width: 86vw; }
.tk-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem;
  aspect-ratio: 9/16; background: var(--grad-dark); border-radius: 20px; color: #fff; text-align: center;
  box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s;
}
.tk-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(5,161,177,.35), transparent 60%); }
.tk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tk-card > * { position: relative; }
.tk-logo { color: var(--teal-tint); }
.tk-play { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.tk-handle { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.tk-watch { font-size: .85rem; color: rgba(255,255,255,.7); }
.tk-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer;
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: transform .2s, color .2s;
}
.tk-arrow:hover { color: var(--teal-deep); transform: translateY(-50%) scale(1.08); }
.tk-prev { left: -10px; }
.tk-next { right: -10px; }
.tk-cta { text-align: center; margin-top: 1.4rem; }
.tiktok-embed { margin: 0 !important; }

/* ---------- faq ---------- */
.faq { background: var(--bg); }
.faq-wrap { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--teal-tint); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.4rem; font-family: var(--font-head); font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 1.5rem; font-weight: 400; transition: transform .25s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 1.4rem 1.2rem; font-size: .96rem; }

/* ---------- contact ---------- */
.contact { background: var(--grad-dark); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; top: -120px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(244,166,4,.16), transparent 62%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy p { max-width: 40ch; }
.contact-list { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; font-size: 1.05rem; color: #fff; font-weight: 600; }
.contact-list a { transition: color .2s; }
.contact-list a:hover { color: var(--amber); }
.ci-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--teal-tint); flex-shrink: 0; }
.social-row { display: flex; gap: .7rem; }
.social-row a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; transition: background .2s, transform .2s; }
.social-row a:hover { background: var(--teal); transform: translateY(-3px); }

.call-card {
  background: #fff; border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow-lg);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.call-eyebrow { font-family: var(--font-head); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); }
.call-label { color: var(--body); font-size: 1.02rem; max-width: 24ch; }
.call-number { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 2.6rem); color: var(--navy); letter-spacing: -.02em; margin: .6rem 0 1rem; transition: color .2s; }
.call-number:hover { color: var(--teal-deep); }
.call-number svg { color: var(--teal); }
.call-card .btn-block { max-width: 360px; }
.call-note { font-size: .88rem; color: var(--muted); margin-top: .8rem; }

.quote-form { background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.3rem); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form label { display: block; margin-bottom: 1rem; }
.quote-form label > span { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .4rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; font-family: var(--font); font-size: .98rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 0; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(5,161,177,.12);
}
.quote-form textarea { resize: vertical; }
.quote-form input:invalid:not(:placeholder-shown) { border-color: #e08; }
.form-status { margin: .8rem 0 0; font-size: .92rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--teal-deep); }
.form-status.err { color: #d8482f; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: clamp(3rem,5vw,4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-light { color: #fff; margin-bottom: 1rem; }
.brand-light strong { color: var(--teal-tint); }
.footer-brand p { font-size: .94rem; max-width: 34ch; margin-bottom: 1rem; }
.bbb-badge-img { display: inline-block; line-height: 0; background: #fff; padding: 8px; border-radius: 12px; transition: transform .2s var(--ease); }
.bbb-badge-img:hover { transform: translateY(-3px); }
.bbb-badge-img img { height: 84px; width: auto; display: block; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.65); font-size: .94rem; padding: .25rem 0; transition: color .2s; }
.footer-col a:hover { color: var(--teal-tint); }
.social-row-light { margin-top: .8rem; }
.social-row-light a { width: 36px; height: 36px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: .88rem; }
.dev-credit { color: rgba(255,255,255,.5); }
.dev-credit strong { color: var(--teal-tint); font-weight: 700; }

/* ---------- mobile call bar ---------- */
.mobile-callbar { display: none; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .services-grid { grid-template-columns: 1fr 1fr; }
  .tk-prev, .gal-prev, .rev-prev { left: 2px; } .tk-next, .gal-next, .rev-next { right: 2px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p { max-width: 46ch; margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .take-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; padding: .5rem 22px 1.5rem; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(20,32,58,.4);
    transform: translateY(-130%); transition: transform .32s var(--ease); margin: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 44px; }
  .header-actions .btn-sm { display: none; }
  .btn-phone span { display: none; }
  .grid-3, .services-grid, .take-yes ul, .area-cities { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr 1fr; }
  .service-featured { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .sf-actions { justify-content: center; }
  .sf-body p { margin-inline: auto; }
  .promo-inner { padding: .6rem 40px; gap: .5rem .9rem; }
  .promo-text { font-size: .86rem; }
  .promo-cta { font-size: .84rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 64px; }
  .mobile-callbar {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: var(--grad-teal); color: #fff; font-family: var(--font-head); font-weight: 700;
    padding: 1rem; box-shadow: 0 -8px 24px -10px rgba(20,32,58,.4);
  }
}
@media (max-width: 420px) {
  .area-cities { grid-template-columns: 1fr; }
}

/* =========================================================
   MOBILE-FIRST OPTIMIZATIONS
   Touch ergonomics, safe areas, tighter vertical rhythm and
   swipe-driven carousels (arrows hidden, next item peeks).
   ========================================================= */
* { -webkit-tap-highlight-color: rgba(5,161,177,.18); }
.gal-grid, .tk-track, .rev-track { overscroll-behavior-x: contain; }

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  .header-inner { height: 64px; }
  .main-nav { inset: 64px 0 auto 0; }
  .brand-logo { height: 40px; }
  .section { padding: 46px 0; }
  .container { padding-inline: 18px; }
  h1 { font-size: clamp(1.95rem, 8.5vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 2.1rem); }
  .section-head { margin-bottom: 1.8rem; }
  .section-head p { font-size: 1rem; }
  .hero-copy p { font-size: 1.04rem; }
  .hero-trust { gap: 1.1rem 1.6rem; }
  .hero-trust strong { font-size: 1.2rem; }

  /* comfier tap targets (>=44px) */
  .main-nav a { padding: 1rem .4rem; font-size: 1.02rem; }
  .gal-chip { padding: .62rem 1.05rem; }
  .lang-toggle { width: 46px; height: 40px; }

  /* safe-area aware sticky call bar */
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  .mobile-callbar { padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom)); }

  /* carousels: hide arrows, swipe with a peek of the next card */
  .gal-arrow, .tk-arrow, .rev-arrow { display: none; }
  .gal-item { width: 84vw; max-width: 84vw; }
  .rev-track .review { width: 84vw; }
  .gal-grid, .tk-track, .rev-track { padding-left: 2px; padding-right: 2px; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding-inline: 15px; }
  .call-number { font-size: clamp(1.6rem, 8vw, 2rem); }
  .promo-close { right: 8px; }
  .promo-inner { padding-inline: 30px; }
  .gal-item { width: 88vw; max-width: 88vw; aspect-ratio: 4/3.2; }
  .rev-track .review { width: 88vw; padding: 1.6rem 1.4rem; }
  .hero-cta .btn { width: 100%; }
}
