/* ==========================================================================
   FHIVO — Financial Highest In-Value Optimizer
   Universal Responsive SaaS Stylesheet
   Developer: Mohammad Fahad (https://github.com/Dr-MrBot)
   ========================================================================== */

:root {
  /* Core Color Palette */
  --navy-950: #0a0f1d;
  --navy-900: #0f1729;
  --navy-850: #141d35;
  --navy-800: #1b2544;
  --navy-700: #26315a;
  --navy-600: #3b4876;
  --navy-100: #eef2fa;

  --brass-500: #c9922b;
  --brass-600: #b17d1e;
  --brass-400: #dfa843;
  --brass-100: #fbf3e4;

  --teal-500: #25999a;
  --teal-600: #1d7b7c;
  --teal-400: #38b6b7;
  --teal-100: #e6f6f6;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --success: #10b981;
  --success-bg: #ecfdf5;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-heading: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 41, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 41, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 41, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 41, 0.18);
  --shadow-glow: 0 0 35px rgba(37, 153, 154, 0.25);
  --shadow-brass-glow: 0 0 30px rgba(201, 146, 43, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --container-max: 1240px;
}

/* ==========================================================================
   Base Resets & Overflow Prevention
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-950);
  color: var(--slate-200);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  position: relative;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  touch-action: manipulation;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--slate-300) 50%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #ffffff 30%, var(--teal-400) 80%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal {
  color: var(--teal-400) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-muted {
  color: var(--slate-400);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(37, 153, 154, 0.12);
  border: 1px solid rgba(37, 153, 154, 0.3);
  color: var(--teal-400);
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  max-width: 100%;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(32px, 6vw, 56px) auto;
  padding: 0 16px;
}

.section-header h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  margin-bottom: 14px;
}

.section-header p {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: var(--slate-400);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 24px);
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
  user-select: none;
  touch-action: manipulation;
  text-align: center;
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 153, 154, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 153, 154, 0.5);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--teal-400);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  min-height: 38px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  min-height: 52px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   1. Header & Navigation Bar
   ========================================================================== */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
}

