/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #080808;
  --surface:   #0f0f0f;
  --surface2:  #131313;
  --border:    #1e1e1e;
  --gold:      #C8A96E;
  --gold-dim:  #7a6340;
  --gold-pale: rgba(200,169,110,0.08);
  --text:      #F0EDE8;
  --muted:     #6b6860;
  --muted2:    #4a4845;
  --white:     #ffffff;
  --green:     #25D366;
  --radius:    6px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --bg-rgb:    8,8,8;
  --pain-fade: #0a0800;
  --heading:   var(--white);
}

/* ── THEME: LIGHT MODE ────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #FAF8F3;
  --surface:   #FFFFFF;
  --surface2:  #F4F0E6;
  --border:    #E7E1D3;
  --gold-pale: rgba(200,169,110,0.14);
  --text:      #1C1811;
  --muted:     #6b6357;
  --muted2:    #9A9184;
  --bg-rgb:    250,248,243;
  --pain-fade: var(--surface2);
  --heading:   #1C1811;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── SCROLL PROGRESS ─────────────────────────────────────── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(200,169,110,0.6);
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem;
  min-height: 68px;
  box-sizing: border-box;
  background: rgba(var(--bg-rgb),0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(30,30,30,0.6);
  transition: padding 0.3s var(--ease), min-height 0.3s var(--ease);
}
nav.scrolled { padding: 0.8rem 2rem; min-height: 58px; }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: #080808;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-cta:hover { opacity: 0.86; transform: translateY(-1px); }

/* ── THEME TOGGLE ────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface2);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold-dim); transform: translateY(-1px); }
.theme-toggle svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 4px;
  margin: -4px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(var(--bg-rgb),0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  background: var(--gold) !important;
  color: #080808 !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none !important;
}

@media (max-width: 1050px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.up {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,110,0.18) 0%, transparent 70%);
  top: -250px; right: -150px;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 70%);
  bottom: -100px; left: -150px;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.06); }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2.25rem;
  width: fit-content;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: var(--heading);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.35s forwards;
}

.hero h1 .type-target {
  color: var(--gold);
  font-style: italic;
  position: relative;
}
.type-cursor {
  display: inline-block;
  width: 3px;
  background: var(--gold);
  margin-left: 3px;
  border-radius: 1px;
  animation: blink 0.85s step-end infinite;
  vertical-align: baseline;
  height: 0.85em;
  position: relative;
  top: 0.05em;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.65s forwards;
}

.btn-primary {
  background: var(--gold);
  color: #080808;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, transform 0.2s var(--ease), background 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold-dim);
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.8s forwards;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--heading);
  display: block;
  line-height: 1;
}
.stat-num .counter { display: inline; }

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 0.4rem;
}

/* Client trust strip */
.client-strip {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1s forwards;
}
.client-strip-label {
  font-size: 0.7rem;
  color: var(--muted2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.client-names {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.client-name-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.client-name-item:hover { color: var(--gold); }

@media (max-width: 640px) {
  .client-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
  .client-names {
    gap: 0.6rem 1.5rem;
  }
}

/* ── SECTION COMMON ──────────────────────────────────────── */
section { padding: 4.5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  font-weight: 300;
  font-size: 0.97rem;
}

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── NICHES ──────────────────────────────────────────────── */
.niches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}

.niches-6 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .niches-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .niches-6 { grid-template-columns: 1fr; }
}

.niche-card {
  background: var(--surface);
  padding: 2rem 1.5rem;
  transition: background 0.25s;
  cursor: default;
}
.niche-card:hover { background: var(--surface2); }
.niche-card:hover .niche-icon { transform: scale(1.15); }

.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s var(--ease);
}
.niche-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}
.niche-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

