/* ===========================================================
   EURO CLEAN — stylesheet
   Brand: blue (#1e88d6 / #5bc0f0) + green (#6cb33f / #9ed35a)
   Theme: day (light) hero → night (dark) cinematic sections
   =========================================================== */

:root {
  /* brand */
  --blue: #1e88d6;
  --blue-light: #5bc0f0;
  --blue-dark: #1565b0;
  --green: #6cb33f;
  --green-light: #9ed35a;

  /* day surfaces */
  --bg: #eef5fb;
  --bg-2: #ffffff;
  --ink: #0e2233;
  --muted: #51677d;
  --line: rgba(14, 34, 51, 0.10);
  --card: rgba(255, 255, 255, 0.72);

  /* night surfaces (used by .theme-dark blocks) */
  --night: #07131f;
  --night-2: #0b1e30;

  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 24px 60px rgba(15, 50, 80, 0.16);
  --shadow-soft: 0 12px 30px rgba(15, 50, 80, 0.10);
  --max: 1200px;
  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 45%, var(--green-light) 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
/* Lenis controls scroll; keep native smooth as fallback */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }

.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }

h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1; }
/* Sized so the hero H1 holds its three intended lines ("European-quality" /
   "house cleaning" / "in Melbourne.") inside the ~50% hero column at every
   width. Raising this re-breaks the longest word onto its own line. */