.header-sticky.scrolled {
  background: rgba(10, 15, 29, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(37, 153, 154, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(37, 153, 154, 0.3);
  box-shadow: 0 4px 14px rgba(37, 153, 154, 0.25);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.05) rotate(-2deg);
  border-color: var(--teal-400);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.62rem;
  color: var(--teal-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-300);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-400);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--teal-400);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(10, 15, 29, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  z-index: 998;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: clamp(105px, 14vh, 150px);
  padding-bottom: clamp(48px, 8vh, 88px);
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(37, 153, 154, 0.15) 0%, rgba(201, 146, 43, 0.05) 35%, rgba(10, 15, 29, 1) 70%);
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 15%;
  width: min(400px, 90vw);
  height: min(400px, 90vw);
  background: radial-gradient(circle, rgba(37, 153, 154, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  top: 25%;
  right: 10%;
  width: min(450px, 90vw);
  height: min(450px, 90vw);
  background: radial-gradient(circle, rgba(201, 146, 43, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(0.96rem, 1.8vw, 1.12rem);
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 520px;
  width: 100%;
}

.trust-icon {
  color: var(--brass-400);
  font-size: 1.35rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.trust-text p:first-child {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.trust-text p:last-child {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 2px;
}

/* Hero Dashboard Visual Mockup */
.hero-visual-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.browser-frame {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-normal);
  width: 100%;
}

.browser-frame:hover {
  transform: translateY(-3px);
}

.browser-topbar {
  background: var(--navy-850);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-address {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--slate-400);
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-address i {
  color: var(--teal-400);
}

.mock-app-container {
  background: var(--navy-950);
  padding: clamp(12px, 2.5vw, 18px);
}

.mock-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
  gap: 8px;
}

.mock-app-title {
  font-size: clamp(0.88rem, 2vw, 1.02rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-app-badge {
  background: rgba(37, 153, 154, 0.2);
  color: var(--teal-400);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}

.mock-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mock-kpi-card {
  background: var(--navy-850);
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-kpi-val {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 3px;
}

.mock-kpi-lbl {
  font-size: 0.65rem;
  color: var(--slate-400);
}

.mock-main-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
}

.mock-chart-box {
  background: var(--navy-850);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding-top: 10px;
}

.bar-col {
  flex: 1;
  background: linear-gradient(180deg, var(--teal-400) 0%, var(--navy-700) 100%);
  border-radius: 4px 4px 0 0;
}

.bar-col.accent {
  background: linear-gradient(180deg, var(--brass-400) 0%, var(--brass-600) 100%);
}

.mock-table-box {
  background: var(--navy-850);
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Floating UI Badges */
.floating-card {
  position: absolute;
  padding: 10px 14px;
  background: rgba(20, 29, 53, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.card-1 {
  top: -15px;
  right: -15px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 25px;
  left: -20px;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: -15px;
  right: 25px;
  animation-delay: 3s;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.icon-green { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.icon-blue { background: rgba(37, 153, 154, 0.2); color: var(--teal-400); }
.icon-brass { background: rgba(201, 146, 43, 0.2); color: var(--brass-400); }

.float-text h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
}

.float-text p {
  font-size: 0.7rem;
  color: var(--slate-400);
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   3. Problem / Solution Section
   ========================================================================== */
.problem-solution-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: all var(--transition-normal);
}

.problem-card:hover {
  background: rgba(239, 68, 68, 0.05);
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.35);
}

.problem-icon {
  width: 42px;
  height: 42px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.86rem;
  color: var(--slate-400);
  line-height: 1.5;
}

/* Transformation Visual Banner */
.transformation-banner {
  background: linear-gradient(135deg, rgba(20, 29, 53, 0.9) 0%, rgba(37, 153, 154, 0.15) 100%);
  border: 1px solid rgba(37, 153, 154, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 16px;
}

.transform-step {
  text-align: center;
  z-index: 2;
  flex: 1;
  min-width: 140px;
}

.transform-box {
  width: min(140px, 100%);
  height: 84px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 10px auto;
  font-weight: 700;
  font-size: 0.88rem;
}

.box-manual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-400);
}

.box-fhivo {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  width: min(155px, 100%);
  height: 92px;
}

.box-organized {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--success);
}

.transform-arrow {
  font-size: 1.6rem;
  color: var(--teal-400);
  flex-shrink: 0;
}

/* ==========================================================================
   4. Features Section (Modules)
   ========================================================================== */
.features-section {
  padding: clamp(48px, 8vh, 96px) 0;
  background: var(--navy-950);
}

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

.feature-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 153, 154, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 153, 154, 0.15);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 153, 154, 0.12);
  border: 1px solid rgba(37, 153, 154, 0.25);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--slate-400);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(201, 146, 43, 0.15);
  color: var(--brass-400);
  border: 1px solid rgba(201, 146, 43, 0.3);
  font-weight: 600;
}

/* ==========================================================================
   5. Multi-Tenant Workspace Section
   ========================================================================== */
.multi-business-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.multi-business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

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

.biz-card {
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.biz-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-400);
}

.biz-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.avatar-a { background: rgba(37, 153, 154, 0.2); color: var(--teal-400); border: 1px solid var(--teal-500); }
.avatar-b { background: rgba(201, 146, 43, 0.2); color: var(--brass-400); border: 1px solid var(--brass-500); }
.avatar-c { background: rgba(16, 185, 129, 0.2); color: var(--success); border: 1px solid var(--success); }

.biz-card h4 {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.biz-tags {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.68rem;
  color: var(--slate-400);
}

.admin-callout {
  grid-column: span 3;
  background: rgba(201, 146, 43, 0.1);
  border: 1px dashed rgba(201, 146, 43, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--slate-300);
}

.admin-callout i {
  color: var(--brass-400);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ==========================================================================
   6. How It Works / Steps Section
   ========================================================================== */
.onboarding-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-950);
}

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

.step-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 153, 154, 0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-400);
  opacity: 0.7;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ==========================================================================
   7. Dashboard Showcase (Tabs)
   ========================================================================== */
.dashboard-showcase-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-900);
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-300);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  touch-action: manipulation;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--teal-500);
  color: var(--white);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-glow);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-frame {
  background: var(--navy-950);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 18px;
}

