/* ==========================================================================
   REGESIT DESIGN SYSTEM - MODERN MINIMALIST STARTUP
   Font: DM Sans (Light 300, Regular 400, Medium 500)
   Accents: #1975f9 (Blue), #3bc855 (Green)
   Aesthetic: Clean White, Editorial Spacing, Hairline Borders, Minimal Micro-interactions
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-main: #ffffff;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #ffffff;
  --bg-surface-card: #ffffff;
  --bg-surface-alt: #ffffff;

  --color-primary: #1975f9;
  --color-primary-hover: #1263d6;
  --color-primary-subtle: rgba(25, 117, 249, 0.08);
  --color-primary-border: rgba(25, 117, 249, 0.2);

  --color-secondary: #3bc855;
  --color-secondary-hover: #32ab48;
  --color-secondary-subtle: rgba(59, 200, 85, 0.1);

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border-subtle: #eaecef;
  --border-default: #e2e5e9;
  --border-focus: #1975f9;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows - Minimal, natural, soft ambient */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-float: 0 20px 40px -15px rgba(25, 117, 249, 0.15);

  /* Transitions */
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-main);
  overflow-x: hidden;
}

/* Typography Hierarchy - Strictly Light, Regular, Medium */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

p {
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  background-color: var(--color-primary-subtle);
  border: 1px solid var(--color-primary-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag-green {
  color: var(--color-secondary);
  background-color: var(--color-secondary-subtle);
  border-color: rgba(59, 200, 85, 0.25);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 14px rgba(25, 117, 249, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(25, 117, 249, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn-secondary:hover {
  background-color: var(--bg-surface-subtle);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 18px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background-color: var(--bg-surface-subtle);
}

.btn-sm {
  font-size: 13px;
  padding: 8px 16px;
}

.btn-lg {
  font-size: 16px;
  padding: 15px 30px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-primary), #0056cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(25, 117, 249, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-brand:hover .nav-logo-mark {
  transform: rotate(-6deg) scale(1.05);
}

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

.nav-link {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle (SVG Icon Toggle with Smooth Rotation) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-default);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  z-index: 1002;
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background-color: var(--bg-surface-subtle);
  border-color: var(--border-focus);
  color: var(--color-primary);
}

.menu-icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon-wrap .icon-menu,
.menu-icon-wrap .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.menu-icon-wrap .icon-menu {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-icon-wrap .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.mobile-menu-toggle.is-active {
  background-color: var(--color-primary-subtle);
  border-color: var(--color-primary-border);
  color: var(--color-primary);
}

.mobile-menu-toggle.is-active .menu-icon-wrap .icon-menu {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.mobile-menu-toggle.is-active .menu-icon-wrap .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 16px 18px 24px 18px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  background: transparent;
  transition: var(--transition-smooth);
}

.nav-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background-color: #f1f5f9;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.nav-chevron {
  color: var(--text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background-color: rgba(25, 117, 249, 0.05);
  color: var(--color-primary);
}

.mobile-nav-link:hover .nav-link-icon-box,
.mobile-nav-link:active .nav-link-icon-box {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(25, 117, 249, 0.25);
  transform: scale(1.05);
}

.mobile-nav-link:hover .nav-chevron,
.mobile-nav-link:active .nav-chevron {
  color: var(--color-primary);
  transform: translateX(3px);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.btn-block {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

/* Mobile Drawer Backdrop */
.mobile-drawer-backdrop {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 998;
}

.mobile-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-locked {
  overflow: hidden !important;
  touch-action: none;
}

/* ==========================================================================
   HERO SECTION (Light Mode - Pure White Background #FFFFFF)
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 60px;
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  overflow: hidden;
  text-align: center;
}

.hero-light-mode {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
}

.hero-container {
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}

/* Visual Showcase Image Below Text - Scaled down 35% */
.hero-visual-showcase {
  position: relative;
  width: 92%;
  max-width: 820px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 1;
  animation: heroShowcaseFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroShowcaseFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-showcase-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none !important;
  box-shadow: none !important;
}

/* Hero Content Hierarchy (Positioned in the lower white area) */
.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Social Proof Pill (Light Clean Surface) */
.hero-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-default);
  padding: 6px 18px 6px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  animation: heroFadeDown 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-social-pill:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  object-fit: cover;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-social-text {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-social-text strong {
  font-weight: 500;
  color: var(--text-primary);
}

/* Headline & Subtitle */
.hero-title {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-btn-primary {
  box-shadow: 0 8px 24px -4px rgba(25, 117, 249, 0.45);
}

.hero-btn-primary:hover {
  box-shadow: 0 12px 32px -4px rgba(25, 117, 249, 0.6);
  transform: translateY(-2px);
}

/* Hero Trust Tags */
.hero-trust-tags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-subtle);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-trust-tags .trust-tag-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-trust-tags .trust-tag-divider {
  color: var(--border-default);
  font-size: 14px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PARTNER & ORGANIZER LOGOS
   ========================================================================== */
.logos-section {
  padding: 40px 0 70px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.logos-title {
  text-align: center;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
  opacity: 0.75;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.logo-item:hover {
  filter: grayscale(0%);
  color: var(--text-primary);
  opacity: 1;
}

/* ==========================================================================
   BENTO GRID SECTION (Image 2 & 3 Style)
   ========================================================================== */
.bento-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

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

.bento-card {
  background-color: var(--bg-surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.bento-card-header {
  margin-bottom: 24px;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.bento-icon-green {
  background-color: var(--color-secondary-subtle);
  color: var(--color-secondary);
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.bento-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bento Sizes */
.bento-col-8 {
  grid-column: span 8;
}

.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-12 {
  grid-column: span 12;
}

/* Bento 1: Interactive Scanner Preview */
.bento-scanner-preview {
  margin-top: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.scanner-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}

.gate-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(59, 200, 85, 0.2);
}

.scan-feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

/* Bento 2: Automated Webinar Sequence */
.workflow-pill-seq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.workflow-seq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.seq-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Bento Highlight Card */
.bento-highlight-green {
  background: linear-gradient(145deg, #ffffff, #f4fbf5);
  border-color: rgba(59, 200, 85, 0.3);
}

.bento-stat-big {
  font-size: 54px;
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.bento-stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

/* Bento Highlight Blue */
.bento-highlight-blue {
  background: linear-gradient(145deg, #ffffff, #f0f6ff);
  border-color: rgba(25, 117, 249, 0.25);
}

.bento-stat-big-blue {
  font-size: 54px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

/* ==========================================================================
   HOW IT WORKS (3 Simple Steps)
   ========================================================================== */
.steps-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.step-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card-img-1 {
  object-position: center 20%;
}

.step-card-img-2 {
  object-fit: cover;
  object-position: center 25%;
}

.step-card-media-phone {
  background: #ffffff;
}

.step-card-img-3 {
  object-position: center 15%;
}

.step-card:hover .step-card-img {
  transform: scale(1.05);
}

.step-card-media .step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  margin-bottom: 0;
  box-shadow: 0 4px 14px rgba(25, 117, 249, 0.4);
  z-index: 2;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.step-card-body {
  padding: 26px 24px 30px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.step-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-card-body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PRICING & PAKET EVENT SECTION (Light Mode #FFFFFF)
   ========================================================================== */
.pricing-cards-section {
  padding: 100px 0 90px 0;
  background-color: #ffffff;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.pricing-cards-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px auto;
}

.pricing-main-title {
  font-size: 38px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.pricing-main-sub {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Billing Cycle Switcher Pills */
.pricing-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-switcher-pills {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-subtle);
}

.pricing-cycle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.pricing-cycle-pill:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.pricing-cycle-pill.active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25, 117, 249, 0.35);
}

.pricing-cycle-pill .discount-badge {
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(59, 200, 85, 0.12);
  border: 1px solid rgba(59, 200, 85, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.pricing-cycle-pill.active .discount-badge {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

/* 4-Column Pricing Cards Grid */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-tier-card {
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

/* Pro POPULER Highlighted Card */
.pricing-tier-card.pricing-tier-popular {
  border: 2px solid var(--color-primary);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(25, 117, 249, 0.12);
}

.pricing-tier-card.pricing-tier-popular:hover {
  border-color: var(--color-primary-hover);
  box-shadow: 0 20px 48px rgba(25, 117, 249, 0.18);
}

.popular-pill-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(25, 117, 249, 0.35);
  z-index: 2;
}

/* Card Header */
.tier-card-header {
  margin-bottom: 20px;
}

.tier-card-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tier-card-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  min-height: 38px;
  line-height: 1.4;
}

/* Card Price */
.tier-card-price {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
}

.tier-price-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  white-space: nowrap;
  transition: transform 0.25s ease;
  line-height: 1.15;
}

.tier-price-period {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Card Features List */
.tier-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tier-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.tier-check-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-primary);
}

/* Card Actions */
.tier-card-action {
  margin-top: auto;
}

.btn-tier-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-tier-secondary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(25, 117, 249, 0.25);
}

.btn-tier-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(25, 117, 249, 0.35);
  transition: var(--transition-smooth);
}

.btn-tier-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 117, 249, 0.5);
}

/* ==========================================================================
   PRICING SECTION - KUSTOMISASI FLEKSIBEL
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

/* ==========================================================================
   SAAS-STYLE PLAN CUSTOMIZER (CUSTOMIZE YOUR PLAN)
   ========================================================================== */
.plan-customizer-card {
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-customizer-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.customizer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

/* Top Tier Segment Pills */
.plan-tier-segment-bar {
  display: inline-flex;
  background: var(--bg-main);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}

.tier-segment-pill {
  padding: 7px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.tier-segment-pill:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
}

.tier-segment-pill.active {
  background: #bbf7d0;
  color: #166534;
  box-shadow: 0 1px 4px rgba(22, 101, 52, 0.15);
  transform: scale(1.03);
}

.tier-segment-pill:active {
  transform: scale(0.97);
}

/* Billing Cycle Switcher Top Right */
.customizer-billing-switcher {
  display: inline-flex;
  background: var(--bg-main);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 3px;
}

.billing-cycle-btn {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.billing-cycle-btn:hover {
  color: var(--text-primary);
}

.billing-cycle-btn.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
  transform: scale(1.02);
}

.billing-cycle-btn:active {
  transform: scale(0.97);
}

/* 2-Column Main Customizer Grid */
.customizer-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
}

/* Left Column: Options */
.customizer-options-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slider-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-field-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.slider-current-badge {
  font-size: 15px;
  font-weight: 500;
  color: #16a34a;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.slider-current-badge.bump-scale {
  animation: badgeBump 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgeBump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
    color: #15803d;
  }

  100% {
    transform: scale(1);
  }
}

.stepped-slider-wrap {
  position: relative;
  margin-bottom: 8px;
}

.customizer-range-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.customizer-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.4);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.customizer-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.5);
}

.customizer-range-slider::-webkit-slider-thumb:active {
  transform: scale(1.28);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.25);
}

.slider-tick-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--text-light);
}

.slider-tick-labels .tick-label {
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease, font-weight 0.2s ease;
  user-select: none;
  padding: 2px 4px;
}

.slider-tick-labels .tick-label:hover {
  color: var(--text-primary);
}

.slider-tick-labels .tick-label.active {
  color: #16a34a;
  font-weight: 600;
  transform: scale(1.15);
}

/* Add-ons List */
.customizer-addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.customizer-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.customizer-addon-row:hover {
  background-color: var(--bg-surface);
  transform: translateX(3px);
}

.addon-name-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.addon-price-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Custom Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  border-radius: 9999px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
  background-color: #16a34a;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.toggle-switch input:checked+.toggle-slider:before {
  transform: translateX(20px);
}

.toggle-switch:hover .toggle-slider:before {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Service Package Radio Grid */
.service-package-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.service-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-radio-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  user-select: none;
}

.service-radio-card:hover {
  border-color: var(--color-primary-border);
  background: var(--bg-surface-subtle);
  transform: translateY(-2px);
}

.service-radio-card.active {
  border-color: #16a34a;
  background: rgba(34, 197, 94, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.1);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-custom-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border-default);
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.service-radio-card.active .radio-custom-dot {
  border-color: #16a34a;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
  animation: radioDotPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes radioDotPulse {
  0% {
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.4);
  }
}

.service-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.service-card-price {
  font-size: 12.5px;
  font-weight: 500;
  color: #16a34a;
}

.service-card-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* RIGHT COLUMN: Live Receipt Box */
.receipt-card-box {
  background: var(--bg-main);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: sticky;
  top: 100px;
  transition: box-shadow 0.3s ease;
}

.receipt-card-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.receipt-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

#receiptPlanBadge {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  text-align: right;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, color 0.25s ease;
}

#receiptPlanBadge.badge-bounce {
  animation: badgeBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgeBounce {
  0% {
    transform: scale(0.92);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.receipt-itemized-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.receipt-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.3s ease;
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  transform: translateX(0);
}

.receipt-item-row.is-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateX(14px);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none;
}

.receipt-item-label {
  color: var(--text-muted);
}

.receipt-item-val {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.receipt-item-val.flash-update {
  animation: textHighlightFlash 0.4s ease;
}

@keyframes textHighlightFlash {
  0% {
    color: #16a34a;
    transform: scale(1.05);
  }

  100% {
    color: var(--text-primary);
    transform: scale(1);
  }
}

.receipt-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 18px 0;
}

.receipt-total-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.receipt-billing-cycle-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.receipt-total-price {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.receipt-total-price.price-pop {
  animation: pricePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pricePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
    color: #16a34a;
  }

  100% {
    transform: scale(1);
  }
}

.receipt-savings-note {
  font-size: 11.5px;
  color: #16a34a;
  font-weight: 500;
  margin-top: 4px;
  animation: savingsSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes savingsSlideIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ==========================================================================
   TESTIMONIAL SPOTLIGHT (Image 3 Style)
   ========================================================================== */
.testimonial-section {
  padding: 90px 0;
  background-color: var(--bg-main);
}

.testimonial-card-editorial {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-mark {
  font-size: 48px;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.quote-text {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.quote-author-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.quote-author-title {
  font-size: 13.5px;
  color: var(--text-muted);
}

.testimonial-metric-box {
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.metric-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-row-title {
  font-size: 14px;
  color: var(--text-muted);
}

.metric-row-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 300px;
}

/* ==========================================================================
   FINAL CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.cta-banner-card {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-card h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-banner-card p {
  color: #94a3b8;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION SYSTEM & MICRO-INTERACTIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-fade {
  transform: none !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  transform: scale(0.94) translateY(24px);
}

.reveal-scale.is-visible {
  transform: scale(1) translateY(0);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-right.is-visible {
  transform: translateX(0);
}

/* Stagger Delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Bento Cards Specific Reveal & Interactive Dynamics */
.bento-card {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bento-card.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
}

.bento-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bento-card.reveal.is-visible:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Bento 4: Quota Progress Bar Filling Animation */
.bento-progress-fill {
  width: 0% !important;
  transition: width 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.bento-card.is-visible .bento-progress-fill.fill-onsite {
  width: 90% !important;
}

.bento-card.is-visible .bento-progress-fill.fill-online {
  width: 75% !important;
}

/* Bento 3: Step-by-Step Sequence Cascade */
.workflow-seq-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease;
}

.bento-card.is-visible .workflow-seq-item:nth-child(1) {
  animation: seqCascadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.bento-card.is-visible .workflow-seq-item:nth-child(2) {
  animation: seqCascadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.bento-card.is-visible .workflow-seq-item:nth-child(3) {
  animation: seqCascadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes seqCascadeIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Bento 2 & 5: Big Stat Pop Keyframe */
.bento-stat-big,
.bento-stat-big-blue {
  display: inline-block;
  transition: transform 0.3s ease;
}

.bento-card.is-visible .bento-stat-big,
.bento-card.is-visible .bento-stat-big-blue {
  animation: bentoStatPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes bentoStatPop {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  70% {
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scan Feed Item in Bento 1 */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .bento-card.reveal,
  .hero-social-pill,
  .hero-title,
  .hero-subtitle,
  .hero-cta-group,
  .iphone-device-card,
  .hero-floating-stat,
  .navbar {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .bento-progress-fill.fill-onsite {
    width: 90% !important;
  }

  .bento-progress-fill.fill-online {
    width: 75% !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

/* --- TABLET LANDSCAPE & PORTRAIT (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-visual-showcase {
    width: 95%;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 46px;
  }

  .bento-col-8,
  .bento-col-4,
  .bento-col-6 {
    grid-column: span 12;
  }

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

  .customizer-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .plan-customizer-card {
    padding: 32px 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .testimonial-card-editorial {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- MOBILE & PHABLET (max-width: 768px) --- */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar {
    height: 64px;
  }

  .navbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-sm {
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-drawer {
    top: 64px;
    max-height: calc(100vh - 64px);
    padding: 16px 16px 24px 16px;
  }

  .mobile-drawer-backdrop {
    top: 64px;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero-container {
    margin-bottom: 24px;
  }

  .hero-content {
    padding: 0 4px;
  }

  .hero-social-pill {
    padding: 5px 14px 5px 6px;
    margin-bottom: 18px;
  }

  .hero-social-text {
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(28px, 6.8vw, 38px);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  .hero-trust-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
  }

  .hero-trust-tags .trust-tag-item {
    font-size: 12.5px;
  }

  .hero-trust-tags .trust-tag-divider {
    display: none;
  }

  .hero-visual-showcase {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Partner Logos */
  .logos-section {
    padding: 30px 0 45px 0;
  }

  .logos-title {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .logos-grid {
    gap: 20px 32px;
  }

  .logo-item {
    font-size: 14px;
  }

  /* Bento Grid */
  .bento-section {
    padding: 60px 0;
  }

  .bento-grid {
    gap: 16px;
  }

  .bento-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .bento-card-header {
    margin-bottom: 16px;
  }

  .bento-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
  }

  .bento-card h3 {
    font-size: 19px;
  }

  .bento-card p {
    font-size: 14px;
  }

  .bento-stat-big,
  .bento-stat-big-blue {
    font-size: 42px;
  }

  .bento-scanner-preview {
    padding: 12px;
    margin-top: 16px;
  }

  .scanner-feed-header {
    font-size: 11.5px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .scan-feed-item {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  /* Steps Section */
  .steps-section {
    padding: 60px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    border-radius: var(--radius-lg);
  }

  .step-card-media {
    height: 180px;
  }

  .step-card-body {
    padding: 20px 18px 24px 18px;
  }

  .step-card-body h3 {
    font-size: 18px;
  }

  .step-card-body p {
    font-size: 13.5px;
  }

  /* Pricing Cards Section */
  .pricing-cards-section {
    padding: 60px 0;
  }

  .pricing-cards-header {
    margin-bottom: 36px;
  }

  .pricing-main-title {
    font-size: 28px;
  }

  .pricing-main-sub {
    font-size: 14.5px;
  }

  .pricing-switcher-wrap {
    margin-top: 20px;
  }

  .pricing-switcher-pills {
    width: 100%;
    max-width: 380px;
    display: flex;
    justify-content: center;
  }

  .pricing-cycle-pill {
    padding: 7px 14px;
    font-size: 12.5px;
  }

  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-tier-card {
    padding: 26px 20px;
    border-radius: var(--radius-lg);
  }

  .tier-card-title {
    font-size: 22px;
  }

  .tier-card-subtitle {
    min-height: auto;
    margin-bottom: 12px;
  }

  .tier-card-price {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .tier-price-amount {
    font-size: 24px;
  }

  .tier-features-list {
    margin-bottom: 24px;
    gap: 12px;
  }

  /* Interactive Plan Customizer */
  .pricing-section {
    padding: 60px 0;
  }

  .plan-customizer-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .customizer-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .plan-tier-segment-bar {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding: 3px;
  }

  .plan-tier-segment-bar::-webkit-scrollbar {
    display: none;
  }

  .tier-segment-pill {
    padding: 6px 14px;
    font-size: 12.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .customizer-billing-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .billing-cycle-btn {
    flex: 1;
    text-align: center;
    padding: 6px 12px;
    font-size: 12px;
  }

  .customizer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .customizer-options-col {
    gap: 20px;
  }

  .customizer-addons-list {
    padding-top: 18px;
    gap: 10px;
  }

  .customizer-addon-row {
    padding: 8px 6px;
  }

  .addon-name-title {
    font-size: 13px;
  }

  .addon-price-sub {
    font-size: 11.5px;
  }

  .service-package-section {
    padding-top: 18px;
  }

  .service-radio-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-radio-card {
    padding: 12px 14px;
  }

  .receipt-card-box {
    position: static;
    top: auto;
    padding: 20px 16px;
    margin-top: 4px;
    border-radius: var(--radius-md);
  }

  .receipt-title {
    font-size: 14px;
  }

  .receipt-total-price {
    font-size: 24px;
  }

  /* Testimonial Section */
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-card-editorial {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    gap: 24px;
  }

  .quote-mark {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .quote-text {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .quote-author-name {
    font-size: 14.5px;
  }

  .quote-author-title {
    font-size: 12.5px;
  }

  .testimonial-metric-box {
    padding: 20px 16px;
    gap: 14px;
    border-radius: var(--radius-md);
  }

  .metric-row {
    padding-bottom: 12px;
  }

  .metric-row-title {
    font-size: 12.5px;
  }

  .metric-row-value {
    font-size: 15px;
  }

  /* FAQ Accordion */
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 14.5px;
  }

  .faq-answer {
    font-size: 13.5px;
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 50px 0;
  }

  .cta-banner-card {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }

  .cta-banner-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .cta-banner-card p {
    font-size: 14.5px;
    margin-bottom: 24px;
  }

  .cta-banner-card .btn {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 12.5px;
  }
}

/* --- SMALL MOBILE PHONES (max-width: 480px) --- */
@media (max-width: 480px) {
  .nav-brand {
    font-size: 18px;
  }

  .nav-logo-mark {
    width: 28px;
    height: 28px;
  }

  .nav-actions .btn-primary {
    font-size: 11.5px;
    padding: 6px 10px;
  }

  .hero-social-pill {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .pricing-switcher-pills {
    flex-direction: column;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .pricing-cycle-pill {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  .customizer-addon-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .slider-tick-labels {
    font-size: 10.5px;
  }
}