/* ── SERVICES ACCORDION ──────────────────────────────────── */
.svc-accordion { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.svc-item { border-top: 1px solid var(--border); }
.svc-item:first-child { border-top: none; }
.svc-q {
  width: 100%; background: var(--surface); border: none;
  color: var(--text); font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem; text-align: left;
  padding: 1.3rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.25s, color 0.2s;
}
.svc-q:hover { background: var(--surface2); color: var(--gold); }
.svc-q-left { display: flex; align-items: center; gap: 0.75rem; }
.svc-emoji { font-size: 1.15rem; }
.svc-icon {
  font-size: 1.25rem; color: var(--gold-dim);
  transition: transform 0.3s var(--ease), color 0.2s;
  flex-shrink: 0; line-height: 1;
}
.svc-item.open .svc-icon { transform: rotate(45deg); color: var(--gold); }
.svc-item.open .svc-q { color: var(--gold); background: var(--surface2); }
.svc-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); background: var(--surface); }
.svc-a-inner { padding: 0 1.5rem 1.5rem; }
.svc-item.open .svc-a { max-height: 700px; }
.svc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.6rem 1.5rem; list-style: none; }
.svc-list li {
  font-size: 0.87rem; color: var(--muted); font-weight: 300;
  padding-left: 1.3rem; position: relative; line-height: 1.5;
}
.svc-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold);
  font-weight: 700; font-size: 0.8rem;
}

/* ── FEATURE GRID (Multi-Location / Custom Website) ─────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem; margin-top: 2rem;
}
.feature-chip {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 1rem 1.1rem; font-size: 0.85rem; color: var(--text);
  background: var(--surface); display: flex; align-items: center; gap: 0.6rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.feature-chip:hover { border-color: var(--gold-dim); background: var(--gold-pale); transform: translateY(-2px); }
.feature-chip::before { content: '◆'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ── AUTOMATION CARDS ─────────────────────────────────────── */
.automation-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.automation-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 1.75rem 1.5rem; background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.automation-card:hover { border-color: var(--gold-dim); background: var(--surface2); transform: translateY(-4px); }
.automation-icon { font-size: 1.5rem; display: block; margin-bottom: 0.9rem; transition: transform 0.3s var(--ease); }
.automation-card:hover .automation-icon { transform: scale(1.15) rotate(-5deg); }
.automation-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--heading); margin-bottom: 0.4rem; }
.automation-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ── COMPACT SUBSECTIONS (avoid stacking full section padding) ── */
.subsection { margin-top: 4rem; }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  text-decoration: none;
  display: block;
}
.portfolio-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.portfolio-card:hover .portfolio-preview img {
  transform: scale(1.04);
}

.portfolio-preview {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #131108, #1a1a0d);
}
.portfolio-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s var(--ease);
}
.portfolio-preview-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
}

.portfolio-info { padding: 1.4rem 1.5rem; }

.portfolio-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.portfolio-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.portfolio-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.06em;
  transition: gap 0.2s;
}
.portfolio-card:hover .portfolio-link { gap: 0.8rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--heading);
}

.author-biz {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ── WHY TAKO ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--surface);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
}
.why-card:hover { background: var(--surface2); }

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

.step {
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.step:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.step:hover::after { width: 100%; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.6rem;
}

.step-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1050px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.pricing-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: var(--gold);
  background: #0e0d08;
  position: relative;
}
.pricing-card.featured:hover { transform: translateY(-5px); }

.pricing-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: #080808;
  padding: 0.28rem 0.8rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1.75rem;
}

.pricing-card--elite {
  border-color: #b8a060;
  background: linear-gradient(145deg, #0d0c07, #111008);
  position: relative;
  box-shadow: 0 0 0 1px rgba(200,169,110,0.18), 0 12px 40px rgba(0,0,0,0.5);
}
.pricing-card--elite:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(200,169,110,0.35), 0 20px 60px rgba(0,0,0,0.6);
}
.pricing-card--elite .pricing-price { color: #e8c96a; }

.pricing-badge--elite {
  background: linear-gradient(90deg, #c8a96e, #e8c96a, #c8a96e);
  color: #080808;
  letter-spacing: 0.2em;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0;
}
.pricing-price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  flex: 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
/* These two cards keep a permanently-dark background as a premium accent,
   even in light mode — so their body text must stay light regardless of theme. */
.pricing-card.featured .pricing-features li,
.pricing-card--elite .pricing-features li { color: var(--white); }
.pricing-card.featured .pricing-name,
.pricing-card--elite .pricing-name { color: var(--white); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.8;
  font-size: 0.93rem;
}

.contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #128C7E;
  color: #fff;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  margin-bottom: 2rem;
  width: fit-content;
}
.contact-wa:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.25);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact-detail strong {
  color: var(--text);
  min-width: 100px;
  font-weight: 500;
}