.chart-card {
  background: var(--navy-850);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.histogram-demo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.histo-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.histo-bar-sales {
  width: 100%;
  background: var(--teal-500);
  border-radius: 4px 4px 0 0;
}

.histo-bar-exp {
  width: 100%;
  background: var(--danger);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

.histo-label {
  font-size: 0.68rem;
  color: var(--slate-400);
}

/* ==========================================================================
   8. Billing & Invoice Showcase
   ========================================================================== */
.billing-showcase-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-950);
}

.invoice-preview-card {
  background: var(--white);
  color: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 36px);
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.inv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--slate-200);
  margin-bottom: 16px;
  gap: 16px;
}

.inv-brand h3 {
  color: var(--navy-900);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

/* Touch-Scrollable Table Container for Mobile */
.inv-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.inv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}

.inv-table th, .inv-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.84rem;
}

.inv-table th {
  background: var(--slate-100);
  color: var(--slate-700);
  font-weight: 700;
}

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

.inv-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate-50);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.qr-img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.inv-totals {
  text-align: right;
  margin-left: auto;
}

.inv-total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-600);
  margin-top: 4px;
}

/* ==========================================================================
   9. WhatsApp Flow Section
   ========================================================================== */
.whatsapp-flow-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, rgba(37, 211, 102, 0.05) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flow-connectors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.flow-node {
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  flex: 1;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.flow-node:hover {
  transform: translateY(-3px);
  border-color: var(--whatsapp-green);
}

.flow-node i {
  font-size: 1.6rem;
  color: var(--whatsapp-green);
  margin-bottom: 8px;
}

.flow-node h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.flow-arrow {
  color: var(--slate-500);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ==========================================================================
   10. Business Target Types
   ========================================================================== */
.business-types-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-950);
}

.biz-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.biz-type-card {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.biz-type-card:hover {
  background: var(--navy-850);
  border-color: var(--teal-400);
  transform: translateY(-2px);
}

.biz-type-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 153, 154, 0.12);
  border-radius: var(--radius-sm);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.biz-type-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.biz-type-info p {
  font-size: 0.82rem;
  color: var(--slate-400);
}

/* ==========================================================================
   11. Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-900);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-stars {
  color: var(--brass-400);
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.quote-text {
  font-size: 0.9rem;
  color: var(--slate-200);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}

.client-info h5 {
  font-size: 0.9rem;
  color: var(--white);
}

.client-info p {
  font-size: 0.76rem;
  color: var(--slate-400);
}

/* ==========================================================================
   11.5 Founder & Developer Showcase Section
   ========================================================================== */
.creator-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}

.creator-ambient-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.18;
}

.creator-glow-1 {
  top: 15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--teal-500) 0%, transparent 70%);
}

.creator-glow-2 {
  bottom: 10%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--brass-500) 0%, transparent 70%);
}

.creator-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Profile Card (Left Column) */
.creator-profile-card {
  background: linear-gradient(160deg, rgba(20, 29, 53, 0.9) 0%, rgba(15, 23, 41, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.5vw, 30px) clamp(18px, 3vw, 24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.creator-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-400), var(--brass-400), transparent);
  border-radius: var(--radius-full);
}

.creator-photo-container {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px auto;
}

.creator-photo-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(56, 182, 183, 0.45) 0%, rgba(223, 168, 67, 0.3) 50%, transparent 75%);
  filter: blur(16px);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.85;
}

.creator-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(56, 182, 183, 0.4);
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  background: var(--navy-900);
}

