/* MORO Landing — palet selaras Admin Login */
:root {
  /* AdminColors */
  --sidebar: #0b1220;
  --sidebar-mid: #0f172a;
  --sidebar-teal: #134e4a;
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-soft: rgba(16, 185, 129, 0.12);
  --primary-ring: rgba(16, 185, 129, 0.28);
  --accent-soft: #d1fae5;
  --ink: #0f172a;
  --ink-secondary: #64748b;
  --ink-muted: #94a3b8;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --bg: #ffffff;
  --bg-subtle: #eef2f7;
  --bg-elevated: #ffffff;
  --dark: #0b1220;
  --dark-elevated: #0f172a;
  --gradient-auth: linear-gradient(135deg, #0b1220 0%, #0f172a 55%, #134e4a 100%);
  --gradient-page: linear-gradient(135deg, #eef2f7 0%, #f6f8fb 50%, #e6f4f0 100%);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 2px rgba(12, 18, 34, 0.04);
  --shadow-sm: 0 4px 16px rgba(12, 18, 34, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 18, 34, 0.08);
  --shadow-lg: 0 24px 64px rgba(12, 18, 34, 0.12);
  --shadow-glow: 0 20px 50px rgba(16, 185, 129, 0.22);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --container: min(1160px, calc(100% - 40px));
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--gradient-page) fixed;
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header--scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.nav__brand img {
  border-radius: 11px;
  box-shadow: var(--shadow-xs);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a:not(.nav__cta) {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:not(.nav__cta):hover {
  color: var(--ink);
  background: var(--bg-subtle);
}

.nav__cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s !important;
}

.nav__cta:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

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

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-ring);
}

.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-glow);
}

.btn--ghost {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink-muted);
  background: var(--bg-subtle);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Hero (layout terang + gradasi menyatu) ── */
.hero {
  position: relative;
  margin-top: 0;
  padding: clamp(32px, 4vw, 56px) 0 clamp(32px, 4vw, 48px);
  padding-top: calc(var(--header-h) + clamp(16px, 3vw, 32px));
  background: var(--gradient-page);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 120% at 12% 48%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.45) 32%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse 75% 100% at 48% 50%, rgba(230, 244, 240, 0.65) 0%, rgba(230, 244, 240, 0.28) 38%, rgba(230, 244, 240, 0) 68%),
    radial-gradient(ellipse 65% 95% at 82% 52%, rgba(209, 250, 229, 0.35) 0%, rgba(209, 250, 229, 0.12) 40%, rgba(209, 250, 229, 0) 72%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.hero__content {
  position: relative;
  max-width: 520px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-secondary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.125rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--ink);
}

.hero__title-accent {
  background: linear-gradient(125deg, #047857 0%, var(--primary) 42%, #34d399 78%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: linear-gradient(120deg, #059669 0%, var(--primary) 55%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--ink-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 460px;
}

.hero__pricing-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 14px 16px;
  box-sizing: border-box;
  background: var(--gradient-auth);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 0 36px rgba(16, 185, 129, 0.16);
  line-height: 1.45;
  text-align: left;
}

.hero__pricing-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 140% at 100% 50%, rgba(16, 185, 129, 0.25) 0%, transparent 58%),
    radial-gradient(ellipse 60% 100% at 0% 100%, rgba(19, 78, 74, 0.3) 0%, transparent 55%);
  pointer-events: none;
}

.hero__pricing-badge-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(110, 231, 183, 0.35);
  color: #6ee7b7;
}

.hero__pricing-badge-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero__pricing-badge-text strong {
  color: #6ee7b7;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-secondary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
}