form { display: flex; flex-direction: column; gap: 0.85rem; }

form input, form select, form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
form input::placeholder, form textarea::placeholder { color: var(--muted2); }
form input:focus, form select:focus, form textarea:focus {
  border-color: var(--gold-dim);
  background: var(--surface2);
}
form select { appearance: none; cursor: pointer; }
form textarea { resize: vertical; min-height: 100px; }
form select option { background: var(--surface2); color: var(--text); }

.form-submit {
  background: var(--gold);
  color: #080808;
  border: none;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}
.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,110,0.25);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted2);
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── FLOATING WA BUTTON ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── AVAILABILITY BADGE ──────────────────────────────────── */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
@media (max-width: 1050px) { .avail-badge { display: none; } }
@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .about-grid > div:last-child { justify-content: center !important; }
}

/* ── STICKY CTA BAR ──────────────────────────────────────── */
#sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: rgba(var(--bg-rgb),0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
#sticky-cta.show { transform: translateY(0); }
.sticky-cta-text { font-size: 0.85rem; color: var(--muted); font-weight: 300; }
.sticky-cta-text strong { color: var(--text); font-weight: 600; }
.sticky-cta-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.sticky-close {
  background: none; border: none;
  color: var(--muted2); font-size: 1.2rem;
  cursor: pointer; padding: 0.25rem; line-height: 1;
  transition: color 0.2s;
}
.sticky-close:hover { color: var(--text); }
@media (max-width: 500px) {
  .sticky-cta-text { display: none; }
  #sticky-cta { justify-content: center; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); overflow: hidden; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text); font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.97rem; text-align: left;
  padding: 1.4rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.25rem; color: var(--gold-dim);
  transition: transform 0.3s var(--ease), color 0.2s;
  flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner {
  padding-bottom: 1.5rem;
  font-size: 0.87rem; color: var(--muted);
  line-height: 1.8; font-weight: 300; max-width: 680px;
}
.faq-item.open .faq-a { max-height: 600px; }

/* ── PAIN SECTION ─────────────────────────────────────────── */
.pain-section {
  background: linear-gradient(180deg, var(--pain-fade) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.pain-card {
  background: #080600;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: #ff3333;
  opacity: 0.6;
}
.pain-emoji { font-size: 1.5rem; margin-bottom: 0.85rem; display: block; }
.pain-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ff6666;
  margin-bottom: 0.4rem;
}
.pain-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── SOCIAL PROOF TICKER ─────────────────────────────────── */
.proof-ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.proof-ticker::before,
.proof-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.proof-ticker::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.proof-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
  border-right: 1px solid var(--border);
}
.ticker-item .ti-icon { color: var(--gold); font-size: 0.9rem; }
.ticker-item strong { color: var(--text); }

/* ── LOSS AVERSION CTA BLOCK ─────────────────────────────── */
.loss-block {
  background: linear-gradient(135deg, #0e0b00 0%, #080808 50%, #0a0600 100%);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem 0 0;
}
.loss-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.loss-block-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff4444;
  display: block;
  margin-bottom: 1.25rem;
}
.loss-block h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.loss-block h2 em { color: var(--gold); font-style: normal; }
.loss-block p {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.loss-block-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.loss-counter-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.loss-stat { text-align: center; }
.loss-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.loss-stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.3rem;
}


/* ── PAYMENT MODAL ────────────────────────────────────────── */
.pay-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pay-modal-overlay.open { display: flex; }
.pay-modal {
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,169,110,0.1);
  text-align: center;
  animation: modal-in 0.35s cubic-bezier(0.22,1,0.36,1);
}
@keyframes modal-in {
  from { opacity:0; transform: translateY(24px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.pay-modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.5rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.pay-modal-close:hover { color: var(--text); }
.pay-modal-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.pay-modal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.pay-modal-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0 0.3rem;
}
.pay-modal-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pay-modal-sub strong { color: var(--text); }
.pay-qr-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.pay-qr-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.pay-upi-id {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  display: block;
}
.pay-upi-copy {
  background: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  margin-bottom: 1.25rem;
}
.pay-upi-copy:hover { background: rgba(200,169,110,0.15); }
.pay-modal-note {
  font-size: 0.75rem;
  color: var(--muted2);
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.pay-modal-note strong { color: var(--muted); }
.pay-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
  text-align: left;
}
.pay-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.pay-step-num {
  width: 20px; height: 20px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-wa-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: #0a2008;
  border: 1px solid #1a4a10;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: #4CAF50;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.pay-wa-after:hover { background: #0f2d0a; }
/* Pricing pay note */
.pricing-pay-note {
  font-size: 0.7rem;
  color: var(--gold);
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── TERMS MODAL ─────────────────────────────────────────── */
.terms-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.terms-modal-overlay.open { display: flex; }
.terms-modal {
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  padding: 2.25rem 2rem 2rem;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,169,110,0.1);
  animation: modal-in 0.35s cubic-bezier(0.22,1,0.36,1);
}
.terms-modal::-webkit-scrollbar { width: 6px; }
.terms-modal::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
.terms-modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.5rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.terms-modal-close:hover { color: var(--text); }
.terms-modal-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.terms-modal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.terms-modal-updated {
  font-size: 0.72rem;
  color: var(--muted2);
  margin-bottom: 1.5rem;
}
.terms-section { margin-bottom: 1.35rem; }
.terms-section:last-child { margin-bottom: 0; }
.terms-section h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}
.terms-section p, .terms-section li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.terms-section ul {
  padding-left: 1.1rem;
  margin-top: 0.3rem;
}
.terms-section li { margin-bottom: 0.3rem; }
.terms-section strong { color: var(--text); font-weight: 500; }
.terms-modal-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted2);
  line-height: 1.6;
}

