/* =========================================================
   LaundryKu — Gen-Z laundry landing
   Palette: ocean blue + white + sunny accent
   ========================================================= */

:root {
  --blue-50:  #eff8ff;
  --blue-100: #def0ff;
  --blue-200: #b6e0ff;
  --blue-300: #7cc6ff;
  --blue-400: #38a9ff;
  --blue-500: #0e8fee;
  --blue-600: #0274d1;
  --blue-700: #075ea8;
  --blue-800: #0b4c87;
  --blue-900: #0b3a66;

  --accent-1: #ffd166;   /* sunny yellow */
  --accent-2: #ff7a93;   /* soft coral pink */
  --accent-3: #5eead4;   /* mint */
  --accent-4: #a78bfa;   /* lilac */

  --ink:        #0b1f3a;
  --ink-soft:   #324a6e;
  --muted:      #6b7a93;
  --line:       #e3ebf5;
  --surface:    #ffffff;
  --surface-2:  #f5faff;
  --bg:         #f7fbff;

  --grad-hero:    linear-gradient(135deg, #38a9ff 0%, #0274d1 55%, #075ea8 100%);
  --grad-text:    linear-gradient(90deg, #0274d1, #38a9ff 50%, #ff7a93);
  --grad-card:    linear-gradient(160deg, #ffffff 0%, #eff8ff 100%);
  --grad-wa:      linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --grad-promo:   linear-gradient(135deg, #ffd166 0%, #ff7a93 100%);

  --shadow-sm: 0 2px 8px rgba(11, 60, 102, 0.06);
  --shadow-md: 0 14px 32px rgba(11, 60, 102, 0.10);
  --shadow-lg: 0 28px 60px rgba(2, 116, 209, 0.18);

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accent-2); color: white; }

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* =========================== BUTTONS =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-hero);
  color: white;
  box-shadow: 0 10px 24px rgba(2, 116, 209, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(2, 116, 209, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--blue-300); }
.btn-wa {
  background: var(--grad-wa);
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(37, 211, 102, 0.45); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-add {
  width: 100%;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 14px;
  border: 1.5px dashed var(--blue-300);
}
.btn-add:hover { background: var(--blue-100); border-color: var(--blue-500); }

/* =========================== NAV =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-hero);
  color: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
}
.brand-name-accent { color: var(--blue-600); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 4px 0; font-size: 15px; transition: color .2s ease; }
.nav-links a:hover { color: var(--blue-600); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--blue-500); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-burger {
  display: none;
  background: var(--blue-50);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 42px; height: 42px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
}

/* =========================== HERO =========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(56,169,255,0.18), transparent 60%),
    radial-gradient(800px 400px at 10% 60%, rgba(255,122,147,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eff8ff 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 { width: 360px; height: 360px; background: #7cc6ff; top: -60px; right: -80px; animation: float 9s ease-in-out infinite; }
.hero-blob-2 { width: 320px; height: 320px; background: #ffd166; bottom: -120px; left: -100px; animation: float 11s ease-in-out infinite reverse; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.29 0 0 0 0 0.51 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .12; pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  margin-top: 18px;
}
.hero-sub {
  margin: 18px 0 30px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--blue-700);
}
.stat span { font-size: 13px; color: var(--muted); }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bubble-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(160deg, #ffffff 0%, #def0ff 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.machine {
  position: relative;
  width: 70%;
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(7, 94, 168, 0.18), inset 0 0 0 1px rgba(255,255,255,0.4);
  z-index: 2;
}
.machine-top { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.led { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.led-2 { background: var(--accent-2); box-shadow: 0 0 6px var(--accent-2); }
.machine-label {
  margin-left: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--blue-700);
}
.machine-door {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #def0ff 0%, #7cc6ff 60%, #0274d1 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border: 8px solid #f5faff;
  box-shadow: inset 0 0 30px rgba(2,116,209,0.4);
}
.machine-drum {
  position: relative;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: drum-spin 4s linear infinite;
}
.clothes {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 6px;
}
.c1 { background: var(--accent-2); top: 10%; left: 20%; transform: rotate(20deg); }
.c2 { background: var(--accent-1); bottom: 15%; right: 18%; transform: rotate(-15deg); }
.c3 { background: var(--accent-3); top: 55%; left: 55%; transform: rotate(40deg); }
.machine-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
}
.knob {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #7cc6ff, #075ea8);
  box-shadow: inset 0 0 0 3px white, 0 2px 4px rgba(0,0,0,.15);
}
.screen {
  background: var(--ink);
  color: var(--accent-3);
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.1em;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, white, rgba(255,255,255,0.4) 60%, transparent);
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 3;
  animation: floatBubble 6s ease-in-out infinite;
}
.b1 { width: 44px; height: 44px; top: 12%; left: 8%; }
.b2 { width: 28px; height: 28px; top: 70%; left: 12%; animation-delay: 1s; }
.b3 { width: 56px; height: 56px; bottom: 8%; right: 10%; animation-delay: 2s; }
.b4 { width: 22px; height: 22px; top: 30%; right: 14%; animation-delay: .5s; }
.b5 { width: 36px; height: 36px; bottom: 30%; left: 5%; animation-delay: 1.5s; }
.float-badge {
  position: absolute; z-index: 4;
  background: white;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 6px;
  bottom: 12%; left: -10px;
  animation: bob 4s ease-in-out infinite;
}
.float-badge i { color: #16a34a; }
.float-badge-2 {
  top: 8%; right: -12px; left: auto; bottom: auto;
  animation-delay: 1.5s;
}
.float-badge-2 i { color: var(--accent-1); }

/* MARQUEE */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 14px 0;
  border-top: 4px solid var(--accent-1);
  border-bottom: 4px solid var(--accent-2);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  font-size: 15px;
}

/* =========================== SECTIONS =========================== */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #ffffff 0%, #eff8ff 100%); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
}
.section-sub { color: var(--ink-soft); margin-top: 14px; font-size: 17px; }

/* =========================== SERVICES =========================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.svc-card {
  position: relative;
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}
.svc-icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 22px;
  color: white;
  margin-bottom: 18px;
}
.svc-icon-1 { background: linear-gradient(135deg, #38a9ff, #075ea8); }
.svc-icon-2 { background: linear-gradient(135deg, #5eead4, #0e8fee); }
.svc-icon-3 { background: linear-gradient(135deg, #ffd166, #ff7a93); }
.svc-icon-4 { background: linear-gradient(135deg, #ff7a93, #a78bfa); }
.svc-icon-5 { background: linear-gradient(135deg, #a78bfa, #0274d1); }
.svc-icon-6 { background: linear-gradient(135deg, #ffd166, #38a9ff); }

.svc-card h3 { font-size: 21px; margin-bottom: 8px; }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 18px; }
.svc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 18px; }
.svc-price span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 26px; color: var(--blue-700); }
.svc-price small { color: var(--muted); font-size: 14px; }
.svc-price-promo span {
  background: var(--grad-promo);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svc-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent-1);
  color: var(--ink);
  font-size: 11px; font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.svc-tag-hot { background: var(--accent-2); color: white; }
.svc-featured { border: 2px solid var(--accent-2); background: linear-gradient(160deg, #fff 0%, #ffe6ec 100%); }
.svc-promo { background: linear-gradient(160deg, #fff8e6 0%, #ffe6ec 100%); border-color: var(--accent-1); }
.svc-link {
  font-weight: 700; color: var(--blue-600);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease;
}
.svc-link:hover { gap: 12px; }

/* =========================== STEPS =========================== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--blue-100);
  position: absolute;
  top: 8px; right: 18px;
  letter-spacing: -0.02em;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--grad-hero);
  color: white;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 14.5px; }

/* =========================== CALCULATOR =========================== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
.calc-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.calc-items { display: flex; flex-direction: column; gap: 14px; }
.calc-item {
  background: var(--surface-2);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 110px auto;
  gap: 12px;
  align-items: end;
  position: relative;
}
.calc-item label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-item select, .calc-item input, .form-row input, .form-row textarea, .form-grid input, .rating-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: white;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.calc-item select:focus, .calc-item input:focus,
.form-row input:focus, .form-row textarea:focus,
.form-grid input:focus, .rating-form-card textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(56,169,255,0.15);
}
.calc-item-remove {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--accent-2);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.calc-item-remove:hover { background: var(--accent-2); color: white; }

.calc-item-subtotal {
  grid-column: 1 / -1;
  display: flex; justify-content: flex-end; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
  margin-top: -4px;
}
.calc-item-subtotal b { color: var(--blue-700); font-size: 15px; }

.calc-divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}
.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-row-full { grid-column: 1 / -1; }
.form-row textarea { resize: vertical; min-height: 64px; }

/* SUMMARY */
.summary-card {
  background: var(--grad-hero);
  color: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
}
.summary-card::before {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,209,102,0.4), transparent 70%);
  border-radius: 50%;
}
.summary-card > * { position: relative; z-index: 1; }
.summary-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px;
  color: white;
  margin-bottom: 18px;
}
.summary-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}
.summary-list:empty::before {
  content: "Belum ada item. Tambah dulu ya 🧺";
  display: block;
  opacity: 0.85;
  font-size: 14px;
  font-style: italic;
}
.summary-item {
  background: rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  display: flex; justify-content: space-between; gap: 8px;
  backdrop-filter: blur(6px);
}
.summary-item small { opacity: 0.8; display: block; font-size: 12px; }
.summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,0.3);
  font-size: 14.5px;
}
.summary-row b { font-family: 'Plus Jakarta Sans', sans-serif; }
.summary-discount b { color: var(--accent-1); }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 2px solid rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.summary-total span { font-size: 13px; opacity: .85; }
.summary-total b {
  font-size: 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}
