/* ===== BACKGROUND & LAYOUT ===== */
.background {
  min-height: 100vh;
  background: var(--body-bg);
  padding-top: 88px;
}

.center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.center--row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ===== HERO TITLE ===== */
.title { flex: 1; min-width: 0; padding-top: 24px; }

.title .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(38,162,105,0.1);
  border: 1px solid rgba(38,162,105,0.3);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.title h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.title h1 .bebas-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--green);
  letter-spacing: 3px;
  display: block;
  line-height: 1;
}

.title p {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.title-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-outline-green {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: 2px solid var(--green);
  color: var(--green); background: transparent;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ===== TESTIMONIAL CARDS ===== */
.card-container { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }

.card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 24px; border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.card:hover { transform: translateX(5px); box-shadow: 0 4px 24px rgba(38,162,105,0.1); }
.card--one { border-left: 3px solid var(--green); }
.card--two { border-left: 3px solid var(--green-light); }
.card--three { border-left: 3px solid var(--green-dark); }

.card--title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem; color: var(--text); line-height: 1.4;
}
.card--body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.87rem; color: var(--muted); line-height: 1.7;
}
.card--author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem; color: var(--green); letter-spacing: 1.5px;
}

/* ===== FEATURES ROW ===== */
.features-row { flex-direction: column; align-items: stretch; gap: 32px; }

.features-row h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  color: var(--text);
  text-align: center;
}

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

.home-feature--item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-feature--item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(38,162,105,0.1); }

.home-feature--icon {
  width: 44px; height: 44px;
  background: rgba(38,162,105,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 14px;
}

.home-feature--item h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.92rem; color: var(--text); margin-bottom: 8px;
}
.home-feature--item p {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem; color: var(--muted); line-height: 1.65;
}

.features-row-cta { text-align: center; }

/* ===== PLATFORM ROW ===== */
.platform-row { flex-direction: column; align-items: stretch; gap: 28px; }

.platform-row h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  color: var(--text);
  text-align: center;
}

.platform-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.platform-card-home {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.platform-card-home:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(38,162,105,0.1); }
.platform-card-home img { width: 48px; height: 48px; margin-bottom: 16px; }
.platform-card-home h3 { font-family: 'Archivo Black', sans-serif; font-size: 1.15rem; color: var(--text); margin-bottom: 4px; }
.platform-card-home .platform-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: var(--green); letter-spacing: 2px; margin-bottom: 12px; display: block;
}
.platform-card-home p { font-family: 'Ubuntu', sans-serif; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ===== SCREENSHOT SHOWCASE ROW ===== */
.shots-row { align-items: center; gap: 56px; }

.shots-text { flex: 0 0 260px; }
.shots-text .section-tag { margin-bottom: 12px; }
.shots-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text); margin: 12px 0 14px;
}
.shots-text p { font-family: 'Ubuntu', sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

.shots-viewer {
  flex: 1; min-width: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 64px rgba(0,0,0,0.35);
  aspect-ratio: 16/10;
  background: var(--card-bg);
}

.shot-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.shot-slide.active { opacity: 1; pointer-events: auto; }

.shot-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.shot-slide.active img { transform: scale(1.03); }

.shot-slide span {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.1);
}

.shots-dots {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; gap: 6px; z-index: 10;
}
.shot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.shot-dot.active { background: var(--green); transform: scale(1.3); }
.shot-dot:hover { background: rgba(255,255,255,0.7); }

/* ===== DEPLOY ROW ===== */
.deploy-row { align-items: center; gap: 56px; }
.deploy-text { flex: 1; min-width: 0; }
.deploy-text .section-tag { margin-bottom: 12px; }
.deploy-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text); margin: 12px 0 14px;
}
.deploy-text p { font-family: 'Ubuntu', sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.deploy-row .code-preview { flex: 1; min-width: 0; max-width: none; margin: 0; }

/* ===== CTA ROW ===== */
.cta-row {
  align-items: center; gap: 56px;
  background: #0a0a0a;
  border: 1px solid rgba(38,162,105,0.15);
  border-radius: 20px; padding: 56px 48px;
  position: relative; overflow: hidden;
}
.cta-row::before {
  content: ''; position: absolute; top: 50%; right: 0;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(38,162,105,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-image {
  flex: 0 0 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(38,162,105,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative; z-index: 1;
}
.cta-image img { width: 100%; display: block; }

.cta-content {
  flex: 1; min-width: 0;
  position: relative; z-index: 1;
}
.cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 3px; color: #fff;
  margin-bottom: 14px; line-height: 1.05;
}
.cta-content p {
  font-family: 'Ubuntu', sans-serif;
  color: rgba(255,255,255,0.55); font-size: 1rem;
  margin-bottom: 32px; line-height: 1.7;
}
.cta-row-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(38,162,105,0.5);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor div {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .home-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .center--row { flex-direction: column; gap: 32px; }
  .home-features { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .deploy-row { flex-direction: column; }
  .shots-row { flex-direction: column; }
  .shots-text { flex: none; }
  .cta-row { flex-direction: column; padding: 36px 24px; }
  .cta-image { flex: none; width: 100%; }
  .cta-content { text-align: center; }
  .cta-row-actions { justify-content: center; }
  .cursor { display: none; }
}