.hero__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.hero__highlights li:last-child .hero__highlight-icon {
  background: linear-gradient(145deg, var(--primary) 0%, #059669 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-ring);
}

.hero__figure {
  position: relative;
  width: 100%;
}

.hero__figure-glow {
  position: absolute;
  left: -6%;
  top: 50%;
  width: 38%;
  height: 88%;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse 100% 100% at 100% 50%,
    rgba(209, 250, 229, 0.45) 0%,
    rgba(230, 244, 240, 0.2) 45%,
    transparent 78%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__figure-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1024 / 571;
  background: #e8eeec;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

.mockup {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.dot { width: 9px; height: 9px; border-radius: 50%; opacity: 0.85; }
.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c840; }

.mockup__body { display: flex; min-height: 240px; }

.mockup__sidebar {
  width: 52px;
  padding: 14px 10px;
  background: var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__nav-item {
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--line);
}

.mockup__nav-item--active {
  background: var(--primary-hover);
  opacity: 1;
}

.mockup__main {
  flex: 1;
  padding: 14px;
  display: flex;
  gap: 12px;
  background: #fff;
}

.mockup__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup__card {
  height: 58px;
  border-radius: var(--radius-xs);
  background: linear-gradient(145deg, #ecfdf5, #f0fdf4);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.mockup__cart {
  width: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.mockup__line {
  height: 8px;
  border-radius: 4px;
  background: var(--line);
}

.mockup__line--short { width: 72%; }

.mockup__btn {
  margin-top: auto;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--primary);
}

/* ── Stats ── */
.stats {
  padding: 0 0 72px;
  background: transparent;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 24px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.stat:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.8125rem;
  color: var(--ink-secondary);
  font-weight: 600;
  line-height: 1.35;
}

.stat--accent {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #134e4a 100%);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(16, 185, 129, 0.15) inset;
}

.stat--accent::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.stat--accent strong {
  color: #6ee7b7;
  font-size: 2.25rem;
}

.stat--accent span {
  color: rgba(255, 255, 255, 0.78);
}

/* ── Pricing (sekali bayar) ── */
.pricing {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 8vw, 88px);
}

.pricing__header {
  text-align: center;
  max-width: min(640px, 100%);
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.pricing__headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}

.pricing__headline-accent {
  background: linear-gradient(120deg, #047857 0%, var(--primary) 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing__lead {
  font-size: 1.0625rem;
  color: var(--ink-secondary);
  line-height: 1.75;
}

.pricing__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.28);
  background: var(--gradient-auth);
  box-shadow: var(--shadow-lg), 0 0 56px rgba(16, 185, 129, 0.16);
}

.pricing__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(16, 185, 129, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(19, 78, 74, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.pricing__offer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  padding: clamp(24px, 4vw, 48px);
}

.pricing__offer-intro,
.pricing__offer-body {
  min-width: 0;
}

.pricing__offer-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing__offer-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 8vw, 56px);
  height: clamp(48px, 8vw, 56px);
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(110, 231, 183, 0.35);
  color: #6ee7b7;
}

.pricing__offer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.pricing__offer-price {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pricing__offer-price span {
  display: inline-block;
  margin-right: 8px;
  font-size: 0.62em;
  color: #6ee7b7;
  vertical-align: middle;
}

.pricing__offer-tagline {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 36ch;
}

.pricing__offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing__offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.pricing__offer-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  border-radius: 50%;
}

.pricing__cta {
  width: 100%;
  justify-content: center;
}

.pricing__footnote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 14px clamp(20px, 4vw, 32px) clamp(18px, 3vw, 24px);
  font-size: clamp(0.6875rem, 1.6vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .pricing__offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
  }

  .pricing__offer-list li:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .pricing__offer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(32px, 4vw, 48px);
    padding: clamp(32px, 4vw, 52px);
  }

  .pricing__offer-body {
    padding: clamp(24px, 3vw, 32px);
  }

  .pricing__offer-list {
    grid-template-columns: 1fr;
  }

  .pricing__offer-list li:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .pricing__offer {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    padding: 48px 56px;
  }

  .pricing__offer-tagline {
    max-width: 42ch;
  }
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section--features {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 45%, #e6f4f0 100%);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.section--features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 78, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 78, 74, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section--features::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.section--features .container {
  position: relative;
  z-index: 1;
}

.section--dark {
  background: var(--gradient-auth);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.section--dark .container {
  position: relative;
  z-index: 1;
}

.section--muted {
  background: var(--gradient-page);
}

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section__header--center .section__title {
  margin-inline: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-hover);
  margin-bottom: 14px;
}

.section__label--light { color: #6ee7b7; }
.section__label--cta { color: rgba(255, 255, 255, 0.85); }

.section__title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 560px;
  color: var(--ink);
}

