:root {
  --bg: #06070b;
  --bg2: #0a0c13;
  --panel: rgba(255,255,255,0.03);
  --line: rgba(255,255,255,0.09);
  --text: #eceef5;
  --muted: #8d93a6;
  --dim: #5d6273;
  --accent: #ffb000;
  --accent2: #ffcf57;
  --accent-rgb: 255,176,0;
  --green: #2ee6a6;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent2); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(var(--accent-rgb),0.08);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

/* ── Section titles ── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--text);
}

section {
  padding: 80px 0;
}

/* ── Nav ── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6,7,11,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.3);
}

/* ── Hero ── */
.hero {
  padding: 140px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 24px;
  background: linear-gradient(120deg, #fff 10%, var(--accent2) 50%, var(--accent) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  color: var(--bg);
  background: var(--accent);
}

.btn-primary:hover {
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb),0.35);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* ── Services Grid ── */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.1) 0%, rgba(var(--accent-rgb),0.02) 100%);
  border-top: 1px solid rgba(var(--accent-rgb),0.15);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.15);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

/* ── Video ── */
.video-section { background: var(--bg); }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Branches ── */
.branches { background: var(--bg2); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.branch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}

.branch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}

.branch-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.branch-address {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.branch-phone {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.branch-phone a { color: var(--text); }
.branch-phone a:hover { color: var(--accent); }

.branch-map {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── Products ── */
.products { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
}

.product-image {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-info {
  padding: 24px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.product-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

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

/* ── Gallery ── */
.gallery { background: var(--bg2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(255,255,255,0.14);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ── About ── */
.about { background: var(--bg); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Testimonials ── */
.testimonials { background: var(--bg2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.stars { margin-bottom: 12px; }

.star {
  color: var(--accent);
  font-size: 1.1rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ── Contact ── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--accent); }

/* ── Footer ── */
.landing-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.landing-footer p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── bchat Widget Overrides (dark theme) ── */
#agent-chat-widget {
  --acw-accent: var(--accent) !important;
}

#acw-panel {
  background: var(--bg2) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
}

#acw-panel-header {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--line) !important;
}

#acw-panel-messages {
  background: var(--bg2) !important;
}

#acw-input-area {
  background: var(--bg) !important;
  border-top: 1px solid var(--line) !important;
}

#acw-input {
  background: var(--bg2) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
}

#acw-input::placeholder {
  color: var(--dim) !important;
}

/* ── Nav Brand Accent ── */
.nav-brand-accent {
  color: var(--accent);
}

/* ── Button Sizes ── */
.btn-lg {
  padding: 16px 36px;
  font-size: 0.85rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════ */

/* ── Home Hero ── */
.home-hero {
  padding: 140px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb),0.06) 0%, transparent 60%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 24px;
  background: linear-gradient(120deg, #fff 10%, var(--accent2) 50%, var(--accent) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.home-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.03em;
}

/* ── Hero Mockup ── */
.hero-mockup {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.8);
}

.mockup-browser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dim);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-url {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--bg2);
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
}

.mockup-content {
  padding: 24px;
}

.mockup-hero-block {
  margin-bottom: 20px;
}

.mockup-text-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 10px;
}

.mockup-text-line.long { width: 80%; }
.mockup-text-line.medium { width: 55%; }

.mockup-btn-placeholder {
  width: 120px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent);
  opacity: 0.7;
  margin-top: 12px;
}

.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.mockup-chat-bubble {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  animation: pulse-glow 2s ease-in-out infinite;
}

.chat-bubble-icon {
  font-size: 1rem;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(var(--accent-rgb),0.2); }
}

/* ── Problem Section ── */
.home-problem {
  background: var(--bg2);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
}

.problem-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.problem-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.problem-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Solution / How It Works ── */
.home-solution {
  background: var(--bg);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(var(--accent-rgb),0.2) 100%);
  margin-top: 64px;
  flex-shrink: 0;
}

/* ── Demo Gallery ── */
.home-demo {
  background: var(--bg2);
}

.home-demo-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.demo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.demo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.demo-item:hover {
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
}

.demo-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.demo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(6,7,11,0.9));
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── Features ── */
.home-features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.home-faq {
  background: var(--bg2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Final CTA ── */
.home-cta-final {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.12) 0%, rgba(var(--accent-rgb),0.02) 100%);
  border-top: 1px solid rgba(var(--accent-rgb),0.15);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.15);
  text-align: center;
  padding: 100px 0;
}

.home-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.home-cta-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   HOMEPAGE RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-inner,
  .about-inner,
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero,
  .home-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-image { order: -1; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .home-hero-visual {
    order: -1;
  }

  .problem-grid,
  .features-grid,
  .demo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(var(--accent-rgb),0.2) 100%);
    margin: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 16px; }

  .hero-title,
  .home-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-actions,
  .home-hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .home-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .problem-grid,
  .features-grid,
  .demo-gallery,
  .services-grid,
  .testimonials-grid,
  .branches-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner { padding: 0 16px; }

  .home-hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .mockup-cards-row {
    grid-template-columns: 1fr;
  }

  section { padding: 48px 0; }
}

/* ══════════════════════════════════════════════
   THEME LAYOUT VARIANTS
   ══════════════════════════════════════════════ */

/* ── Hero Variants ── */

