/* ============================================================
 * DomSub — Digital Operations Made Simple
 * Neobrutalism UI Design System (https://www.neobrutalism.dev/)
 * ============================================================ */

/* ============================================================
 * 1. DESIGN TOKENS (NEOBRUTALISM PALETTE)
 * ============================================================ */
:root {
  /* --- Neobrutalism Core Canvas & High-Contrast Colors --- */
  --bg-dark:       #FAF8F2; /* Warm Crisp Pastel Canvas */
  --bg-card:       #FFFFFF;
  --surface-1:     #FFFFFF;
  --surface-2:     #FFFFFF;
  --surface-3:     #F3EFE6;
  --surface-hover: #FFFDF9;

  /* --- Neobrutalism Vibrant Palette --- */
  --neo-yellow:    #FFDE59;
  --neo-pink:      #FF66C4;
  --neo-cyan:      #00E5FF;
  --neo-lime:      #A3E635;
  --neo-purple:    #C4B5FD;
  --neo-orange:    #FF9F43;
  --neo-blue:      #60A5FA;
  --neo-red:       #FF4D4D;
  --neo-black:     #000000;
  --neo-white:     #FFFFFF;

  /* --- Semantic Color Mapping --- */
  --cyan:    #00E5FF;
  --blue:    #60A5FA;
  --fuchsia: #FF66C4;
  --purple:  #C4B5FD;
  --green:   #22C55E;
  --amber:   #FFDE59;
  --red:     #FF4D4D;

  /* --- Neobrutalism Borders & Shadows --- */
  --border-width: 3px;
  --border-color: #000000;
  --border-1:     3px solid #000000;
  --border-2:     3px solid #000000;
  --border-3:     4px solid #000000;
  --border-sm:    2px solid #000000;

  /* Neobrutalism Hard Offset Drop-Shadows (Zero Blur) */
  --shadow-sm:  2px 2px 0px #000000;
  --shadow-md:  4px 4px 0px #000000;
  --shadow-lg:  6px 6px 0px #000000;
  --shadow-xl:  8px 8px 0px #000000;
  --shadow-glow-cyan:    4px 4px 0px #000000;
  --shadow-glow-cyan-lg: 7px 7px 0px #000000;

  /* --- Text Tokens --- */
  --text-primary:   #000000;
  --text-secondary: #1F2937;
  --text-muted:     #4B5563;
  --text-accent:    #000000;

  /* --- Typography Scale --- */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.0625rem; /* 17px */
  --text-lg:   1.1875rem; /* 19px */
  --text-xl:   1.3125rem; /* 21px */
  --text-2xl:  1.625rem;  /* 26px */
  --text-3xl:  2rem;      /* 32px */
  --text-4xl:  2.5rem;    /* 40px */
  --text-5xl:  3.25rem;   /* 52px */
  --text-6xl:  4rem;      /* 64px */
  --text-7xl:  4.75rem;   /* 76px */

  /* --- Spacing Scale --- */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-7:  1.75rem;   /* 28px */
  --space-8:  2rem;      /* 32px */
  --space-9:  2.25rem;   /* 36px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */

  /* --- Border Radius Scale (Crisp Neobrutalist Corners) --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  18px;
  --radius-3xl:  20px;
  --radius-4xl:  24px;
  --radius-full: 9999px;
  --r-2xl:       18px;
  --r-full:      9999px;

  /* --- Fonts --- */
  --font-sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', system-ui, -apple-system, sans-serif;
  --fw-bold: 800;
  --fw-semibold: 700;
  --fw-medium: 600;

  /* --- Motion --- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   100ms;
  --duration-base:   200ms;
  --transition-smooth: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), background-color var(--duration-base) var(--ease-out);
}

/* ============================================================
 * 2. RESET & BASE
 * ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: clip;
  line-height: 1.6;
  padding-top: 76px;
  background-color: var(--bg-dark);
  color: #000000;
}

/* ============================================================
 * 3. BACKGROUND SYSTEM (NEOBRUTALISM RETRO GRID)
 * ============================================================ */
.background-container {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-dark);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#000000 1.5px, transparent 1.5px),
    linear-gradient(90deg, #000000 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.07;
}

/* Minimal solid decorative shapes replacing soft blobs */
.blob {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 3px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  opacity: 0.25;
  pointer-events: none;
}

.blob-1 {
  width: 140px;
  height: 140px;
  background: var(--neo-yellow);
  top: 80px;
  left: -40px;
  transform: rotate(-12deg);
}

.blob-2 {
  width: 160px;
  height: 160px;
  background: var(--neo-pink);
  bottom: 60px;
  right: -50px;
  transform: rotate(15deg);
}

.blob-3 {
  width: 110px;
  height: 110px;
  background: var(--neo-cyan);
  top: 45%;
  left: 2%;
  transform: rotate(8deg);
}

/* ============================================================
 * 4. LAYOUT UTILITIES
 * ============================================================ */
.max-width-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  position: relative;
  padding: var(--space-20) 0;
}