.discount-tier {
  background: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.5);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.discount-tier.show { display: block; }
.summary-card .btn-wa { width: 100%; }
.summary-foot { font-size: 12px; opacity: 0.85; margin: 12px 0 0; text-align: center; }

/* =========================== TESTI =========================== */
.rating-avg {
  display: inline-flex; align-items: center; gap: 14px;
  background: white;
  padding: 14px 20px;
  border-radius: 999px;
  margin-top: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.rating-avg-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
}
.rating-avg-stars { color: var(--accent-1); font-size: 16px; letter-spacing: 2px; }
.rating-avg-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.testi {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--accent-1); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }
.testi-user {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-hero);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.testi-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.testi-city { font-size: 12px; color: var(--muted); }

.rating-form-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}
.rating-form-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.rating-stars {
  display: inline-flex; gap: 6px; margin-bottom: 18px;
}
.rating-stars button {
  background: none; border: 0; cursor: pointer;
  font-size: 28px;
  color: var(--blue-200);
  padding: 4px;
  transition: transform .15s ease, color .15s ease;
}
.rating-stars button:hover { transform: scale(1.15); }
.rating-stars button.active { color: var(--accent-1); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.rating-form-card textarea {
  width: 100%;
  margin-bottom: 16px;
  resize: vertical;
}

/* =========================== CONTACT =========================== */
.contact-card {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info .eyebrow { color: var(--accent-1); }
.contact-info .section-title { color: white; }
.contact-info p { opacity: 0.92; margin: 14px 0 24px; }
.contact-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.contact-list i {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.contact-list a { color: white; font-weight: 700; }
.contact-visual { position: relative; min-height: 280px; }
.contact-blob {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.4), transparent 60%);
  border-radius: 50%;
}
.contact-icon-1, .contact-icon-2, .contact-icon-3, .contact-icon-4 {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: white;
  color: var(--blue-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  animation: bob 5s ease-in-out infinite;
}
.contact-icon-1 { top: 10%; left: 10%; }
.contact-icon-2 { top: 12%; right: 14%; animation-delay: 1s; background: var(--accent-1); color: var(--ink); }
.contact-icon-3 { bottom: 18%; left: 20%; animation-delay: 1.5s; background: var(--accent-2); color: white; }
.contact-icon-4 { bottom: 12%; right: 8%; animation-delay: .5s; background: #25d366; color: white; }

/* =========================== FOOTER =========================== */
.footer {
  background: var(--ink);
  color: white;
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .brand { color: white; }
.footer .brand-name-accent { color: var(--accent-1); }
.footer-tag {
  margin-top: 14px; max-width: 380px;
  color: rgba(255,255,255,0.7); font-size: 14px;
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-cols h5 {
  font-size: 12px; letter-spacing: 0.2em; color: var(--accent-1);
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-cols a {
  display: block; padding: 4px 0;
  color: rgba(255,255,255,0.75); font-size: 14px;
  transition: color .2s ease;
}
.footer-cols a:hover { color: white; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* =========================== FLOATING WA =========================== */
.float-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-wa);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform .2s ease;
  animation: pulseWa 2.6s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); }

/* =========================== TOAST =========================== */
.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  z-index: 60;
  transition: transform .35s cubic-bezier(.2,.7,.3,1.2);
  display: flex; align-items: center; gap: 8px;
  max-width: 92vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: linear-gradient(135deg, #16a34a, #15803d); }
.toast.warn { background: linear-gradient(135deg, #f59e0b, #d97706); }
.toast.error { background: linear-gradient(135deg, #ef4444, #b91c1c); }

/* =========================== ANIMATIONS =========================== */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37,211,102,0); }
}
@keyframes drum-spin {
  to { transform: rotate(360deg); }
}
@keyframes floatBubble {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -12px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 980px) {
  .hero { padding: 40px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; max-width: 360px; margin: 0 auto; }
  .bubble-card { max-width: 360px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .contact-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .contact-visual { min-height: 220px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    padding: 18px 24px;
    gap: 14px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
  }
  .hero-title { font-size: 38px; }
  .hero-stats { gap: 24px; }
  .stat strong { font-size: 22px; }
  .calc-item {
    grid-template-columns: 1fr 1fr;
  }
  .calc-item-remove { grid-column: 2; justify-self: end; }
  .calc-item > div:nth-child(3) { grid-column: 1 / -1; }
  .calc-form { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 32px 22px; }
  .section-head { margin-bottom: 36px; }
}
@media (max-width: 420px) {
  .container { width: 94vw; }
  .hero-title { font-size: 32px; }
  .btn-lg { padding: 14px 20px; font-size: 15px; }
  .svc-card { padding: 22px; }
  .calc-card, .rating-form-card { padding: 22px; }
  .summary-card { padding: 22px; }
}