/* centered: text centered, image below or hidden */
.theme-hero-centered .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.theme-hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-hero-centered .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.theme-hero-centered .hero-actions {
  justify-content: center;
}
.theme-hero-centered .hero-image {
  order: -1;
  max-width: 700px;
  margin: 0 auto;
}

/* full-image: full-width background image with text overlay */
.theme-hero-full.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
}
.theme-hero-full .hero-inner {
  position: relative;
  z-index: 2;
}
.theme-hero-full .hero-content {
  max-width: 600px;
}
.theme-hero-full .hero-image {
  display: none;
}

/* no-image: text only, no hero image */
.theme-hero-no-image .hero-image {
  display: none;
}
.theme-hero-no-image .hero-inner {
  grid-template-columns: 1fr;
  max-width: 700px;
}
.theme-hero-no-image .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-hero-no-image .hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.theme-hero-no-image .hero-actions {
  justify-content: center;
}

/* ── Card Variants ── */

/* flat: solid background, no border, no shadow */
.theme-cards-flat .card,
.theme-cards-flat .problem-card,
.theme-cards-flat .feature-card,
.theme-cards-flat .faq-item {
  background: var(--bg2);
  border: none;
  box-shadow: none;
}
.theme-cards-flat .card:hover,
.theme-cards-flat .problem-card:hover,
.theme-cards-flat .feature-card:hover,
.theme-cards-flat .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

/* solid: solid background with border, subtle lift */
.theme-cards-solid .card,
.theme-cards-solid .problem-card,
.theme-cards-solid .feature-card,
.theme-cards-solid .faq-item {
  background: var(--bg2);
  border: 1px solid var(--line);
}
.theme-cards-solid .card:hover,
.theme-cards-solid .problem-card:hover,
.theme-cards-solid .feature-card:hover,
.theme-cards-solid .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
}

/* glow: accent-colored glow shadow on hover */
.theme-cards-glow .card,
.theme-cards-glow .problem-card,
.theme-cards-glow .feature-card,
.theme-cards-glow .faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
}
.theme-cards-glow .card:hover,
.theme-cards-glow .problem-card:hover,
.theme-cards-glow .feature-card:hover,
.theme-cards-glow .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(var(--accent-rgb),0.25), 0 24px 60px -20px rgba(0,0,0,0.8);
  border-color: rgba(var(--accent-rgb),0.3);
}

/* outlined: border only, transparent background */
.theme-cards-outlined .card,
.theme-cards-outlined .problem-card,
.theme-cards-outlined .feature-card,
.theme-cards-outlined .faq-item {
  background: transparent;
  border: 1px solid var(--line);
}
.theme-cards-outlined .card:hover,
.theme-cards-outlined .problem-card:hover,
.theme-cards-outlined .feature-card:hover,
.theme-cards-outlined .faq-item:hover {
  border-color: var(--accent);
}

/* ── Spacing Variants ── */

.theme-spacing-compact section {
  padding: 48px 0;
}
.theme-spacing-compact .hero {
  padding: 100px 0 60px;
}

.theme-spacing-spacious section {
  padding: 112px 0;
}
.theme-spacing-spacious .hero {
  padding: 160px 0 100px;
}

/* ── Border Variants ── */

/* dashed */
.theme-borders-dashed .card,
.theme-borders-dashed .branch-card,
.theme-borders-dashed .product-card,
.theme-borders-dashed .contact-card,
.theme-borders-dashed .hero-image,
.theme-borders-dashed .video-container,
.theme-borders-dashed .about-image,
.theme-borders-dashed .gallery-item,
.theme-borders-dashed .demo-item,
.theme-borders-dashed .faq-item {
  border-style: dashed;
}

/* none */
.theme-borders-none .card,
.theme-borders-none .branch-card,
.theme-borders-none .product-card,
.theme-borders-none .contact-card,
.theme-borders-none .hero-image,
.theme-borders-none .video-container,
.theme-borders-none .about-image,
.theme-borders-none .gallery-item,
.theme-borders-none .demo-item,
.theme-borders-none .faq-item,
.theme-borders-none .problem-card,
.theme-borders-none .feature-card {
  border: none;
}

/* glow: accent-colored glow border on hover */
.theme-borders-glow .card,
.theme-borders-glow .branch-card,
.theme-borders-glow .product-card,
.theme-borders-glow .faq-item,
.theme-borders-glow .problem-card,
.theme-borders-glow .feature-card {
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.theme-borders-glow .card:hover,
.theme-borders-glow .branch-card:hover,
.theme-borders-glow .product-card:hover,
.theme-borders-glow .faq-item:hover,
.theme-borders-glow .problem-card:hover,
.theme-borders-glow .feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.2);
}

/* ── Animation Variants ── */

/* slide: slide in from left */
.theme-anim-slide .reveal {
  opacity: 0;
  transform: translateX(-40px);
}
.theme-anim-slide .reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* scale: scale up from 0.95 */
.theme-anim-scale .reveal {
  opacity: 0;
  transform: scale(0.95);
}
.theme-anim-scale .reveal.visible {
  opacity: 1;
  transform: scale(1);
}

/* none: no animation */
.theme-anim-none .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ── Eyebrow Variants ── */

/* underline: text with accent underline */
.theme-eyebrows-underline .eyebrow {
  background: none;
  border: none;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding: 0 0 4px 0;
}

/* text: plain text, no decoration */
.theme-eyebrows-text .eyebrow {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* none: hidden */
.theme-eyebrows-none .eyebrow {
  display: none;
}
