/* ===== CSS Custom Properties ===== */
:root {
  --color-bg: #0d0d0f;
  --color-surface: #16161a;
  --color-surface-2: #1e1e24;
  --color-accent: #7c6cff;
  --color-accent-light: #b8adff;
  --color-accent-glow: #7c6cff40;
  --color-text: #e8e8f0;
  --color-muted: #8b8ba0;
  --color-border: #2a2a35;
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 64px;
  --transition: 0.2s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem); }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-heading { margin-bottom: 1rem; }
.section-sub { color: var(--color-muted); max-width: 52ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-light);
  box-shadow: 0 0 24px var(--color-accent-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ===== Layout Utilities ===== */
.container {
  width: min(1100px, 100% - 3rem);
  margin-inline: auto;
}
.section-pad { padding-block: 6rem; }
.section-pad-sm { padding-block: 4rem; }
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.accent { color: var(--color-accent); }

/* ===== NAV ===== */
#nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-text); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: color var(--transition);
}
.nav-overlay a:hover { color: var(--color-accent); }

/* ===== HERO ===== */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Pure CSS dot grid — no DOM spam */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #7c6cff22 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.hero-h1 { margin-bottom: 1.25rem; }
.hero-h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 58ch;
  margin-bottom: 1rem;
}
.hero-audit {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}
.hero-audit a {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* Dot grid pulse */
@media (prefers-reduced-motion: no-preference) {
  .hero-dot-grid { animation: dotPulse 6s ease-in-out infinite; }
  @keyframes dotPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
}

/* ===== STATS BAR ===== */
#stats {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--color-border);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.85rem; color: var(--color-muted); }

/* ===== SERVICES ===== */
#services { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 32px var(--color-accent-glow);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--color-accent); }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-link { font-size: 0.85rem; color: var(--color-accent); }
.service-link:hover { text-decoration: underline; }

/* ===== ABOUT ===== */
#about { background: var(--color-surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-bar {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  z-index: -1;
  opacity: 0.4;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--color-muted); margin-bottom: 1rem; }
.about-name { font-weight: 600; color: var(--color-text); }
.about-title { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 2rem; }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.trust-logo {
  opacity: 0.4;
  transition: opacity var(--transition);
  height: 20px;
  color: var(--color-text);
}
.trust-logo:hover { opacity: 0.8; }
.trust-logos-label { font-size: 0.75rem; color: var(--color-muted); width: 100%; }

/* ===== PROCESS ===== */
#process { background: var(--color-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed var(--color-border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--color-muted); }

/* ===== PORTFOLIO ===== */
#portfolio { background: var(--color-surface); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.portfolio-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  overflow: hidden;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-body { padding: 1.5rem; }
.portfolio-tag {
  display: inline-block;
  background: var(--color-accent-glow);
  color: var(--color-accent-light);
  border-radius: 99px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.portfolio-body h3 { margin-bottom: 0.5rem; }
.portfolio-body p { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.portfolio-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border-radius: 99px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.portfolio-link { font-size: 0.85rem; color: var(--color-accent); }
.portfolio-link:hover { text-decoration: underline; }
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--color-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 16px; height: 16px; color: #fbbf24; fill: currentColor; }
.testimonial-quote { font-size: 0.95rem; color: var(--color-muted); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-meta { font-size: 0.8rem; color: var(--color-muted); }

/* ===== PRICING ===== */
#pricing { background: var(--color-surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 40px var(--color-accent-glow);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-name { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 0.5rem; }
.pricing-price {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.pricing-note { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.pricing-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 1.5rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.pricing-feature svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.pricing-exclude { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.pricing-cta { width: 100%; text-align: center; justify-content: center; }
.pricing-reassurance {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
#faq { background: var(--color-bg); }
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.faq-cta a { color: var(--color-accent-light); text-decoration: underline; }

/* ===== CONTACT ===== */
#contact { background: var(--color-surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.contact-detail svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--color-accent-light); }
.contact-detail a:hover { text-decoration: underline; }
.contact-promise {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--color-accent-glow);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--color-accent-light);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--color-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; }
.form-status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.success { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); display: block; }
.form-status.error { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.3); display: block; }
.contact-book {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.contact-book a { color: var(--color-accent-light); text-decoration: underline; }
.honeypot { display: none !important; }

/* ===== FOOTER ===== */
#footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--color-muted); font-size: 0.9rem; margin-top: 1rem; max-width: 28ch; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--color-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.footer-back-top { color: var(--color-accent); transition: opacity var(--transition); }
.footer-back-top:hover { opacity: 0.7; }

/* ===== FLOATING: WhatsApp ===== */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .wa-btn { animation: waBounce 0.6s ease 1s 2 alternate; }
  @keyframes waBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
  }
}

/* ===== STICKY CTA BAR ===== */
.sticky-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  /* z-index below nav (100) so nav always sits on top */
  z-index: 99;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-accent);
  padding: 0.6rem 0;
}
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
}
.sticky-bar p { font-size: 0.9rem; color: var(--color-muted); }
.sticky-bar p strong { color: var(--color-text); }
.sticky-bar-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: color var(--transition);
}
.sticky-bar-close:hover { color: var(--color-text); }

/* Vue transition: slides down from behind the nav */
.sticky-slide-enter-active,
.sticky-slide-leave-active { transition: transform 0.3s ease, opacity 0.3s ease; }
.sticky-slide-enter-from,
.sticky-slide-leave-to { transform: translateY(-100%); opacity: 0; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.875rem; color: var(--color-muted); flex: 1; min-width: 260px; }
.cookie-inner a { color: var(--color-accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* Cookie banner Vue transition */
.cookie-slide-enter-active,
.cookie-slide-leave-active { transition: transform 0.3s ease; }
.cookie-slide-enter-from,
.cookie-slide-leave-to { transform: translateY(100%); }

/* FAQ answer Vue transition */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .sticky-bar-inner { flex-direction: column; gap: 0.5rem; }
  .sticky-bar-close { top: 0.75rem; transform: none; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .wa-btn { bottom: 1.25rem; right: 1.25rem; }
}