/* ── GUARANTEE STRIP ─────────────────────────────────────── */
.guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.guarantee-item .gi-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── PARTICLE CANVAS ──────────────────────────────────────── */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  #particle-canvas { display: none; }
}
/* ── ABOUT SECTION MOBILE ─────────────────────────────────── */
@media (max-width: 720px) {
  #about .container > div {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  #about .container > div > div:last-child {
    justify-content: center !important;
    margin: 0 auto;
  }
}

/* ── ADMIN PANEL ─────────────────────────────────────────── */
#admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  overflow-y: auto;
}
#admin-overlay.active { display: block; }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-login-box {
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.admin-login-box h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.admin-login-box p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.admin-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.admin-input:focus { border-color: var(--gold-dim); }
.admin-login-err {
  font-size: 0.78rem;
  color: #e05252;
  margin-bottom: 0.8rem;
  display: none;
}
.admin-login-err.show { display: block; }

/* Admin dashboard */
.admin-dash {
  display: none;
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.admin-dash.active { display: block; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.admin-header h1 span { color: var(--gold); }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.admin-stat-card .stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}
.admin-stat-card .stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-search {
  flex: 1;
  min-width: 200px;
}
.admin-filter-select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  outline: none;
  cursor: pointer;
}
.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.admin-table th {
  background: var(--surface2);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(30,30,30,0.6);
  color: var(--text);
  vertical-align: top;
  max-width: 220px;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(200,169,110,0.03); }
