/* ══════════════════════════════════════════
   LOKALOKO — INDEX PAGE STYLES
   ══════════════════════════════════════════ */

/* ── HERO ANIMATIONS ── */
@keyframes meshMove {
  0%   { transform: translate(0,0) }
  50%  { transform: translate(-20px,10px) }
  100% { transform: translate(0,0) }
}
@keyframes orb1Anim {
  0%,100% { transform: translate(0,0) scale(1) }
  33%  { transform: translate(40px,-30px) scale(1.1) }
  66%  { transform: translate(-20px,40px) scale(.95) }
}
@keyframes orb2Anim {
  0%,100% { transform: translate(0,0) scale(1) }
  33%  { transform: translate(-50px,30px) scale(1.05) }
  66%  { transform: translate(30px,-40px) scale(.9) }
}
@keyframes orb3Anim {
  0%,100% { transform: translate(0,0) scale(1) }
  50%  { transform: translate(20px,20px) scale(1.08) }
}
@keyframes pdot {
  0%,100% { opacity:1; transform:scale(1) }
  50%  { opacity:.4; transform:scale(.6) }
}
@keyframes pulsering {
  0%   { transform:scale(.9); opacity:.8 }
  100% { transform:scale(1.5); opacity:0 }
}
@keyframes fl1 {
  0%,100% { transform:translateY(0) rotate(-1deg) }
  50%  { transform:translateY(-10px) rotate(1deg) }
}
@keyframes fl2 {
  0%,100% { transform:translateY(0) }
  50%  { transform:translateY(9px) }
}
@keyframes fl3 {
  0%,100% { transform:translateY(-50%) }
  50%  { transform:translateY(calc(-50% - 8px)) }
}
@keyframes shimmer {
  0%   { background-position:-200% center }
  100% { background-position:200% center }
}
@keyframes blink {
  0%,100% { opacity:1 }
  50%  { opacity:0 }
}
@keyframes tagScroll {
  0%   { transform:translateX(0) }
  100% { transform:translateX(-50%) }
}
@keyframes testiScroll {
  0%   { transform:translateX(0) }
  100% { transform:translateX(-50%) }
}