/* ============================================================
 * 5. HEADER & NAVIGATION
 * ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFBEB;
  border-bottom: 3px solid #000000;
  transition: box-shadow var(--duration-base) var(--ease-in-out);
}

header.scrolled {
  box-shadow: 0 4px 0px #000000;
  background: #FFDE59;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-6);
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-title {
  font-family: var(--font-title);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-accent {
  color: #000;
  background: var(--neo-yellow);
  padding: 0 6px;
  border: 2px solid #000;
  border-radius: 4px;
}

.logo-badge {
  font-size: 10px;
  background: var(--neo-yellow);
  color: #000000;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.logo-subtitle {
  font-size: var(--text-xs);
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #000000;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-in-out);
  letter-spacing: 0.1px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--neo-cyan);
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  transform: translate(-1px, -1px);
}

/* Header CTA */
.cta-header-btn {
  background: var(--neo-pink);
  color: #000000;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  transition: var(--transition-smooth);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-header-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
  background: #FF4D94;
}

.cta-header-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #000000;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--neo-yellow);
  border: 3px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  border-radius: var(--radius-lg);
  color: #000;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-smooth);
}

.mobile-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px #000000;
}

.mobile-toggle:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px #000000;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 3px;
  background: #000000;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-in-out);
  transform-origin: center;
}

.mobile-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
 * 6. SURFACE / NEOBRUTALIST PANELS
 * ============================================================ */
.glass-panel {
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

/* Neobrutalist Glow replacement classes */
.glow-cyan    { background: #FFFFFF; border: 3px solid #000000; box-shadow: 6px 6px 0px #000000; }
.glow-fuchsia { background: #FFFFFF; border: 3px solid #000000; box-shadow: 6px 6px 0px #000000; }

/* Color variant accents for panels */
.glass-panel.cyan    { background: #FFFFFF; border-left: 8px solid var(--neo-cyan); }
.glass-panel.fuchsia { background: #FFFFFF; border-left: 8px solid var(--neo-pink); }
.glass-panel.blue    { background: #FFFFFF; border-left: 8px solid var(--neo-blue); }

/* ============================================================
 * 7. TYPOGRAPHY HELPERS
 * ============================================================ */
.gradient-title {
  background: var(--neo-yellow);
  color: #000000;
  padding: 2px 10px;
  border: 3px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  border-radius: var(--radius-sm);
  display: inline-block;
  transform: rotate(-1deg);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--neo-cyan);
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  margin-bottom: var(--space-6);
}

.section-title {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.75px;
  line-height: 1.2;
}

.section-desc {
  color: #262626;
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: var(--space-3);
  max-width: 620px;
  line-height: 1.7;
}

/* ============================================================
 * 8. BUTTONS (NEOBRUTALIST TACTILE INTERACTION)
 * ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--neo-yellow);
  color: #000000;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: 0.3px;
  padding: 14px var(--space-8);
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000000;
  background: #FFD226;
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--text-base);
  padding: 14px var(--space-8);
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--neo-lime);
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #000000;
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #000000;
}

.btn-wa-icon {
  width: 20px;
  height: 20px;
  fill: #000000;
  flex-shrink: 0;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: #FFFFFF;
  color: #000000;
  font-weight: 800;
  font-size: var(--text-sm);
  padding: 10px var(--space-5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--neo-purple);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

/* ============================================================
 * 9. HERO SECTION
 * ============================================================ */
/* ============================================================
 * 9. HERO SECTION (HIGH-IMPACT CENTERED NEOBRUTALISM)
 * ============================================================ */
.hero-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero-content-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  text-align: center;
}

.hero-text {
  color: #262626;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 680px;
  text-align: center;
}

/* Synergy Badge */
.synergy-hero-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
  max-width: 600px;
  width: 100%;
  text-align: left;
  transition: var(--transition-smooth);
}

.synergy-hero-badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #000000;
  background: #FFFDF5;
}

.synergy-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--neo-yellow);
  padding: 6px;
  border: 2px solid #000;
  border-radius: 8px;
}