.h-xl { font-size: clamp(38px, 5.8vw, 68px); line-height: 0.96; }
.h-lg { font-size: clamp(32px, 5vw, 60px); }
.lead { color: var(--muted); line-height: 1.7; font-size: clamp(16px, 2vw, 19px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 14px 30px rgba(30, 136, 214, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(30, 136, 214, 0.45); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,0.6); color: var(--ink); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); }
.theme-dark .btn-ghost { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.05); color: #fff; }
.theme-dark .btn-ghost:hover { border-color: var(--blue-light); color: var(--blue-light); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 50, 80, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.02em; font-size: 18px; }
.brand .logo { width: 40px; height: 44px; filter: drop-shadow(0 6px 14px rgba(30,136,214,0.35)); }
.brand b { color: var(--blue); }
.brand i { color: var(--green); font-style: normal; }
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 15px; font-weight: 600; color: var(--muted); }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-brand); transition: width .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ---------- hero (day) ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(44px); opacity: 0.5;
  transform: translateZ(0); will-change: transform;
}
.blob.b1 { width: 520px; height: 520px; top: -120px; right: -80px; background: radial-gradient(circle, var(--blue-light), transparent 65%); }
.blob.b2 { width: 460px; height: 460px; bottom: -160px; left: -120px; background: radial-gradient(circle, var(--green-light), transparent 65%); }
.blob.b3 { width: 360px; height: 360px; top: 40%; left: 50%; background: radial-gradient(circle, #bfe3ff, transparent 70%); opacity: 0.5; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; gap: 9px; align-items: center; padding: 9px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.8); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(108,179,63,0.2); }
.hero h1 { margin: 22px 0 18px; }
.hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-points { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  display: inline-flex; gap: 8px; align-items: center; padding: 9px 14px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* hero visual: stacked glass + photo, tilt target */
.hero-visual { position: relative; perspective: 1200px; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.7);
  transform-style: preserve-3d; will-change: transform;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
  position: absolute; border-radius: 18px; padding: 14px 16px;
  background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.9); box-shadow: var(--shadow);
  font-size: 13px; font-weight: 600; transform: translateZ(60px);
}
.float-badge.fb1 { top: 22px; left: -22px; }
.float-badge.fb2 { bottom: 70px; right: -24px; }
.float-badge .big { display: block; font-size: 22px; font-weight: 800; color: var(--blue); }
.float-badge .star { color: #f5a623; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; margin-top: 34px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid var(--muted); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:6px; left:50%; width:3px; height:7px; border-radius:3px; background: var(--muted); transform: translateX(-50%); animation: wheel 1.5s infinite; }
@keyframes wheel { 0%{opacity:1; top:6px} 70%{opacity:0; top:16px} 100%{opacity:0} }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scrollx 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; letter-spacing: -0.01em; }
.marquee-track span::before { content: "✦"; color: var(--green); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- generic section ---------- */
.section { padding: 50px 0; position: relative; }
/* 900px, not 760: .h-lg tops out at 60px and the longest heading
   ("Premium service, honest rates.") needs 858px to stay on one line.
   Paragraphs aren't affected - .section-head .lead caps itself at 60ch. */
.section-head { max-width: 900px; margin: 0 auto 48px; text-align: center; }
.kicker { display: inline-block; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12.5px; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { margin: 0 auto; max-width: 60ch; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 28px 24px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); text-align: center; }
.stat .num { font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -0.04em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- services (tilt) ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tilt { transform-style: preserve-3d; will-change: transform; transition: box-shadow .3s; }
.service-card {
  position: relative; padding: 28px; border-radius: var(--radius); background: var(--bg-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; height: 100%;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(91,192,240,0.18), transparent 60%);
}
.tilt:hover .service-card::before { opacity: 1; }
.service-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; transform: translateZ(40px);
  background: radial-gradient(circle at 32% 22%, #123450, #07131f);
  border: 1px solid rgba(91,192,240,0.28);
  box-shadow: inset 0 0 16px rgba(30,136,214,0.45), 0 10px 22px rgba(7,19,31,0.25); }

/* ---------- neon line icons ---------- */
.ico-neon { width: 28px; height: 28px; fill: none; stroke: url(#neon); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(91,192,240,0.85)) drop-shadow(0 0 7px rgba(122,209,63,0.35)); }
.ico-neon * { fill: none; stroke: url(#neon); }
.chip-ico { width: 17px; height: 17px; flex: none; filter: drop-shadow(0 0 3px rgba(91,192,240,0.6)); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; transform: translateZ(30px); }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; transform: translateZ(20px); }
.service-card .more { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 700; font-size: 14px; transform: translateZ(30px); }

/* ---------- what's included: compact room cards ---------- */
.rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 20px; }
.room-card { min-width: 0; padding: 26px 24px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.room-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.room-ico { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center;
  background: radial-gradient(circle at 32% 22%, #123450, #07131f);
  border: 1px solid rgba(91,192,240,0.28);
  box-shadow: inset 0 0 14px rgba(30,136,214,0.45), 0 8px 18px rgba(7,19,31,0.22); }
.room-ico .ico-neon { width: 24px; height: 24px; }
.room-head h3 { font-size: 19px; }
.room-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.room-list li { position: relative; padding-left: 26px; font-size: 14.5px; font-weight: 500; color: var(--muted); line-height: 1.4; }
.room-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }

/* ---------- before/after (dark) ---------- */
.theme-dark { color: #eaf2fb; }
.theme-dark .kicker { color: var(--blue-light); }
.theme-dark .lead { color: #9fb4c9; }
.ba-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(30,136,214,0.22), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(108,179,63,0.18), transparent 32%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  border-radius: 48px; margin: 0 auto; width: min(calc(100% - 24px), 1340px);
}
.ba-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.ba-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.12); user-select: none; }
.ba-card .ba-img { position: absolute; inset: 0; }
.ba-card .ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-card .ba-after { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-1.5px); pointer-events: none; box-shadow: 0 0 20px rgba(0,0,0,0.3); }
.ba-handle::after { content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--blue); display: grid; place-items: center; font-size: 22px; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }
.ba-tag { position: absolute; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(7,19,31,0.7); border: 1px solid rgba(255,255,255,0.2); font-size: 13px; font-weight: 700; backdrop-filter: blur(6px); z-index: 6; pointer-events: none; }
.ba-tag.l { left: 16px; } .ba-tag.r { right: 16px; }
.ba-feature { display: grid; gap: 14px; }
.ba-feature .item { padding: 18px 18px 18px 56px; position: relative; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.ba-feature .item::before { content: "✓"; position: absolute; left: 18px; top: 18px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(108,179,63,0.2); color: var(--green-light); font-weight: 900; }
.ba-feature .item b { display: block; margin-bottom: 5px; font-size: 17px; }
.ba-feature .item span { color: #9fb4c9; line-height: 1.6; font-size: 14.5px; }

/* ---------- process (parallax steps) ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; font-size: 40px; font-weight: 800; letter-spacing: -0.04em; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }

/* ---------- about (Lena) ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.about-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-quote { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.5; font-weight: 600; letter-spacing: -0.01em; }
.about-quote .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-sign { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.about-sign .ava { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-weight: 800; }

/* ---------- gallery (draggable) ---------- */
.gallery-strip { overflow: hidden; cursor: grab; }
.gallery-strip.dragging { cursor: grabbing; }
.gallery-track { display: flex; gap: 18px; padding: 6px 18px; width: max-content; will-change: transform; }
.gallery-item { width: 196px; flex: none; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); aspect-ratio: 9/16; position: relative; background: #0b1e30;
  content-visibility: auto; contain-intrinsic-size: 196px 348px; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.gallery-item .cap { position: absolute; left: 10px; bottom: 10px; padding: 6px 11px; border-radius: 999px; background: rgba(7,19,31,0.82); color: #fff; font-size: 11.5px; font-weight: 700; z-index: 2; }
.gv-play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; transition: opacity .25s var(--ease); pointer-events: none; }
.gv-play svg { width: 46px; height: 46px; fill: #fff; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45)); opacity: 0.92; }
.gv-item.playing .gv-play { opacity: 0; }
.gallery-hint { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }

/* horizontal reel */
/* contain, not cover: a clip whose ratio doesn't match the frame letterboxes onto
   the dark background instead of having its captions cropped off top and bottom */
#reelVideo { width: 100%; height: 100%; object-fit: contain; display: block; }
.reel-mute { position: absolute; right: 14px; bottom: 14px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(7,19,31,0.55); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(8px); transition: transform .25s var(--ease), background .25s; }
.reel-mute:hover { transform: scale(1.08); background: rgba(7,19,31,0.75); }
.reel-mute svg { width: 22px; height: 22px; }

/* ---------- video ---------- */
/* 3/2 matches the reel clips (1080x720) and their posters (960x639).
   Change this if the clips are ever re-exported at a different ratio.
   Width is capped rather than height so the ratio is never broken: the
   calc() keeps the player at ~60% of the viewport height on short screens,
   the px value stops it growing absurdly wide on large monitors. */
.video-wrap { position: relative; width: 100%; max-width: min(820px, calc(60vh * 3 / 2)); margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 3/2; background: #07131f; }
.video-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 30px; border-radius: var(--radius-lg); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.price-card.featured { border-color: rgba(30,136,214,0.4); box-shadow: var(--shadow); transform: translateY(-6px); }
.price-card.featured::after { content: "Most popular"; position: absolute; top: 18px; right: 18px; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; background: var(--grad-brand); color: #fff; }
.price-card h3 { font-size: 22px; margin-bottom: 8px; }
.price-card .amt { display: flex; align-items: flex-end; gap: 6px; margin: 12px 0 16px; }
.price-card .amt b { font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.04em; }
.price-card .amt span { color: var(--muted); margin-bottom: 10px; }
.price-card > p { color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.price-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.price-card ul li { padding-left: 26px; position: relative; color: var(--muted); line-height: 1.5; }
.price-card ul li::before { content: "✓"; position: absolute; left: 4px; color: var(--green); font-weight: 900; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { padding: 28px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.review .stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; }
.review p { color: var(--ink); line-height: 1.65; margin: 0 0 18px; font-weight: 500; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 800; }
.review .who b { display: block; font-size: 15px; }
.review .who span { color: var(--muted); font-size: 13px; }

.review-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- areas (animated pin) ---------- */
.areas-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.pin-stage { position: relative; display: grid; place-items: center; min-height: 400px; }
.coverage-map { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; border-radius: 26px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.pin-stage .ring { position: absolute; border-radius: 50%; border: 2px solid rgba(30,136,214,0.5); animation: pulse 3s ease-out infinite; }
.pin-stage .ring.r2 { animation-delay: 1s; } .pin-stage .ring.r3 { animation-delay: 2s; }
@keyframes pulse { 0%{width:60px;height:60px;opacity:0.9} 100%{width:320px;height:320px;opacity:0} }
.pin { width: 72px; height: 72px; z-index: 2; filter: drop-shadow(0 14px 24px rgba(30,136,214,0.4)); animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.suburbs { display: flex; flex-wrap: wrap; gap: 10px; }
.suburb { padding: 10px 16px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-soft); transition: .25s var(--ease); }
.suburb:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); }
.suburb.primary { background: linear-gradient(135deg, rgba(30,136,214,0.12), rgba(108,179,63,0.12)); border-color: rgba(30,136,214,0.3); color: var(--blue-dark); }

/* ---------- contact / CTA (dark) ---------- */
.cta-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(30,136,214,0.28), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(108,179,63,0.22), transparent 34%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  border-radius: 48px; width: min(calc(100% - 24px), 1340px); margin: 0 auto;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.cta-copy h2 { margin-bottom: 16px; }
.contact-card { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(14px); }
.contact-card h3 { font-size: 22px; margin-bottom: 18px; }
.contact-list { display: grid; gap: 12px; margin-bottom: 22px; }
.contact-item { padding: 15px 18px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #9fb4c9; transition: .25s; }
a.contact-item:hover { background: rgba(30,136,214,0.12); border-color: rgba(91,192,240,0.4); color: #fff; }
.contact-item b { color: #fff; display: block; margin-bottom: 3px; }
.form-grid { display: grid; gap: 12px; }
.input, textarea { width: 100%; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); color: #fff; border-radius: 14px; padding: 15px 16px; outline: none; font: inherit; transition: border-color .25s, background .25s; }
.input:focus, textarea:focus { border-color: var(--blue-light); background: rgba(255,255,255,0.1); }
textarea { min-height: 110px; resize: vertical; }
.input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-note { margin: 4px 0 0; color: #9fb4c9; font-size: 13px; line-height: 1.5; transition: color .25s; }
.form-note.ok { color: #b6e88a; font-weight: 600; }
.form-note.err { color: #ff9b9b; font-weight: 600; }
@keyframes fieldFlash { 0% { border-color: var(--blue-light); box-shadow: 0 0 0 4px rgba(91,192,240,0.25); } 100% { border-color: rgba(255,255,255,0.16); box-shadow: none; } }
.input.flash { animation: fieldFlash 1.1s var(--ease); }

/* ---------- footer ---------- */
.footer { padding: 56px 0 40px; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer .brand { font-size: 16px; }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social a:first-child, .footer-social a:nth-child(2) { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line); color: var(--blue); transition: .25s var(--ease); }
.footer-social a:first-child:hover, .footer-social a:nth-child(2):hover { transform: translateY(-3px); color: #fff; background: var(--grad-brand); border-color: transparent; }

/* ---------- floating action buttons (sticky) ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 14px; }
.fab-btn { position: relative; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; transition: transform .3s var(--ease); }
.fab-btn svg { width: 30px; height: 30px; }
.fab-btn:hover { transform: translateY(-4px) scale(1.06); }
.fab-wa { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; box-shadow: 0 18px 36px rgba(18,140,126,0.45); }
.fab-google { background: #fff; color: #f5a623; border: 1px solid var(--line); box-shadow: 0 18px 36px rgba(30,136,214,0.28); }
.fab-tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(6px);
  white-space: nowrap; padding: 8px 12px; border-radius: 10px; background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 700; opacity: 0; pointer-events: none; transition: .25s var(--ease);
  box-shadow: var(--shadow-soft);
}
.fab-tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--ink); }
.fab-btn:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad-brand); }

/* ---------- blog: listing ---------- */
.page-head { padding: 150px 0 20px; }
.breadcrumbs { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--muted); transition: color .2s; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { opacity: 0.5; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .tag { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; }
.blog-card h3 { font-size: 20px; line-height: 1.35; }
.blog-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.blog-card .meta { color: var(--muted); font-size: 12.5px; margin-top: auto; padding-top: 12px; }
.blog-card .read-more { color: var(--blue); font-weight: 700; font-size: 14px; }

/* ---------- blog: article ---------- */
.article-head { padding: 140px 0 10px; }
.article-head h1 { margin: 16px 0 18px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/8; margin-bottom: 6px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: clamp(24px, 3vw, 32px); margin: 44px 0 16px; letter-spacing: -0.02em; }
.article-body h3 { font-size: 20px; margin: 28px 0 12px; }
.article-body p { color: var(--ink); line-height: 1.8; font-size: 16.5px; margin: 0 0 18px; }
.article-body ul, .article-body ol { color: var(--ink); line-height: 1.8; font-size: 16.5px; padding-left: 22px; margin: 0 0 20px; }
.article-body li { margin-bottom: 8px; }
.article-body a.inline-link { color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(30,136,214,0.3); }
.article-cta { margin: 42px 0; padding: 30px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(30,136,214,0.08), rgba(108,179,63,0.08)); border: 1px solid var(--line); text-align: center; }
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { color: var(--muted); margin: 0 0 18px; }
.article-author { display: flex; gap: 16px; align-items: center; margin: 48px 0; padding: 20px 22px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); }
.article-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }
.article-author b { display: block; }
.article-author span { color: var(--muted); font-size: 13.5px; }
.related-posts { margin-top: 56px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .ba-grid, .about-grid, .areas-grid, .cta-grid { grid-template-columns: 1fr; }
  .services, .process { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing, .reviews { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .float-badge.fb1 { left: 8px; } .float-badge.fb2 { right: 8px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; right: 18px; left: 18px; flex-direction: column; gap: 14px; padding: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-toggle { display: inline-flex; }
  .services, .process, .stats { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .ba-section, .cta-section { border-radius: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-head, .article-head { padding-top: 110px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .pin, .pin-stage .ring, .marquee-track, .scroll-cue .mouse::after { animation: none; }
  html { scroll-behavior: auto; }
}