.admin-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-salon    { background: rgba(200,169,110,0.15); color: var(--gold); }
.badge-clinic   { background: rgba(100,180,255,0.12); color: #7ab8f5; }
.badge-cafe     { background: rgba(180,120,60,0.15);  color: #c8885a; }
.badge-construction { background: rgba(130,200,130,0.12); color: #7dd47d; }
.badge-other    { background: rgba(150,150,150,0.12); color: var(--muted); }
.admin-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.admin-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.admin-spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.admin-msg-cell {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.admin-date { color: var(--muted); font-size: 0.75rem; }
.admin-logout-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.admin-logout-btn:hover { color: var(--text); border-color: var(--muted); }
.admin-refresh-btn {
  background: var(--gold-pale);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.admin-refresh-btn:hover { background: rgba(200,169,110,0.15); }
.admin-delete-btn {
  background: transparent;
  border: none;
  color: #6b3535;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.admin-delete-btn:hover { color: #e05252; background: rgba(224,82,82,0.08); }
.admin-csv-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.admin-csv-btn:hover { color: var(--text); border-color: var(--muted); }

/* ══════════ CONFIGURATOR ══════════ */
#configurator { padding: 6rem 0 8rem; position: relative; }
.cfg-shell { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .cfg-shell { grid-template-columns: 1fr; } }

.cfg-progress { display: flex; gap: 0.4rem; margin: 2rem 0 2.5rem; flex-wrap: wrap; }
.cfg-progress-step { flex: 1; min-width: 28px; height: 3px; background: var(--border); border-radius: 2px; transition: background 0.3s var(--ease); }
.cfg-progress-step.active, .cfg-progress-step.done { background: var(--gold); }
.cfg-step-label { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.cfg-step-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.75rem; }

.cfg-panel { display: none; }
.cfg-panel.active { display: block; animation: cfgIn 0.4s var(--ease); }
@keyframes cfgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.cfg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.cfg-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1.25rem; cursor: pointer; transition: all 0.25s var(--ease); position: relative; }
.cfg-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.cfg-card.selected { border-color: var(--gold); background: var(--gold-pale); box-shadow: 0 0 0 1px var(--gold) inset; }
.cfg-card-name { font-weight: 600; margin-bottom: 0.3rem; }
.cfg-card-price { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.cfg-card-desc { color: var(--muted); font-size: 0.8rem; margin-top: 0.4rem; line-height: 1.5; }
.cfg-card-check { position: absolute; top: 0.9rem; right: 0.9rem; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--muted2); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: transparent; }
.cfg-card.selected .cfg-card-check { border-color: var(--gold); background: var(--gold); color: #000; }

.cfg-feat-list { display: grid; gap: 0.75rem; }
.cfg-feat { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1rem 1.25rem; cursor: pointer; transition: all 0.2s var(--ease); }
.cfg-feat:hover { border-color: var(--gold-dim); }
.cfg-feat.selected { border-color: var(--gold); background: var(--gold-pale); }
.cfg-feat-left { display: flex; align-items: center; gap: 0.9rem; }
.cfg-feat-box { width: 18px; height: 18px; flex-shrink: 0; border-radius: 4px; border: 1.5px solid var(--muted2); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: transparent; }
.cfg-feat.selected .cfg-feat-box { border-color: var(--gold); background: var(--gold); color: #000; }
.cfg-feat-name { font-weight: 500; font-size: 0.92rem; }
.cfg-feat-desc { color: var(--muted); font-size: 0.78rem; margin-top: 0.15rem; }
.cfg-feat-price { color: var(--gold); font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.cfg-feat-note { color: var(--muted); font-size: 0.72rem; font-style: italic; margin-top: 0.2rem; }

.cfg-field { margin-bottom: 1.1rem; }
.cfg-field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }
.cfg-field input, .cfg-field select, .cfg-field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--text); font-family: inherit; font-size: 0.95rem; min-height: 44px;
}
.cfg-field input:focus, .cfg-field select:focus, .cfg-field textarea:focus { outline: none; border-color: var(--gold-dim); }
.cfg-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .cfg-field-row { grid-template-columns: 1fr; } }

.cfg-loc-block { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; background: var(--surface); }
.cfg-loc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; }
.cfg-loc-remove { color: #e05252; background: none; border: none; font-size: 0.8rem; cursor: pointer; }
.cfg-add-loc { border: 1px dashed var(--muted2); border-radius: var(--radius); padding: 0.9rem; width: 100%; background: none; color: var(--muted); cursor: pointer; font-size: 0.85rem; min-height: 44px; }
.cfg-add-loc:hover { border-color: var(--gold-dim); color: var(--text); }

.cfg-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 2.5rem; padding: 0.85rem;
  position: sticky; bottom: 1rem; z-index: 50;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.cfg-btn {
  padding: 0.9rem 1.75rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; min-height: 48px; min-width: 44px; border: 1px solid var(--border);
  background: none; color: var(--text);
  transition: transform 0.15s var(--ease), opacity 0.15s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cfg-btn-primary {
  background: var(--gold); color: #000; border-color: var(--gold);
  flex: 1; font-size: 0.95rem; box-shadow: 0 4px 18px rgba(200,169,110,0.28);
}
.cfg-btn-primary:hover { background: var(--gold-dim); transform: translateY(-1px); }
.cfg-btn-primary:active { transform: translateY(0) scale(0.98); }
.cfg-btn:hover { border-color: var(--gold-dim); }
.cfg-btn:active { transform: scale(0.97); }
.cfg-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.cfg-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 900px) {
  /* the Live Estimate summary becomes a fixed bottom sheet (up to 40vh) below
     this breakpoint — keep cfg-nav sticky but clear it, don't stack fixed
     elements on top of each other */
  .cfg-nav { bottom: calc(40vh + 0.75rem); }
}

.cfg-summary { position: sticky; top: 6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1.5rem; }
.cfg-summary h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.cfg-sum-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); gap: 0.5rem; }
.cfg-sum-row span:first-child { color: var(--muted); }
.cfg-sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gold-dim); }
.cfg-sum-total-label { font-size: 0.85rem; color: var(--muted); }
.cfg-sum-total-val { font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.cfg-sum-delivery { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; }

@media (max-width: 900px) {
  .cfg-summary { position: fixed; bottom: 0; left: 0; right: 0; top: auto; border-radius: 16px 16px 0 0; z-index: 500;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5); max-height: 40vh; overflow-y: auto; }
}

