@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #F5B400;
  --primary-dim: rgba(245, 180, 0, 0.12);
  --primary-glow: rgba(245, 180, 0, 0.35);
  --dark: #0F1115;
  --dark-2: #13151A;
  --dark-surface: #1A1C20;
  --dark-card: #1E2026;
  --border: rgba(255, 255, 255, 0.08);
  --border-yellow: rgba(245, 180, 0, 0.25);
  --text: #F5F5F3;
  --text-muted: rgba(245, 245, 243, 0.5);
  --text-soft: rgba(245, 245, 243, 0.75);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-yellow: 0 0 40px rgba(245, 180, 0, 0.2);
  --font: 'Outfit', sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--text-soft);
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--dark {
  background: var(--dark-surface);
}

.section--darker {
  background: var(--dark-2);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border-yellow);
  background: var(--primary-dim);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #FFD966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #0F1115;
  box-shadow: 0 8px 30px rgba(245, 180, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 180, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

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

.btn-ghost:hover {
  background: var(--dark-surface);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(245, 180, 0, 0.3);
  }

  50% {
    box-shadow: 0 8px 50px rgba(245, 180, 0, 0.6);
  }
}

/* ── Glass Card ── */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(245, 180, 0, 0.08) 0%, transparent 65%),
    var(--dark);
  padding-top: 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5B400' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.hero-stat span {
  display: block;
}

.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-alt);
}

.hero-stat .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--border-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-dim);
  border: 1px solid var(--border-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border-yellow);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* ── SHOWROOM DEMOS ── */
.demos-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  min-height: 560px;
}

.demo-viewer-wrap {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.demo-viewer-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

.demo-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-tab {
  padding: 1.25rem 1.5rem;
  background: var(--dark-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.demo-tab:hover {
  border-color: var(--border-yellow);
}

.demo-tab.active {
  border-color: var(--primary);
  background: var(--primary-dim);
}

.demo-tab h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.demo-tab p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.demo-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--primary-dim);
  border: 1px solid var(--border-yellow);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  width: fit-content;
}

.demo-tab-action {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes breathing {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.breathing {
  animation: breathing 2s ease-in-out infinite;
}

/* ── DEMO MODAL (MOBILE) ── */
.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.demo-modal.active {
  display: flex;
}

.demo-modal-content {
  width: 100%;
  height: 85vh;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.demo-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.demo-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-demo-cta {
  background: var(--primary);
  color: #000;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(245, 180, 0, 0.3);
}

.btn-demo-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 180, 0, 0.4);
}

/* ── TEMPLATES STORE ── */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.template-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.template-card:hover {
  border-color: var(--border-yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}

.template-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.template-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.template-card:hover .template-thumb img {
  transform: scale(1.04);
}

.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.template-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.template-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.template-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border-yellow);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.template-badge-new {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0F1115;
  background: var(--primary);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

.template-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.template-card p {
  font-size: 0.85rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.template-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.template-features li {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.template-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.template-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.template-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-alt);
}

.template-price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: -2px;
}

/* Template modal / lightbox */
.tpl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tpl-modal.open {
  display: flex;
}

.tpl-modal-inner {
  width: 100%;
  max-width: 1100px;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 380px;
  max-height: 90vh;
}

.tpl-modal-preview {
  background: #000;
  overflow: hidden;
  position: relative;
}

.tpl-modal-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tpl-modal-info {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.tpl-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(15, 17, 21, 0.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 10;
}

.tpl-modal-close:hover {
  background: var(--primary);
  color: #0F1115;
  border-color: var(--primary);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-yellow), transparent);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-alt);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* ── BENEFITS ── */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-dim);
  border: 1px solid var(--border-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.benefit-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.88rem;
}

/* ── INDUSTRIES ── */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  transition: var(--transition);
  cursor: default;
}

.industry-chip:hover {
  border-color: var(--border-yellow);
  color: var(--primary);
}

.industry-chip span.icon {
  font-size: 1.1rem;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ── CTA FINAL ── */
.cta-final {
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(245, 180, 0, 0.12) 0%, transparent 70%),
    var(--dark-2);
  text-align: center;
  padding: 8rem 0;
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 260px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 0.75rem;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── STICKY WA ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  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;
}

/* ── SECTION DIVIDERS ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── IMMERSIVE FX & MOCKUP ── */
.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-delayed {
  animation: float 6s ease-in-out 3s infinite;
}

.floating-fast {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 4rem auto 0;
  perspective: 1000px;
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-yellow);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 180, 0, 0.15);
  transform: rotateX(5deg) scale(0.95);
  transition: transform 0.5s ease;
}

.hero-visual:hover .hero-mockup-img {
  transform: rotateX(0deg) scale(1);
}

.hero-ui-element {
  position: absolute;
  background: rgba(30, 32, 38, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── INDUSTRIES VISUAL ── */
.industries-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.industry-visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.industry-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.industry-visual-card:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.industry-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.industry-overlay p {
  font-size: 0.85rem;
  color: var(--primary);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.industry-visual-card:hover .industry-overlay h4,
.industry-visual-card:hover .industry-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* ── CREATORS BANNER ── */
.creators-banner {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.creators-banner::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(circle at center, rgba(245, 180, 0, 0.1), transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .creators-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .demos-layout {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .tpl-modal-inner {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .tpl-modal-preview {
    max-height: 40vh;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav-inner {
    padding: 1rem 2rem !important;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 17, 21, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

  .demo-tabs {
    flex-direction: column;
    gap: 1rem;
  }

  .demo-tab {
    flex: none;
    width: 100%;
    padding: 2rem;
    border-radius: 20px;
  }

  .demo-tab-action {
    display: flex;
  }

  .demo-tab.active {
    border-color: var(--primary);
    background: rgba(245, 180, 0, 0.05);
    box-shadow: 0 0 25px rgba(245, 180, 0, 0.2);
  }

  .demo-viewer-wrap {
    display: none;
  }

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

  .demo-cta-container {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .btn-demo-cta {
    width: 100%;
    justify-content: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    border-radius: 20px;
  }
}

/* ── LIGHTBOX GALLERY ── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  user-select: none;
  z-index: 10000;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.product-gallery img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.02);
}