.creator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.creator-photo-frame:hover .creator-photo {
  transform: scale(1.06);
}

.creator-verified-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10, 15, 29, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 182, 183, 0.5);
  color: var(--teal-400);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.creator-identity {
  text-align: center;
  margin-bottom: 16px;
}

.creator-name {
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.creator-role {
  font-size: 0.88rem;
  color: var(--slate-300);
  margin-bottom: 8px;
}

.role-highlight {
  color: var(--brass-400);
  font-weight: 700;
}

.creator-alias {
  font-size: 0.78rem;
  color: var(--teal-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: rgba(37, 153, 154, 0.12);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid rgba(37, 153, 154, 0.3);
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
}

.creator-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.creator-social-hub {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.social-hub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--slate-400);
  margin-bottom: 12px;
}

.social-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.55;
  }
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-card-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

.social-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.social-btn-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.social-platform {
  font-size: 0.7rem;
  color: var(--slate-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.social-handle {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-arrow {
  font-size: 0.75rem;
  color: var(--slate-500);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

/* Social Buttons Specific Styles */
.social-instagram .social-btn-icon {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
}

.social-instagram:hover {
  border-color: rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.2);
}

.social-instagram:hover .social-arrow {
  transform: translate(2px, -2px);
  color: #E1306C;
}

.social-instagram:hover .social-btn-icon {
  transform: scale(1.1);
}

.social-github .social-btn-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.social-github:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.social-github:hover .social-arrow {
  transform: translate(2px, -2px);
  color: var(--white);
}

.social-github:hover .social-btn-icon {
  transform: scale(1.1);
}

.social-whatsapp .social-btn-icon {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
}

.social-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.social-whatsapp:hover .social-arrow {
  transform: translate(2px, -2px);
  color: var(--whatsapp-green);
}

.social-whatsapp:hover .social-btn-icon {
  transform: scale(1.1);
}

/* Story & Mission Card (Right Column) */
.creator-story-card {
  background: linear-gradient(160deg, rgba(20, 29, 53, 0.8) 0%, rgba(15, 23, 41, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.founder-quote-box {
  background: rgba(37, 153, 154, 0.08);
  border: 1px solid rgba(37, 153, 154, 0.25);
  border-left: 4px solid var(--teal-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  position: relative;
}

.quote-icon-bubble {
  font-size: 1.3rem;
  color: var(--teal-400);
  margin-bottom: 8px;
  opacity: 0.85;
}

.founder-quote-text {
  font-size: clamp(0.96rem, 1.8vw, 1.08rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 12px;
  font-weight: 500;
}

.quote-author-sig {
  font-size: 0.84rem;
  color: var(--slate-300);
  text-align: right;
}

.quote-author-sig strong {
  color: var(--brass-400);
}

.founder-narrative h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.founder-narrative p {
  color: var(--slate-300);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.founder-narrative p:last-child {
  margin-bottom: 0;
}

.founder-narrative strong {
  color: var(--white);
}

.founder-goals-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.goals-heading {
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.creator-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.goal-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.goal-item-card:hover {
  border-color: rgba(37, 153, 154, 0.4);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.goal-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.goal-icon-box.icon-teal {
  background: rgba(37, 153, 154, 0.15);
  color: var(--teal-400);
}

.goal-icon-box.icon-brass {
  background: rgba(201, 146, 43, 0.15);
  color: var(--brass-400);
}

.goal-icon-box.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.goal-icon-box.icon-green {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-green);
}

.goal-item-content h5 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.goal-item-content p {
  font-size: 0.8rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin: 0;
}

.founder-commitment-box {
  background: linear-gradient(135deg, rgba(201, 146, 43, 0.09) 0%, rgba(37, 153, 154, 0.09) 100%);
  border: 1px solid rgba(201, 146, 43, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.commitment-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brass-400);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.founder-commitment-box p {
  font-size: 0.86rem;
  color: var(--slate-300);
  margin-bottom: 14px;
  line-height: 1.55;
}

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

.btn-md {
  padding: 10px 20px;
  min-height: 42px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Responsive Rules for Creator Section */
@media (max-width: 992px) {
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .creator-profile-card {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .creator-goals-grid {
    grid-template-columns: 1fr;
  }

  .commitment-actions {
    flex-direction: column;
    width: 100%;
  }

  .commitment-actions .btn {
    width: 100%;
  }

  .founder-quote-box {
    padding: 16px 18px;
  }
}

/* ==========================================================================
   12. FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: var(--navy-950);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--teal-400);
}

.faq-header {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(0.92rem, 2vw, 1rem);
  color: var(--white);
  user-select: none;
  gap: 12px;
  touch-action: manipulation;
}

.faq-toggle {
  font-size: 0.95rem;
  color: var(--teal-400);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 18px;
  color: var(--slate-300);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-body {
  padding: 0 18px 16px 18px;
  max-height: 400px;
}

/* ==========================================================================
   13. Final CTA & Footer
   ========================================================================== */
.final-cta-section {
  padding: clamp(48px, 8vh, 88px) 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 153, 154, 0.2) 0%, rgba(10, 15, 29, 1) 80%);
  text-align: center;
}

.cta-box {
  background: var(--navy-900);
  border: 1px solid rgba(37, 153, 154, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 52px) clamp(16px, 4vw, 36px);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-glow);
}

.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 24px 0;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 3.5vw, 36px);
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--slate-400);
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.86rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--slate-500);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* Fixed Mobile Sticky CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 29, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  z-index: 997;
}

/* ==========================================================================
   UNIVERSAL MULTI-SCREEN RESPONSIVE SYSTEM
   ========================================================================== */

/* 1. Laptops & Standard Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .card-1 { right: -5px; }
  .card-2 { left: -10px; }
  .card-3 { right: 10px; }
}

/* 2. Tablets & Small Laptops (max-width: 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-box {
    margin: 0 auto;
    text-align: left;
  }

  .hero-visual-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .floating-card {
    display: none; /* Hide overflow-prone absolute badges on tablet */
  }

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

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

  .features-grid, .problems-grid, .steps-grid, .testimonials-grid, .biz-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .workspace-visual {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 3. Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 68px; /* Room for sticky bottom CTA */
  }

  .header-container {
    height: 70px;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(37, 153, 154, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    gap: 12px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    width: 100%;
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn-whatsapp {
    display: none; /* Hide from top header; sticky CTA is active at bottom */
  }

  .sticky-mobile-cta {
    display: block;
  }

  .features-grid, .problems-grid, .steps-grid, .testimonials-grid, .biz-type-grid {
    grid-template-columns: 1fr;
  }

  .workspace-visual {
    grid-template-columns: 1fr;
  }

  .admin-callout {
    grid-column: span 1;
  }

  .transformation-banner {
    flex-direction: column;
    padding: 24px 16px;
  }

  .transform-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .flow-connectors {
    flex-direction: column;
    gap: 10px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .flow-node {
    width: 100%;
  }

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

  .mock-main-content {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* 4. Compact Smartphones (max-width: 480px) */
@media (max-width: 480px) {
  .brand-sub {
    display: none; /* Clean up small logo subtext on narrow screens */
  }

  .brand-name {
    font-size: 1.18rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .container {
    padding: 0 14px;
  }

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

  .tab-buttons {
    gap: 6px;
  }

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

  .inv-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .inv-totals {
    text-align: left;
    margin-left: 0;
    width: 100%;
  }

  .inv-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .qr-box {
    width: 100%;
    justify-content: flex-start;
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* 5. Extra Narrow Phones (max-width: 360px) */
@media (max-width: 360px) {
  .btn {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .mock-kpi-grid {
    grid-template-columns: 1fr;
  }

  .browser-address {
    font-size: 0.68rem;
  }
}

/* Accessibility: Reduced Motion */
@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;
  }
}