/* ── HERO ── */
#hero {
  min-height:100vh; min-height:100dvh;
  background:var(--hero-bg);
  display:flex; align-items:center;
  padding-top:max(68px,calc(56px + env(safe-area-inset-top,0px)));
  padding-bottom:env(safe-area-inset-bottom,0px);
  position:relative; overflow:hidden;
}
.hero-deco { position:absolute; border-radius:50%; pointer-events:none; filter:blur(1px) }
.hero-deco-1 {
  width:700px; height:700px; top:-200px; right:-180px;
  background:radial-gradient(circle at 40% 40%,rgba(23,195,195,.13) 0%,rgba(23,195,195,.04) 40%,transparent 70%);
  animation:orb1Anim 12s ease-in-out infinite;
}
.hero-deco-2 {
  width:500px; height:500px; bottom:-150px; left:-120px;
  background:radial-gradient(circle at 60% 60%,rgba(23,195,195,.1) 0%,rgba(23,195,195,.03) 40%,transparent 70%);
  animation:orb2Anim 15s ease-in-out infinite;
}
.hero-deco-3 {
  width:300px; height:300px; top:40%; left:42%;
  background:radial-gradient(circle,rgba(23,195,195,.06) 0%,transparent 70%);
  animation:orb3Anim 9s ease-in-out infinite;
}
.hero-mesh {
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image:linear-gradient(rgba(23,195,195,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(23,195,195,.09) 1px,transparent 1px);
  background-size:60px 60px; animation:meshMove 20s ease-in-out infinite;
}
[data-theme="dark"] .hero-mesh {
  background-image:linear-gradient(rgba(23,195,195,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(23,195,195,.06) 1px,transparent 1px);
}
#hero>.wrap { width:100%; position:relative; z-index:1 }
.hero-in {
  display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,0.85fr);
  gap:clamp(24px,4vw,40px); align-items:center;
  padding:clamp(40px,6vw,72px) 0 clamp(48px,7vw,80px);
}
.hero-txt { display:flex; flex-direction:column; align-items:flex-start; min-width:0 }

.hero-badge {
  display:inline-flex; align-items:center; justify-content:center; flex-wrap:wrap;
  gap:8px 10px; max-width:100%; text-align:center;
  background:rgba(23,195,195,.1); border:1px solid rgba(23,195,195,.3); color:var(--teal-dark);
  padding:8px 18px; border-radius:100px;
  font-size:clamp(.65rem,1.8vw,.75rem); font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:28px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  box-shadow:0 2px 12px rgba(23,195,195,.1);
}
[data-theme="dark"] .hero-badge { background:rgba(23,195,195,.12); color:var(--teal); border-color:rgba(23,195,195,.2) }
.hero-badge-copy { display:inline-flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.2rem .45rem; max-width:22rem }
.hero-badge-sep { opacity:.65; font-weight:800 }
.hero-badge .dot {
  width:8px; height:8px; background:#25D366; border-radius:50%;
  animation:pdot 2s ease-in-out infinite; position:relative;
}
.hero-badge .dot::after {
  content:''; position:absolute; inset:-3px; border-radius:50%;
  border:2px solid rgba(37,211,102,.5); animation:pulsering 2s ease-out infinite;
}

.hero-h1 {
  font-size:clamp(2.35rem,5.5vw + 1rem,5.8rem); line-height:.92; margin-bottom:8px;
  color:var(--txt); letter-spacing:-.01em; max-width:100%; overflow-wrap:anywhere;
}
.hero-h1 .line-accent {
  display:block;
  background:linear-gradient(135deg,var(--teal) 0%,#00e5e5 50%,var(--teal-dark) 100%);
  background-size:200% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  animation:shimmer 4s linear infinite; position:relative;
}
.hero-h1 .line-accent::after {
  content:''; position:absolute; left:0; bottom:4px; width:100%; height:8px;
  background:linear-gradient(90deg,rgba(23,195,195,.25),transparent);
  border-radius:4px; z-index:-1; -webkit-text-fill-color:transparent;
}
.hero-h1 .line-normal { display:block }

.hero-type-wrap {
  display:flex; align-items:center; gap:10px; margin-bottom:22px; margin-top:12px;
  font-size:1rem; color:var(--txt2); font-weight:500;
}
.hero-type-cursor {
  display:inline-block; width:3px; height:1.1em; background:var(--teal);
  border-radius:2px; vertical-align:middle; animation:blink 1s step-end infinite;
}
#heroTypeText { color:var(--teal); font-weight:700 }

.hero-sub {
  font-size:clamp(.94rem,2.2vw,1rem); color:var(--txt2); line-height:1.75;
  margin-bottom:36px; max-width:480px;
}

.hero-ctas { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:40px }
.btn-hero-wa {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(135deg,var(--wa) 0%,#1db954 100%); color:#fff;
  padding:14px 24px; min-height:48px; border-radius:14px;
  font-family:'Sora',sans-serif; font-weight:700; font-size:clamp(.88rem,2.2vw,.95rem);
  box-shadow:0 6px 24px rgba(37,211,102,.35); transition:all .3s ease;
  position:relative; overflow:hidden; border:none; cursor:pointer;
}
.btn-hero-wa::before {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent); transition:left .5s ease;
}
.btn-hero-wa:hover::before { left:100% }
.btn-hero-wa:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(37,211,102,.45) }
.btn-hero-wa i { font-size:1.1rem }

.btn-hero-out {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:transparent; color:var(--teal); padding:12px 24px; min-height:48px;
  border-radius:14px; font-family:'Sora',sans-serif; font-weight:600;
  font-size:clamp(.88rem,2.2vw,.95rem); border:2px solid rgba(23,195,195,.4);
  transition:all .3s ease; cursor:pointer;
}
.btn-hero-out:hover {
  background:var(--teal-glow); border-color:rgba(23,195,195,.8);
  transform:translateY(-2px); box-shadow:0 8px 24px rgba(23,195,195,.15);
}

.hero-trust {
  display:flex; align-items:center; gap:0; flex-wrap:wrap;
  padding:14px 20px; background:var(--surface);
  border:1px solid var(--border); border-radius:14px;
  box-shadow:0 2px 12px rgba(23,195,195,.06);
}
.trust-it {
  display:flex; align-items:center; gap:8px; font-size:.78rem; font-weight:600;
  color:var(--txt2); padding:4px 16px; position:relative;
}
.trust-it:not(:last-child)::after {
  content:''; position:absolute; right:0; top:10%; height:80%; width:1px; background:var(--border);
}
.trust-it:first-child { padding-left:0 }
.trust-it:last-child  { padding-right:0 }
.trust-ico {
  width:28px; height:28px; background:var(--teal-light); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.72rem; color:var(--teal-dark); flex-shrink:0;
}
[data-theme="dark"] .trust-ico { background:rgba(23,195,195,.12); color:var(--teal) }

.hero-ticker-wrap {
  width:100%; max-width:100%; min-width:0; overflow:hidden; margin-bottom:28px;
  mask:linear-gradient(90deg,transparent 0%,#fff 8%,#fff 92%,transparent 100%);
  -webkit-mask:linear-gradient(90deg,transparent 0%,#fff 8%,#fff 92%,transparent 100%);
}
.hero-ticker { display:flex; gap:10px; width:max-content; animation:tagScroll 18s linear infinite }
.h-tag {
  display:inline-flex; align-items:center; gap:7px; background:var(--surface);
  border:1px solid var(--border); border-radius:100px; padding:6px 14px;
  font-size:.75rem; font-weight:600; color:var(--txt2); white-space:nowrap;
  box-shadow:0 2px 8px rgba(0,0,0,.04); transition:all .2s;
}
.h-tag i { color:var(--teal); font-size:.78rem }

.hero-vis { position:relative; display:flex; flex-direction:column; gap:12px; min-width:0 }
.hero-img-frame {
  position:relative; border-radius:24px; padding:6px;
  background:linear-gradient(135deg,rgba(23,195,195,.3) 0%,rgba(23,195,195,.05) 50%,rgba(23,195,195,.2) 100%);
  box-shadow:0 30px 80px rgba(23,195,195,.18),0 8px 32px rgba(0,0,0,.08),inset 0 1px 0 rgba(255,255,255,.5);
}
[data-theme="dark"] .hero-img-frame {
  background:linear-gradient(135deg,rgba(23,195,195,.2) 0%,rgba(23,195,195,.03) 50%,rgba(23,195,195,.15) 100%);
  box-shadow:0 30px 80px rgba(23,195,195,.1),0 8px 32px rgba(0,0,0,.3);
}
.hero-img-w { position:relative; border-radius:20px; overflow:hidden }
.hero-img-w img {
  width:100%; height:auto; aspect-ratio:4/3;
  max-height:min(520px,58vh); object-fit:cover; object-position:center top;
  display:block; border-radius:20px; transition:transform .6s cubic-bezier(.25,.46,.45,.94);
}
.hero-img-frame:hover .hero-img-w img { transform:scale(1.04) }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(7,16,31,.65) 100%);
  border-radius:20px; pointer-events:none;
}
.hero-img-bottom {
  position:absolute; bottom:0; left:0; right:0; padding:20px 20px 22px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; z-index:3;
}
.hero-rating-pill {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.15); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:8px 14px;
}
.hero-rating-pill .stars { color:#fbbf24; font-size:.75rem; letter-spacing:1px }
.hero-rating-pill .rlbl { color:#fff; font-size:clamp(.62rem,2vw,.72rem); font-weight:700; margin-left:2px }
.hero-tag-live {
  display:flex; align-items:center; gap:6px;
  background:rgba(37,211,102,.2); backdrop-filter:blur(12px);
  border:1px solid rgba(37,211,102,.35); border-radius:100px; padding:8px 14px;
  color:#4ade80; font-size:clamp(.62rem,2vw,.72rem); font-weight:700; text-align:center;
}
.hero-tag-live .dot-live {
  width:7px; height:7px; background:#4ade80; border-radius:50%;
  animation:pdot 1.5s ease-in-out infinite;
}

.fc {
  position:absolute; background:rgba(255,255,255,.88);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-radius:16px; padding:12px 16px;
  box-shadow:0 12px 40px rgba(0,0,0,.14),0 0 0 1px rgba(255,255,255,.5);
  border:1px solid rgba(23,195,195,.2);
  display:flex; align-items:center; gap:10px; white-space:nowrap; z-index:4;
}
[data-theme="dark"] .fc {
  background:rgba(15,28,48,.88); border-color:rgba(23,195,195,.2);
  box-shadow:0 12px 40px rgba(0,0,0,.4),0 0 0 1px rgba(23,195,195,.1);
}
.fc1 { bottom:100px; left:-28px; animation:fl1 3.5s ease-in-out infinite }
.fc2 { top:40px; right:-28px; animation:fl2 4s ease-in-out infinite }
.fc3 { top:50%; right:-28px; transform:translateY(-50%); animation:fl3 3s ease-in-out infinite }
.fc-ico {
  width:38px; height:38px;
  background:linear-gradient(135deg,var(--teal-light),rgba(23,195,195,.15));
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--teal-dark); flex-shrink:0;
}
[data-theme="dark"] .fc-ico { background:rgba(23,195,195,.15); color:var(--teal) }
.fc-lbl { font-size:.62rem; color:var(--txtm); font-weight:600; text-transform:uppercase; letter-spacing:.08em; line-height:1 }
.fc-val { font-size:.88rem; font-weight:800; color:var(--txt); line-height:1.2; margin-top:2px }

.hero-stats-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:10px }
.hss-it {
  background:var(--surface); border:1px solid var(--border); border-radius:14px;
  padding:14px 12px; text-align:center; transition:all .3s ease; cursor:default;
}
.hss-it:hover { border-color:rgba(23,195,195,.4); box-shadow:0 6px 20px rgba(23,195,195,.1); transform:translateY(-3px) }
.hss-n {
  font-family:'Sora',sans-serif; font-weight:800; font-size:1.7rem;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  line-height:1; margin-bottom:2px;
}
.hss-l { font-size:.7rem; color:var(--txtm); font-weight:600; letter-spacing:.05em; text-transform:uppercase }