.synergy-title {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #000;
  letter-spacing: 0.1px;
}

.synergy-desc {
  font-size: var(--text-xs);
  color: #262626;
  font-weight: 600;
  margin-top: var(--space-1);
  line-height: 1.6;
}

.synergy-link {
  color: #000000;
  background: var(--neo-cyan);
  padding: 1px 5px;
  border: 1px solid #000;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 800;
}

.synergy-link:hover {
  background: var(--neo-yellow);
}

/* Hero Buttons */
.hero-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  width: 100%;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-3);
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-smooth);
}

.metric-card.card-yellow { background: var(--neo-yellow); }
.metric-card.card-cyan   { background: var(--neo-cyan); }
.metric-card.card-pink   { background: var(--neo-pink); }

.metric-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

.metric-num {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.5px;
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin-top: var(--space-2);
  line-height: 1.3;
}

.visual-glow-bg {
  display: none;
}

.visual-panel {
  position: relative;
  z-index: 1;
  padding: 10px;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  background: #FFFFFF;
  transition: var(--transition-smooth);
}

.visual-panel:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0px #000000;
}

.visual-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  border: 2px solid #000000;
  display: block;
}

/* ============================================================
 * 10. SKELETON & LAZY LOADING
 * ============================================================ */
.lazy-section {
  min-height: 250px;
}

.skeleton-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
}

.skeleton-box {
  background: #E5E7EB;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  border-radius: var(--radius-md);
}

.skeleton-title {
  width: 32%;
  height: 32px;
  margin: 0 auto var(--space-4);
  background: var(--neo-yellow);
}

.skeleton-text {
  width: 55%;
  height: 20px;
  margin: 0 auto var(--space-8);
}

.skeleton-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.skeleton-card {
  height: 240px;
  border-radius: var(--radius-2xl);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: var(--neo-cyan);
}

.skeleton-line-h {
  width: 55%;
  height: 18px;
  background: #000;
}

.skeleton-line-p {
  width: 100%;
  height: 56px;
  background: #F3F4F6;
}

/* Fade-in animation */
.fade-in-section {
  animation: section-fade-in 0.4s var(--ease-out) forwards;
}

@keyframes section-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
 * 11. FEATURE CARDS (KEUNGGULAN)
 * ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.feature-card {
  padding: var(--space-8) var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-radius: var(--radius-2xl);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
}