.cfg-review-block { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.cfg-review-block h5 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.cfg-review-block p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.25rem; }
.cfg-edit-link { color: var(--gold); font-size: 0.78rem; cursor: pointer; text-decoration: underline; }

.cfg-success { text-align: center; padding: 3rem 1rem; }
.cfg-success-id { font-family: monospace; color: var(--gold); font-size: 1.1rem; margin: 1rem 0; letter-spacing: 0.05em; }

/* ── SMALL PHONES (320–380px) ────────────────────────────── */
@media (max-width: 380px) {
  nav { padding: 1rem 1.15rem; }
  nav.scrolled { padding: 0.7rem 1.15rem; }
  .mobile-menu { padding: 1.25rem 1.15rem 1.75rem; }
  .hero { padding: 7.5rem 1.15rem 3.5rem; }
  .hero-stats { gap: 2rem; margin-top: 3rem; }
  section { padding: 3.5rem 1.15rem; }
  footer { padding: 2rem 1.15rem; }
  #sticky-cta { padding: 0.8rem 1.15rem; }
  .loss-block { padding: 2.25rem 1.25rem; }
  .loss-counter-row { gap: 1.75rem; }
  .pay-modal, .terms-modal { padding: 1.75rem 1.25rem 1.5rem; }
  .admin-dash { padding: 1.25rem 1.15rem; }
  .cfg-card, .automation-card, .step, .pricing-card { padding-left: 1.15rem; padding-right: 1.15rem; }
}