/* ── BENEFITS BAND ── */
#stats { background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%); padding:40px 0 }
.ben-g { display:grid; grid-template-columns:repeat(4,1fr) }
.ben-it {
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:24px 20px; position:relative;
}
.ben-it:not(:last-child)::after {
  content:''; position:absolute; right:0; top:20%; height:60%; width:1px; background:rgba(255,255,255,.2)
}
.ben-ico { font-size:2rem; line-height:1; margin-bottom:12px; display:block }
.ben-txt {
  font-size:.88rem; color:rgba(255,255,255,.92); line-height:1.6;
  font-weight:500; max-width:190px; margin:0 auto;
}

/* ── HOW IT WORKS ── */
#how {
  padding:100px 0;
  background:linear-gradient(180deg,var(--bg2) 0%,var(--bg) 100%);
}
.steps-g {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:24px;
  background:var(--surface);
  box-shadow:0 18px 60px rgba(11,195,233,.09);
}
.step-c {
  background:transparent;
  padding:38px 30px;
  text-align:left;
  border-right:1px solid var(--border);
  position:relative;
  z-index:1;
  transition:background .25s ease;
}
.step-c:last-child { border-right:0 }
.step-c:hover { background:var(--surface2) }
.step-num {
  width:48px;
  height:48px;
  background:#0b1726;
  color:#fff;
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:1.05rem;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 0 22px;
  box-shadow:0 10px 24px rgba(7,16,31,.18);
}
[data-theme="dark"] .step-num { background:var(--teal); color:#052430 }
.step-ico {
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:var(--teal-light);
  color:var(--teal-dark);
  font-size:1.15rem;
  margin-bottom:18px;
}
[data-theme="dark"] .step-ico { background:rgba(11,195,233,.12); color:var(--teal) }
.step-ttl {
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:1.35rem;
  margin-bottom:10px;
  color:var(--txt);
  letter-spacing:-.01em;
}
.step-p { font-size:.9rem; color:var(--txt2); line-height:1.75 }

/* ── SERVICE FOCUS ── */
#services { padding:100px 0; background:var(--bg) }
.service-focus {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  gap:48px;
  align-items:center;
}
.service-focus-copy h2 {
  font-size:clamp(2.1rem,4vw,3.6rem);
  line-height:1;
  letter-spacing:-.02em;
  margin-bottom:18px;
}
.service-focus-copy p {
  color:var(--txt2);
  max-width:620px;
  line-height:1.8;
  font-size:.98rem;
  margin-bottom:28px;
}
.service-points {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-bottom:30px;
}
.service-point {
  min-width:0;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:15px;
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--txt);
  font-size:.86rem;
  font-weight:600;
  line-height:1.55;
}
.service-point-ico {
  width:34px;
  height:34px;
  border-radius:10px;
  background:var(--teal-light);
  color:var(--teal-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 34px;
}
[data-theme="dark"] .service-point-ico { background:rgba(11,195,233,.12); color:var(--teal) }
.service-focus-actions {
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.service-detail-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--teal);
  font-weight:800;
  font-size:.9rem;
  transition:gap .2s ease;
}
.service-detail-link:hover { gap:12px }
.service-focus-panel {
  position:relative;
  border:1px solid var(--border);
  border-radius:24px;
  padding:14px;
  background:linear-gradient(180deg,var(--surface) 0%,var(--surface2) 100%);
  box-shadow:0 24px 70px rgba(11,195,233,.14);
}
.service-photo {
  border-radius:18px;
  overflow:hidden;
  background:var(--bg2);
}
.service-photo img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  padding:18px;
}
.service-proof-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}
.service-proof {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
}
.service-proof span {
  display:block;
  color:var(--teal-dark);
  font-size:1.45rem;
  font-weight:800;
  line-height:1;
}
[data-theme="dark"] .service-proof span { color:var(--teal) }
.service-proof small {
  display:block;
  margin-top:5px;
  color:var(--txtm);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

/* Shared section heading polish */
.sec-hd { margin-bottom:38px }
.sec-hd h2, .sec-hd h4 {
  letter-spacing:-.02em;
  margin-bottom:10px;
}
.sec-hd p {
  max-width:640px;
  margin:0 auto;
  color:var(--txt2);
}

/* ── YOUR WEEK ── */
#week { padding:100px 0; background:var(--bg2) }

/* Timeline */
.week-timeline {
  position:relative;
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.wk-row {
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  align-items:stretch;
  min-width:0;
}
.wk-row:nth-child(1),
.wk-row:nth-child(6),
.wk-row:nth-child(7) { grid-column:span 2 }

/* Left rail: dot + day */
.wk-rail {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#0b1726;
  border-radius:18px 0 0 18px;
  color:#fff;
}
[data-theme="dark"] .wk-rail { background:#0a1422 }
.wk-rail::before {
  content:"";
  position:absolute;
  top:18px;
  bottom:18px;
  width:2px;
  background:rgba(255,255,255,.16);
}
.wk-dot {
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--teal);
  border:4px solid #0b1726;
  box-shadow:0 0 0 2px rgba(255,255,255,.28);
  z-index:1;
}
[data-theme="dark"] .wk-dot { border-color:#0a1422 }
.wk-day {
  margin-top:12px;
  font-family:'Sora',sans-serif;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.12em;
  color:rgba(255,255,255,.82);
  writing-mode:vertical-rl;
  text-orientation:mixed;
}

/* Card */
.wk-card {
  flex:1 1 auto;
  min-width:0;
  background:var(--surface);
  border:1px solid var(--border);
  border-left:0;
  border-radius:0 18px 18px 0;
  padding:24px 26px;
  box-shadow:0 8px 28px rgba(11,195,233,.07);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wk-card:hover {
  border-color:rgba(11,195,233,.4);
  box-shadow:0 16px 42px rgba(11,195,233,.13);
  transform:translateY(-3px);
}
.wk-card-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.wk-ico {
  width:40px; height:40px; border-radius:11px; flex:0 0 40px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--teal-dark);
  background:var(--teal-light);
}
.wk-badge {
  font-family:'Sora',sans-serif; font-size:.7rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase; color:var(--teal-dark);
  background:var(--teal-light); padding:6px 12px; border-radius:999px;
  white-space:nowrap;
}
.wk-quote {
  color:var(--txt);
  font-size:1rem;
  font-weight:600;
  line-height:1.65;
  margin:0;
}
.wk-line {
  height:1px; background:var(--border); margin:16px 0;
}
.wk-tag {
  margin:0; color:var(--teal); font-family:'Sora',sans-serif;
  font-size:.8rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em;
}

/* Dark CTA box */
.week-cta {
  max-width:920px; margin:56px auto 0;
  background:#0a1422; border-radius:26px;
  padding:56px 28px; text-align:center;
  position:relative; overflow:hidden;
}
.week-cta::before {
  content:""; position:absolute; left:50%; top:0; transform:translateX(-50%);
  width:520px; height:520px; max-width:120%;
  background:radial-gradient(circle, rgba(11,195,233,.18), transparent 60%);
  pointer-events:none;
}
.week-cta-h {
  position:relative; font-family:'Sora',sans-serif; font-weight:800;
  font-size:clamp(2rem,5vw,3rem); line-height:1; letter-spacing:-.01em;
  color:#fff; margin:0 0 16px;
}
.week-cta-h span { color:var(--teal) }
.week-cta p {
  position:relative; color:rgba(255,255,255,.72); font-size:1.02rem; line-height:1.7;
  max-width:460px; margin:0 auto 30px;
}
.week-cta-btn {
  position:relative; display:inline-flex; align-items:center; gap:10px;
  background:var(--teal); color:#04222b; font-family:'Sora',sans-serif;
  font-weight:800; font-size:1rem; padding:16px 34px; border-radius:999px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 10px 30px rgba(11,195,233,.35);
}
.week-cta-btn:hover {
  background:var(--teal-dark); transform:translateY(-2px);
  box-shadow:0 14px 38px rgba(11,195,233,.45);
}

/* Card shell */
.svc-c {
  background:var(--surface);
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 2px 18px rgba(23,195,195,.07);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display:flex; flex-direction:column;
}
.svc-c:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(23,195,195,.16);
  border-color:rgba(23,195,195,.4);
}

/* Image wrapper — teal-tinted background so transparent PNGs look intentional */
.svc-iw {
  position:relative;
  background:linear-gradient(160deg, var(--teal-xlight) 0%, var(--bg2) 100%);
  overflow:hidden; flex-shrink:0;
}
[data-theme="dark"] .svc-iw {
  background:linear-gradient(160deg,rgba(23,195,195,.08) 0%,rgba(23,195,195,.02) 100%);
}
.svc-img {
  width:100%; height:190px;
  object-fit:contain; display:block;
  padding:16px;
  transition:transform .4s ease;
}
.svc-c:hover .svc-img { transform:scale(1.06) }

/* Coming-soon pill */
.svc-badge {
  position:absolute; top:10px; right:10px;
  background:#f59e0b; color:#fff;
  font-size:.6rem; font-weight:700;
  padding:4px 11px; border-radius:100px;
  letter-spacing:.07em; text-transform:uppercase;
  box-shadow:0 2px 8px rgba(245,158,11,.35);
}

/* Card body */
.svc-bod {
  padding:18px 20px 20px;
  display:flex; flex-direction:column; flex:1;
}
.svc-top { flex:1 }

/* Icon + name in one row */
.svc-ico-row {
  display:flex; align-items:center; gap:12px;
  margin-bottom:10px;
}
.svc-ico {
  width:38px; height:38px; flex-shrink:0;
  background:var(--teal-light); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem; color:var(--teal-dark);
  transition:background .25s, color .25s, transform .25s;
}
[data-theme="dark"] .svc-ico { background:rgba(23,195,195,.12); color:var(--teal) }
.svc-c:hover .svc-ico { background:var(--teal); color:#fff; transform:scale(1.1) }

.svc-nm {
  font-family:'Sora',sans-serif; font-weight:800;
  font-size:1rem; color:var(--txt); line-height:1.25; margin:0;
}

/* Short tagline */
.svc-desc {
  font-size:.8rem; color:var(--txt2);
  line-height:1.65; margin:0 0 16px;
}

/* Action row — divider line above, learn-more link left, book-now button right */
.svc-acts {
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-top:auto;
  padding-top:14px;
  border-top:1px solid var(--border);
}

/* "Learn More →" teal text link */
.svc-learn {
  display:inline-flex; align-items:center; gap:5px;
  font-family:'Sora',sans-serif; font-size:.78rem; font-weight:700;
  color:var(--teal); text-decoration:none;
  transition:gap .2s ease; white-space:nowrap;
}
.svc-learn:hover { gap:9px }
.svc-learn i { font-size:.68rem }

/* WhatsApp book-now pill */
.svc-btn-wa {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 14px; border-radius:100px;
  background:linear-gradient(135deg, #25D366 0%, #1aab55 100%);
  color:#fff; font-family:'Sora',sans-serif;
  font-size:.76rem; font-weight:700;
  text-decoration:none; border:none;
  box-shadow:0 3px 12px rgba(37,211,102,.28);
  transition:all .25s ease; white-space:nowrap;
}
.svc-btn-wa:hover {
  background:linear-gradient(135deg, #20bc5a 0%, #169146 100%);
  box-shadow:0 6px 18px rgba(37,211,102,.42);
  transform:translateY(-1px); color:#fff;
}
.svc-btn-wa i { font-size:.82rem }

.svc-cta { text-align:center; margin-top:48px }

/* ── WHY LOKALOKO ── */
#why { padding:100px 0; background:var(--bg2) }
.why-g { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center }
/* overflow:hidden on why-vis prevents absolutely-positioned children from
   ever causing horizontal scroll at any breakpoint */
.why-vis { position:relative; overflow:hidden; border-radius:20px; box-shadow:var(--csh-h) }
.why-mi { display:block; width:100%; aspect-ratio:5/4; height:auto; object-fit:cover }
.why-ai {
  position:absolute; bottom:16px; right:16px; width:130px; height:130px;
  border-radius:14px; object-fit:cover;
  border:3px solid rgba(255,255,255,.3); box-shadow:var(--csh);
}
.why-badge {
  position:absolute; top:16px; left:16px;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark)); color:#fff;
  border-radius:14px; padding:12px 16px; text-align:center;
  box-shadow:0 6px 20px rgba(23,195,195,.4);
}
.why-badge .bn { font-family:'Sora',sans-serif; font-weight:800; font-size:2.2rem; line-height:1; display:block }
.why-badge .bt { font-size:.55rem; font-weight:600; letter-spacing:.08em; text-transform:capitalize; opacity:.9 }
/* heading — fully fluid, never overflows narrow containers */
.why-h2 {
  font-size:clamp(1.5rem,4vw,3.2rem);
  margin-bottom:12px;
  word-break:break-word;
  overflow-wrap:break-word;
}
.why-h2 span { color:var(--teal) }
.why-feats { display:flex; flex-direction:column; gap:14px; margin-top:28px }
.wf {
  display:flex; gap:14px; align-items:flex-start; padding:16px;
  background:var(--surface); border-radius:14px; border:1px solid var(--border);
  transition:all .3s ease; min-width:0;
}
.wf:hover { border-color:rgba(23,195,195,.35); box-shadow:var(--csh); transform:translateX(4px) }
.wf-ico {
  width:44px; height:44px; background:var(--teal-light); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--teal-dark); flex-shrink:0;
}
[data-theme="dark"] .wf-ico { background:rgba(23,195,195,.1); color:var(--teal) }
.wf-txt { min-width:0; flex:1 }
.wf-txt h4 { font-size:.92rem; font-weight:700; color:var(--txt); margin-bottom:3px }
.wf-txt p  { font-size:.82rem; color:var(--txt2); line-height:1.6 }

/* ── TESTIMONIALS ── */
#testi { padding:100px 0; background:var(--bg) }
.testi-scroller {
  overflow:hidden;
  mask:linear-gradient(90deg,transparent,#fff 10%,#fff 90%,transparent);
  -webkit-mask:linear-gradient(90deg,transparent,#fff 10%,#fff 90%,transparent);
}
[data-theme="dark"] .testi-scroller {
  mask:linear-gradient(90deg,transparent,#07101f 10%,#07101f 90%,transparent);
  -webkit-mask:linear-gradient(90deg,transparent,#07101f 10%,#07101f 90%,transparent);
}
.testi-inner {
  display:flex; gap:20px; width:max-content; flex-wrap:nowrap;
  animation:testiScroll 40s linear infinite;
}
.testi-scroller:hover .testi-inner { animation-play-state:paused }
.t-c {
  background:var(--surface); border-radius:18px; padding:28px;
  border:1px solid var(--border); box-shadow:var(--csh);
  transition:box-shadow .3s,transform .3s; position:relative;
  flex:0 0 340px; width:340px; box-sizing:border-box; display:flex; flex-direction:column;
}
.t-c:hover { transform:translateY(-3px); box-shadow:var(--csh-h) }
.t-c.feat { background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%); border-color:transparent }
.t-c.feat * { color:#fff !important }
.q-ico { font-size:2.2rem; color:var(--teal); opacity:.25; margin-bottom:10px; line-height:1; font-family:Georgia,serif }
.t-c.feat .q-ico { color:#fff; opacity:.35 }
.stars { color:#f59e0b; font-size:.82rem; margin-bottom:12px; letter-spacing:1px }
.t-c.feat .stars { color:#ffd700 }
.t-txt { font-size:.88rem; color:var(--txt2); line-height:1.75; margin-bottom:20px; font-style:italic; flex-grow:1 }
.t-auth { display:flex; align-items:center; gap:10px; margin-top:auto }
.t-av { width:40px; height:40px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid var(--teal) }
.t-c.feat .t-av { border-color:rgba(255,255,255,.4) }
.t-av img { width:40px; height:40px; border-radius:50% }
.t-name { font-weight:700; font-size:.85rem; color:var(--txt) }
.t-role { font-size:.75rem; color:var(--txtm) }

/* ── FAQ ── */
#faq { padding:100px 0; background:var(--bg2) }
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px }
.faq-item {
  background:var(--surface); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; transition:all .3s ease;
  box-shadow:0 2px 12px rgba(0,0,0,.03);
}
.faq-item:hover {
  border-color:rgba(23,195,195,.35);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(23,195,195,.1);
}
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:20px 24px; background:none; border:none; cursor:pointer;
  font-family:'Sora',sans-serif; font-size:.95rem; font-weight:600; color:var(--txt);
  text-align:left; transition:color .2s;
}
.faq-q:hover { color:var(--teal) }
.faq-q span { flex:1 }
.faq-ico {
  color:var(--teal); font-size:.85rem; flex-shrink:0;
  transition:transform .3s ease;
}
.faq-item.open .faq-ico { transform:rotate(180deg) }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s ease;
  padding:0 24px;
}
.faq-item.open .faq-a { max-height:340px; padding:0 24px 20px }
.faq-a p { font-size:.88rem; color:var(--txt2); line-height:1.75 }

/* ── COVERAGE ── */
#coverage { padding:100px 0; background:var(--bg2); text-align:center }
.cov-map {
  position:relative; max-width:680px; margin:0 auto 44px;
  border-radius:20px; overflow:hidden; box-shadow:var(--csh-h);
}
.cov-map iframe { width:100%; height:360px; display:block; border:0 }
.cov-ov {
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(23,195,195,.1) 0%,rgba(23,195,195,.03) 100%);
}
.cov-pin {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  background:var(--teal); color:#fff; padding:10px 20px; border-radius:100px;
  font-weight:700; font-size:.88rem; box-shadow:0 4px 20px rgba(23,195,195,.45);
  display:flex; align-items:center; gap:8px;
}
.areas {
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
  max-width:660px; margin:0 auto;
}
.area {
  background:var(--surface); border:1px solid var(--border); color:var(--txt2);
  padding:7px 16px; border-radius:100px; font-size:.82rem; font-weight:500;
  transition:all .2s ease; cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.area:hover, .area.active {
  background:var(--teal); color:#fff; border-color:var(--teal); transform:translateY(-2px);
}

/* ── CTA BAND ── */
#cta {
  padding:100px 0;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-deeper) 100%);
  position:relative; overflow:hidden; text-align:center;
}
.cta-pattern {
  position:absolute; inset:0; opacity:.04;
  background-image:radial-gradient(circle,#fff 1px,transparent 1px);
  background-size:28px 28px;
}
.cta-in { position:relative; z-index:1 }
.cta-in h2 { font-size:clamp(2.8rem,5.5vw,4.5rem); color:#fff; margin-bottom:16px }
.cta-in p {
  font-size:1.05rem; color:rgba(255,255,255,.85); margin-bottom:36px;
  max-width:500px; margin-left:auto; margin-right:auto; line-height:1.7;
}
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media(min-width:901px) {
  .btn-hero-wa { padding:16px 32px }
  .btn-hero-out { padding:14px 28px }
}
@media(max-width:1100px) {
  .hero-in { grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(20px,3vw,32px) }
  .fc1 { left:-12px }
  .fc2 { right:-12px }
}
@media(max-width:1024px) {
  .service-focus { grid-template-columns:1fr; gap:34px }
  .service-focus-panel { max-width:620px; width:100%; margin-inline:auto }
  .hero-in { grid-template-columns:minmax(0,1.05fr) minmax(0,0.95fr); gap:24px }
  .hero-img-w img { max-height:min(480px,50vh) }
}
@media(max-width:900px) {
  .sec-hd { margin-bottom:28px }
  .hero-in { grid-template-columns:minmax(0,1fr); gap:28px; padding-top:clamp(28px,5vw,48px); padding-bottom:28px }
  .hero-txt { align-items:center; text-align:center; max-width:36rem; margin-inline:auto; width:100% }
  .hero-sub { max-width:100% }
  .hero-type-wrap { justify-content:center; flex-wrap:wrap; text-align:center }
  .hero-ctas { justify-content:center }
  .hero-trust { justify-content:center; max-width:100% }
  .hero-vis { max-width:min(100%,420px); margin-inline:auto; width:100% }
  .hero-img-w img { aspect-ratio:4/3; max-height:min(380px,48vh) }
  .fc { display:none }
}
@media(max-width:768px) {
  #hero { min-height:auto; padding-top:max(68px,calc(52px + env(safe-area-inset-top,0px))); padding-bottom:max(28px,env(safe-area-inset-bottom,0px)) }
  #hero>.wrap { padding-left:max(16px,env(safe-area-inset-left,0px)); padding-right:max(16px,env(safe-area-inset-right,0px)) }
  .hero-in { grid-template-columns:minmax(0,1fr); gap:28px; padding:28px 0 16px }
  .hero-txt { align-items:center; text-align:center; order:1; max-width:none }
  .hero-badge { margin-bottom:16px; padding-inline:14px }
  .hero-h1 { font-size:clamp(2.15rem,9.5vw,3.6rem); line-height:.94; margin-bottom:8px }
  .hero-type-wrap { justify-content:center; font-size:clamp(.82rem,3.5vw,.95rem); margin-inline:auto; max-width:100% }
  .hero-sub { font-size:clamp(.88rem,3.8vw,.98rem); margin-bottom:24px; max-width:100% }
  .hero-ctas { justify-content:center; gap:10px; margin-bottom:24px; width:100% }
  .hero-trust { justify-content:center; width:100% }
  .hero-vis { order:2; gap:10px; max-width:100% }
  .hero-img-frame { padding:4px }
  .hero-img-w img { aspect-ratio:1/1; max-height:min(320px,42vh); object-position:top center }
  .hero-img-bottom { padding:12px 12px 14px; justify-content:center }
  .hero-rating-pill { flex:1 1 auto; min-width:0; justify-content:center }
  .hero-tag-live { flex:1 1 100%; justify-content:center; white-space:normal }
  .fc { display:none }
  .hero-stats-strip { grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px }
  .hss-it { padding:12px 8px }
  .hss-n { font-size:1.4rem }
  .hss-l { font-size:.62rem }
  .hero-deco-1 { width:300px; height:300px; top:-100px; right:-80px }
  .hero-deco-2 { width:200px; height:200px }
  .hero-mesh { background-size:40px 40px }
  .ben-g { grid-template-columns:repeat(2,1fr) }
  .ben-it:nth-child(2)::after,
  .ben-it:nth-child(4)::after { display:none }
  .ben-it:nth-child(1),
  .ben-it:nth-child(2) { border-bottom:1px solid rgba(255,255,255,.15) }
  .steps-g { grid-template-columns:1fr; border-radius:20px }
  .step-c {
    display:grid;
    grid-template-columns:48px minmax(0,1fr);
    column-gap:16px;
    padding:24px 20px;
    border-right:0;
    border-bottom:1px solid var(--border);
  }
  .step-c:last-child { border-bottom:0 }
  .step-num { grid-row:1 / span 3; margin:0 }
  .step-ico { margin-bottom:10px }
  .service-points { grid-template-columns:1fr }
  #week { padding:80px 0 }
  .week-timeline { grid-template-columns:1fr }
  .wk-row,
  .wk-row:nth-child(1),
  .wk-row:nth-child(6),
  .wk-row:nth-child(7) { grid-column:auto }
  .wk-card { padding:18px 18px }
  .wk-card-top { flex-wrap:wrap; gap:10px }
  .wk-quote { font-size:.96rem }
  .week-cta { padding:44px 20px; border-radius:22px }
  .why-g { grid-template-columns:1fr; gap:28px }
  .why-vis { max-width:520px; margin-inline:auto; width:100% }
  .why-ai { width:90px; height:90px; bottom:12px; right:12px }
  .why-badge { padding:10px 14px }
  .why-badge .bn { font-size:1.8rem }
  .why-feats { margin-top:16px }
  .wf { padding:14px }
  #coverage .sec-hd h2 { font-size:clamp(1.6rem,6.5vw,2.6rem) }
  .t-c { flex:0 0 280px; width:280px }
}
@media(max-width:480px) {
  .hero-h1 { font-size:clamp(1.95rem,11vw,2.85rem) }
  .hero-ctas { flex-direction:column; align-items:stretch; width:100% }
  .btn-hero-wa,.btn-hero-out { justify-content:center; width:100%; padding-inline:18px }
  .hero-trust { gap:0; flex-direction:column; align-items:stretch }
  .trust-it { padding:8px 0; justify-content:center }
  .trust-it:not(:last-child)::after { display:none }
  .trust-it:not(:last-child) { border-bottom:1px solid var(--border) }
  .service-focus-actions { align-items:stretch; flex-direction:column }
  .service-focus-actions .btn { justify-content:center }
  .service-detail-link { justify-content:center }
  .service-proof-grid { grid-template-columns:1fr }
  .service-photo img { aspect-ratio:1/1; padding:12px }
  .step-c { grid-template-columns:1fr; text-align:center }
  .step-num,.step-ico { margin-inline:auto }
  .wk-row { grid-template-columns:48px minmax(0,1fr) }
  .wk-rail { border-radius:14px 0 0 14px }
  .wk-card { border-radius:0 14px 14px 0 }
  .wk-badge { white-space:normal }
  .hero-img-w img { max-height:min(280px,40vh) }
  .hero-img-bottom { flex-direction:column; align-items:stretch }
  .hero-rating-pill,.hero-tag-live { flex:none; width:100%; justify-content:center }

  /* Benefits band — single column on very small screens */
  #stats { padding:28px 0 }
  .ben-g { grid-template-columns:1fr }
  .ben-it::after { display:none !important }
  .ben-it:not(:last-child) { border-bottom:1px solid rgba(255,255,255,.15) }
  .ben-it { padding:18px 16px }
  .ben-ico { font-size:1.7rem; margin-bottom:8px }
  .ben-txt { font-size:.85rem }

  /* Why — compact on very small screens */
  #why { padding:60px 0 }
  .why-g { gap:20px }
  .why-ai { display:none }
  .why-badge { top:12px; left:12px; padding:8px 12px }
  .why-badge .bn { font-size:1.4rem }
  .why-feats { gap:10px }
  .wf { gap:12px; padding:10px 12px }
  .wf-ico { width:38px; height:38px; border-radius:10px; font-size:.9rem }
  .wf-txt h4 { font-size:.88rem }
  .wf-txt p { font-size:.78rem }
  /* Coverage heading — prevent BHUBANESWAR overflow on tiny screens */
  #coverage .sec-hd h2 { font-size:clamp(1.4rem,8.5vw,1.8rem) }
}