.section__title--light { color: #fff; max-width: 640px; }

.section__desc {
  font-size: 1.0625rem;
  color: var(--ink-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.section__desc--center {
  margin-inline: auto;
  max-width: 560px;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.68);
}

/* ── Feature panels ── */
.feature-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  box-shadow: var(--shadow-xs);
}

.feature-group.panel {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.feature-group.panel:hover {
  box-shadow: var(--shadow-lg), 0 12px 40px rgba(16, 185, 129, 0.1);
}

.feature-group__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: clamp(18px, 3vw, 22px) clamp(20px, 3vw, 28px);
  background: var(--gradient-auth);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-group--sales .feature-group__title {
  background: linear-gradient(125deg, #0b1220 0%, #134e4a 55%, #047857 100%);
}

.feature-group--ops .feature-group__title {
  background: linear-gradient(125deg, #0b1220 0%, #1e3a5f 55%, #134e4a 100%);
}

.feature-group--report .feature-group__title {
  background: linear-gradient(125deg, #0f172a 0%, #134e4a 50%, #065f46 100%);
}

.feature-group--device .feature-group__title {
  background: linear-gradient(125deg, #0b1220 0%, #164e63 55%, #0f766e 100%);
}

.feature-group__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(110, 231, 183, 0.35);
  color: #6ee7b7;
}

.feature-group__title-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.feature-group__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.feature-group__badge {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 999px;
}

.feature-group .features {
  padding: clamp(16px, 3vw, 24px);
}

/* ── Icons ── */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  display: block;
}

.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 22px; height: 22px; }

.icon-box {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary-hover);
  flex-shrink: 0;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: var(--primary-hover);
  margin-bottom: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.feature-card:hover .feature-card__icon {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--primary) 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  transform: scale(1.05);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  padding: 20px 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, #34d399 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: var(--shadow-md), 0 10px 28px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

.feature-card h4 {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  color: var(--ink-secondary);
  line-height: 1.65;
}

/* Dark section cards */
.features--light .feature-card--glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.features--light .feature-card--glass:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.features--light .feature-card--glass h4 { color: #fff; }
.features--light .feature-card--glass p { color: rgba(255, 255, 255, 0.6); }

.feature-card--glass .feature-card__icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.feature-card--glass:hover .feature-card__icon {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

/* ── Use cases ── */
.use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.use-case {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.use-case:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.use-case__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: var(--primary-hover);
  margin-bottom: 18px;
}

.use-case__icon .icon { width: 24px; height: 24px; }

.use-case h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.use-case p {
  font-size: 0.8125rem;
  color: var(--ink-secondary);
  line-height: 1.65;
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 96px 0;
  background: var(--gradient-auth);
  overflow: hidden;
}

.cta__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta__pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.2), transparent 55%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta p {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Footer ── */
.footer {
  padding: 48px 0;
  background: var(--sidebar);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer__brand img {
  border-radius: 9px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__links {
  display: flex;
  gap: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.footer__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content > * {
  animation: fadeUp 0.7s var(--ease) backwards;
}

.hero__figure {
  animation: fadeUp 0.85s var(--ease) 0.12s backwards;
}

.hero__badge { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.1s; }
.hero__subtitle { animation-delay: 0.15s; }
.hero__actions { animation-delay: 0.2s; }
.hero__highlights { animation-delay: 0.26s; }

.feature-card,
.use-case,
.stat {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.feature-card.visible,
.use-case.visible,
.stat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing panel always visible (avoid empty section when scroll-reveal misses) */
.pricing__panel,
.pricing__offer {
  opacity: 1;
  transform: translateY(0);
}

.pricing__panel {
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

@media (hover: hover) {
  .pricing__panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 64px rgba(16, 185, 129, 0.22);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__mesh {
    background:
      radial-gradient(ellipse 100% 70% at 50% 8%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0) 68%),
      radial-gradient(ellipse 90% 55% at 50% 38%, rgba(230, 244, 240, 0.55) 0%, rgba(230, 244, 240, 0.15) 45%, rgba(230, 244, 240, 0) 72%),
      radial-gradient(ellipse 80% 50% at 50% 88%, rgba(209, 250, 229, 0.28) 0%, rgba(209, 250, 229, 0) 65%);
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .hero__pricing-badge {
    margin-inline: auto;
  }

  .hero__figure {
    max-width: 640px;
    margin-inline: auto;
  }

  .hero__figure-glow {
    left: 50%;
    top: -4%;
    width: 70%;
    height: 28%;
    transform: translateX(-50%);
  }

  .use-cases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
  .hero__pricing-badge {
    display: inline-flex;
    width: auto;
    max-width: 460px;
  }

  .hero__highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 460px;
  }

  .hero__highlights li {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.875rem;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  :root { --container: calc(100% - 32px); }

  :root { --header-h: 64px; }

  .hero {
    padding-top: calc(var(--header-h) + 10px);
    padding-bottom: 40px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero__title {
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__pricing-badge {
    align-self: stretch;
    padding: 14px;
  }

  .hero__pricing-badge-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__highlights {
    align-self: stretch;
  }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav__links--open {
    transform: translateY(8px) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section { padding: 72px 0; }
  .panel { padding: 24px 20px 28px; }
  .features { grid-template-columns: 1fr; }

  .feature-group__title {
    flex-wrap: wrap;
    gap: 12px;
  }

  .feature-group__badge {
    margin-left: auto;
  }

  .feature-group__title-text {
    font-size: 1rem;
  }

  .feature-group__icon {
    width: 42px;
    height: 42px;
  }

  .feature-card {
    padding: 18px;
  }
  .use-cases { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 20px 16px; }
  .stat strong { font-size: 1.75rem; }
  .hero__title { font-size: 2.125rem; }

  .hero__highlights {
    gap: 8px;
  }

  .hero__highlights li {
    padding: 10px 12px;
    font-size: 0.75rem;
    gap: 8px;
  }

  .hero__highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}

@media (max-width: 360px) {
  .hero__highlights {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

}