.feature-card.cyan:hover    { background: #E6FFFF; }
.feature-card.fuchsia:hover { background: #FFE6F7; }
.feature-card.blue:hover    { background: #EBF3FF; }

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.feature-card.cyan .feature-icon-wrapper    { background: var(--neo-cyan); }
.feature-card.fuchsia .feature-icon-wrapper { background: var(--neo-pink); }
.feature-card.blue .feature-icon-wrapper    { background: var(--neo-yellow); }

.feature-title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.25px;
  line-height: 1.3;
}

.feature-desc {
  color: #262626;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
 * 12. PRICING CARDS
 * ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
  margin-top: var(--space-12);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-3xl);
  padding: var(--space-10) var(--space-8);
  position: relative;
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #000000;
}

.pricing-header-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
}

.pricing-card.lite     .pricing-header-badge { background: var(--neo-cyan);   color: #000; }
.pricing-card.standard .pricing-header-badge { background: var(--neo-yellow); color: #000; }
.pricing-card.premium  .pricing-header-badge { background: var(--neo-pink);   color: #000; }

.pricing-name {
  font-family: var(--font-title);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #000000;
  margin-top: var(--space-5);
  letter-spacing: -0.5px;
}

.pricing-sub {
  color: #262626;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: var(--space-2);
  line-height: 1.6;
}

.pricing-price-box {
  display: flex;
  flex-direction: column;
  padding: var(--space-5) 0;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin: var(--space-6) 0;
  gap: var(--space-2);
}

.price-label-sm {
  font-size: 10px;
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-original-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.price-original {
  font-size: var(--text-sm);
  color: #6B7280;
  text-decoration: line-through;
  font-weight: 700;
}

.discount-badge {
  font-size: 10px;
  font-weight: 800;
  color: #000000;
  background: var(--neo-pink);
  border: 2px solid #000000;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 2px 2px 0px #000000;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.price-currency {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #000000;
  align-self: flex-start;
  margin-top: 4px;
}

.price-val {
  font-family: var(--font-title);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -1.5px;
  line-height: 1;
}

.price-period {
  font-size: var(--text-xs);
  color: #262626;
  font-weight: 700;
  margin-left: var(--space-1);
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: #1F2937;
  font-weight: 600;
  line-height: 1.5;
}

.pricing-list li.bold-item {
  font-weight: 800;
  color: #000000;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: #000000;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--neo-lime);
  border: 1px solid #000;
  border-radius: 4px;
  padding: 1px;
}

/* Pricing: Popular Highlight Card */
.pricing-card.standard {
  background: #FFFDF0;
  border-width: 4px;
  box-shadow: 8px 8px 0px #000000;
}

.pricing-glow-border::before {
  display: none;
}

.popular-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neo-yellow);
  color: #000000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  border: 3px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  white-space: nowrap;
}

.btn-pricing-action {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px var(--space-5);
  font-size: var(--text-sm);
  font-weight: 800;
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-smooth);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.pricing-card.standard .btn-pricing-action {
  background: var(--neo-yellow);
  color: #000000;
}

.pricing-card.standard .btn-pricing-action:hover {
  background: #FFD226;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

.pricing-card.lite .btn-pricing-action {
  background: var(--neo-cyan);
  color: #000000;
}

.pricing-card.lite .btn-pricing-action:hover {
  background: #00D1EA;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

.pricing-card.premium .btn-pricing-action {
  background: var(--neo-pink);
  color: #000000;
}

.pricing-card.premium .btn-pricing-action:hover {
  background: #FF4D94;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

/* ============================================================
 * 13. COMPARISON TABLE (NEOBRUTALIST PIXEL-PERFECT GRID)
 * ============================================================ */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
  margin-top: var(--space-10);
  background: #FFFFFF;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  min-width: 760px;
}

thead th {
  background: var(--neo-yellow);
  padding: 16px 20px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.6px;
  border-bottom: 3px solid #000000;
  border-right: 2px solid #000000;
  vertical-align: middle;
}

thead th:last-child {
  border-right: none;
}

thead th.highlight-header {
  background: var(--neo-cyan);
  color: #000000;
}

tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: #1F2937;
  font-weight: 600;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody td:last-child {
  border-right: none;
}

tbody tr:hover td {
  background: #FFFDF0;
}

.highlight-col {
  background: #E6FFFF;
  font-weight: 800;
  color: #000000;
}

tbody tr:hover td.highlight-col {
  background: #CCFFFF;
}

.row-feature-name {
  font-weight: 800;
  color: #000000;
  background: #FAF8F5;
}

.comp-star {
  color: #000000;
  font-weight: 800;
}

.comp-star-icon {
  width: 16px;
  height: 16px;
  fill: #000000;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}

.comp-check {
  color: #000000;
  font-weight: 700;
}

.comp-check-icon {
  width: 16px;
  height: 16px;
  fill: #000000;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
}

.comp-cross {
  color: #DC2626;
  font-weight: 700;
}

.comp-warning {
  color: #D97706;
  font-weight: 700;
}

/* ============================================================
 * 14. SYNERGY (AIKA) SECTION
 * ============================================================ */
.synergy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}

.synergy-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.synergy-text-p {
  color: #262626;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.75;
}

.synergy-features-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.synergy-mini-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: var(--transition-smooth);
}

.synergy-mini-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
  background: #FFFDF0;
}

.synergy-mini-val {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.5px;
  line-height: 1;
}

.synergy-mini-val.fuchsia { color: #000000; }
.synergy-mini-val.white   { color: #000000; }

.synergy-mini-title {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #000000;
  margin-top: var(--space-1);
}

.synergy-mini-desc {
  font-size: var(--text-xs);
  color: #262626;
  font-weight: 600;
  line-height: 1.55;
}

/* ============================================================
 * 15. FAQ ACCORDION
 * ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.faq-item {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
  background: #FFFDF5;
}

.faq-item.faq-active {
  background: var(--neo-yellow);
  box-shadow: 6px 6px 0px #000000;
}

.faq-question-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-question-text {
  font-size: var(--text-md);
  font-weight: 800;
  color: #000000;
  line-height: 1.4;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: #000000;
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
  background: #FFFFFF;
  border: 2px solid #000;
  border-radius: 6px;
  padding: 1px;
}

.faq-item.faq-active .faq-chevron {
  transform: rotate(180deg);
  background: #000000;
  color: #FFFFFF;
}

.faq-answer-row {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out), margin-top var(--duration-base) var(--ease-in-out);
}

.faq-item.faq-active .faq-answer-row {
  margin-top: var(--space-4);
  border-top: 2px solid #000000;
  padding-top: var(--space-3);
}

.faq-answer-text {
  color: #000000;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.7;
}

/* ============================================================
 * 16. CTA SECTION
 * ============================================================ */
.cta-layout {
  padding: var(--space-16);
  border-radius: var(--radius-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  background: var(--neo-yellow);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #000000;
}

.cta-glow-overlay {
  display: none;
}

.cta-layout > * { position: relative; z-index: 1; }

.cta-layout h3 {
  font-family: var(--font-title);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -1px;
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.cta-layout p {
  color: #000000;
  font-size: var(--text-base);
  font-weight: 700;
  max-width: 540px;
  margin: 0 auto var(--space-9);
  line-height: 1.7;
}

.cta-button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.cta-btn-wa {
  background: var(--neo-pink);
  color: #000000;
  font-weight: 900;
  font-size: var(--text-base);
  padding: 16px var(--space-9);
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  transition: var(--transition-smooth);
}

.cta-btn-wa:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
  background: #FF4D94;
}

.cta-btn-price {
  background: #FFFFFF;
  color: #000000;
  font-weight: 800;
  font-size: var(--text-base);
  padding: 16px var(--space-8);
  border-radius: var(--radius-xl);
  text-decoration: none;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  transition: var(--transition-smooth);
}

.cta-btn-price:hover {
  background: var(--neo-cyan);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
}

.cta-footer-note {
  font-size: var(--text-xs);
  color: #000000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--neo-lime);
  border: 2px solid #000;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ============================================================
 * 17. FOOTER
 * ============================================================ */
footer {
  border-top: 3px solid #000000;
  padding: var(--space-16) 0 var(--space-12);
  background: #FFFBEB;
  color: #000000;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-12);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-logo-title {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.3px;
}

.footer-logo-accent {
  color: #000000;
  background: var(--neo-yellow);
  padding: 0 4px;
  border: 2px solid #000;
  border-radius: 4px;
}

.footer-brand-badge {
  font-size: 9px;
  background: var(--neo-cyan);
  color: #000000;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  margin-left: var(--space-2);
}

.footer-brand-subtext {
  font-size: var(--text-xs);
  color: #000000;
  font-weight: 700;
}

.footer-disclosure {
  font-size: 11px;
  color: #262626;
  font-weight: 600;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-links-col a {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #000000;
  text-decoration: none;
  padding: 4px 8px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  transition: all var(--duration-fast) var(--ease-in-out);
}

.footer-links-col a:hover {
  background: var(--neo-yellow);
  border-color: #000000;
  box-shadow: 2px 2px 0px #000000;
}

.footer-copyright {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-copyright p {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #000000;
}

.footer-copyright span {
  font-size: 11px;
  font-weight: 600;
  color: #4B5563;
}

/* ============================================================
 * 18. EMAIL SECTION
 * ============================================================ */
.email-logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.email-logo-container svg { flex-shrink: 0; display: block; filter: drop-shadow(2px 2px 0px #000); }

.email-logo-container .pricing-name {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 900;
  color: #000000;
  font-family: var(--font-title);
  letter-spacing: -0.4px;
}

/* ── Clients Section ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-6);
  border-radius: var(--radius-2xl);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0px #000000;
  text-align: center;
}

.client-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000;
  background: #FFFDF0;
}

.client-logo-wrapper {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  padding: var(--space-2);
}

.client-logo-img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: transform 0.2s ease;
}

.client-card:hover .client-logo-img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.2);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.client-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: var(--text-base);
  color: #000000;
}

.client-link-text {
  font-size: var(--text-xs);
  color: #000000;
  font-weight: 800;
  background: var(--neo-cyan);
  padding: 1px 8px;
  border: 1px solid #000;
  border-radius: 4px;
}

/* ── Footer Social Row ── */
.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px #000000;
  color: #000000;
  font-size: var(--text-xs);
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--neo-pink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

/* ── Hero Scroll Indicator ── */
.hero-scroll-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-8);
  width: 100%;
}

.scroll-prompt-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: #000000;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px #000000;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.scroll-prompt-btn:hover {
  background: var(--neo-yellow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

.scroll-mouse-icon {
  width: 22px;
  height: 34px;
  border: 3px solid #000000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  background: #FFFFFF;
}

.scroll-mouse-wheel {
  width: 4px;
  height: 8px;
  background: #000000;
  border-radius: 9999px;
  animation: mouse-scroll 1.6s infinite ease-in-out;
}

@keyframes mouse-scroll {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-arrow-icon {
  width: 18px;
  height: 18px;
  color: #000000;
  animation: arrow-bounce 1.6s infinite ease-in-out;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================================
 * 19. RESPONSIVE BREAKPOINTS
 * ============================================================ */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    text-align: center;
  }

  .hero-content {
    order: 1;
    align-items: center;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-heading {
    font-size: var(--text-5xl);
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .synergy-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .metrics-row {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .pricing-card.premium {
    grid-column: span 2;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .synergy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-9);
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links-col {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
  }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  section {
    padding: var(--space-16) 0;
  }

  .header-container {
    padding: var(--space-3) var(--space-4);
  }

  /* Show hamburger, hide desktop nav & CTA */
  .mobile-toggle { display: flex; }
  .cta-header-btn { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFBEB;
    border-bottom: 3px solid #000000;
    box-shadow: 0 6px 0px #000000;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--space-2) 0 var(--space-4);
    z-index: 99;
  }

  .nav-links.mobile-open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-md);
    border-bottom: 2px solid #000000;
    border-radius: 0;
  }

  .nav-links a:last-child { border-bottom: none; }

  .hero-heading {
    font-size: var(--text-4xl);
    letter-spacing: -1.2px;
  }

  .hero-text {
    font-size: var(--text-base);
  }

  .hero-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .metrics-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .metric-num  { font-size: var(--text-xl); }
  .metric-label { font-size: 9px; }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  .pricing-card.premium {
    grid-column: span 1;
    max-width: 100%;
  }

  .synergy-features-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skeleton-grid-3 {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    padding: var(--space-10) var(--space-6);
  }

  .cta-layout h3 {
    font-size: var(--text-3xl);
    letter-spacing: -0.5px;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .footer-links-col {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .footer-disclosure {
    max-width: 100%;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ── Hero Scroll Indicator (Minimalist Floating Style with Focal Mouse Icon) ── */
.hero-scroll-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-8);
  width: 100%;
}

.scroll-prompt-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #000000;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.scroll-prompt-text {
  font-size: 12px;
  font-weight: 800;
  color: #000000;
}

/* Mouse Icon - Center Focal Point */
.scroll-mouse-icon {
  width: 28px;
  height: 42px;
  border: 3px solid #000000;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  background: #FFFFFF;
  box-shadow: 3px 3px 0px #000000;
  transition: transform 0.25s var(--ease-out), background-color 0.25s ease, box-shadow 0.25s var(--ease-out);
}

.scroll-mouse-wheel {
  width: 4px;
  height: 9px;
  background: #000000;
  border-radius: 9999px;
  animation: mouse-scroll 1.6s infinite ease-in-out;
}

/* Hover focuses explicitly on the center mouse icon */
.scroll-prompt-btn:hover .scroll-mouse-icon {
  background: var(--neo-yellow);
  transform: translate(-3px, -3px) scale(1.1);
  box-shadow: 6px 6px 0px #000000;
}

.scroll-prompt-btn:active .scroll-mouse-icon {
  transform: translate(1px, 1px) scale(1.02);
  box-shadow: 2px 2px 0px #000000;
}

@keyframes mouse-scroll {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(9px); }
  100% { opacity: 1; transform: translateY(0); }
}

.scroll-arrow-icon {
  width: 18px;
  height: 18px;
  color: #000000;
  animation: arrow-bounce 1.6s infinite ease-in-out;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================================
 * INFINITE SERVICES MARQUEE TICKER BANNER
 * ============================================================ */
.marquee-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: var(--neo-yellow);
  border-top: 3.5px solid #000000;
  border-bottom: 3.5px solid #000000;
  padding: 13px 0;
  margin-top: 36px;
  margin-bottom: 36px;
  user-select: none;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.marquee-item {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-star {
  font-size: 15px;
  display: inline-block;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
 * LIMITED EDITION LAUNCH OFFER BANNER (NEOBRUTALIST STYLE)
 * ============================================================ */
.launch-offer-banner {
  background: var(--neo-lime);
  border: 3.5px solid #000000;
  box-shadow: 6px 6px 0px #000000;
  border-radius: var(--radius-2xl);
  padding: 20px 24px;
  margin: 0 auto 36px;
  max-width: 960px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.launch-offer-banner:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px #000000;
}

.launch-offer-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.launch-offer-badge {
  background: var(--neo-yellow);
  color: #000000;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border: 2px solid #000000;
  border-radius: var(--radius-full);
  box-shadow: 2px 2px 0px #000000;
  letter-spacing: 0.5px;
}

.launch-offer-counter {
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border: 2px solid #000000;
  border-radius: var(--radius-full);
  box-shadow: 2px 2px 0px #000000;
}

.launch-offer-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 6px;
}

.launch-offer-desc {
  font-size: 0.9375rem;
  color: #1F2937;
  font-weight: 600;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
}
