* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.5;
}

/* VIDEO BACKGROUND */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.94));
  z-index: -1;
}

/* HEADER */
.nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 40px;
  background: rgba(2, 6, 23, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--g-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta {
  background: #3b82f6;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 700;
}

/* HERO (kept visually consistent) */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero img {
  width: 200px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: clamp(32px, 8vw, 60px);
  background: linear-gradient(90deg, var(--g-blue-primary), var(--g-green-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 15px;
  color: var(--g-muted);
  font-size: 18px;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.buttons button {
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.admin { background: var(--g-amber-primary); }
.shop { background: var(--g-green-primary); }
.client { background: var(--g-blue-primary); }

.buttons button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* LANDING CONTENT */
.landing-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 70px;
}

.landing-section {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.35);
  margin-bottom: 26px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #7dd3fc;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--g-muted);
  font-size: 16px;
}

.value-grid,
.role-grid,
.metric-grid {
  display: grid;
  gap: 16px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.role-card,
.step-card,
.metric-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.value-card h3,
.role-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.value-card p,
.role-card p,
.step-card p,
.role-card li,
.benefits-copy p,
.faq-list p {
  color: var(--g-muted);
}

.steps-layout,
.benefits-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.steps-list {
  display: grid;
  gap: 12px;
}

.step-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
}

.image-placeholder {
  min-height: 280px;
  border: 2px dashed rgba(125, 211, 252, 0.45);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.image-placeholder span {
  font-weight: 700;
  color: #bae6fd;
}

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.role-card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
}

.role-cta {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, var(--g-blue-primary), var(--g-green-primary));
  cursor: pointer;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.metric-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.metric-grid span {
  font-size: 14px;
  color: var(--g-muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 10px;
}

.landing-cta {
  text-align: center;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.74), rgba(30, 64, 175, 0.38));
}

.landing-cta h2 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 10px;
}

.landing-cta p {
  color: var(--g-muted);
  max-width: 760px;
  margin: 0 auto 22px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-actions button {
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  background: linear-gradient(90deg, var(--g-green-primary), var(--g-blue-primary));
}

/* FOOTER */
.landing-footer {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 28px 20px 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand h3 {
  margin-bottom: 8px;
}

.footer-brand p,
.footer-copy {
  color: var(--g-muted);
}

.footer-credit {
  margin-top: 8px;
  font-size: 14px;
}

.footer-credit a {
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 700;
}

.footer-credit a:hover {
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 980px) {
  .value-grid,
  .role-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-layout,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .image-placeholder {
    min-height: 220px;
  }

  .landing-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding-top: 6px;
  }

  .hero {
    height: auto;
    min-height: 72vh;
    padding: 34px 20px 40px;
  }

  .landing-main {
    padding-top: 8px;
  }

  .landing-section {
    padding: 22px;
  }

  .value-grid,
  .role-grid,
  .metric-grid,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .metric-grid strong {
    font-size: 24px;
  }
}
