/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Modern Reset & Design System Tokens */
:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-hover: #F1F5F9;
  --border: #E2E8F0;
  --border-focus: #4F46E5;
  --text: #0F172A;
  --text-muted: #64748B;
  
  /* Premium Indigo & Blue Palette */
  --accent: #4F46E5;
  --accent-hover: #4338CA;
  --accent-deep: #1E1B4B;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --accent-soft-hover: rgba(79, 70, 229, 0.15);
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 12px 20px -8px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 8px 30px -6px rgba(79, 70, 229, 0.35);
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  padding-top: 104px; /* Space for top-bar & nav */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Background Gradients & Grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(800px 500px at 85% -10%, rgba(79, 70, 229, 0.12), transparent 70%),
    radial-gradient(600px 500px at 15% 15%, rgba(79, 70, 229, 0.06), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}

/* Container */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography Utility */
.mono {
  font-family: var(--font-mono);
}

.kick {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-hover);
  display: inline-block;
  margin-bottom: 8px;
}

/* Scroll reveal class base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Sticky Header Wrapper */
.header-fixed-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Top Info Bar (WhatsApp Announcement) */
.wa-bar {
  width: 100%;
  background: linear-gradient(135deg, #4F46E5, #3B82F6);
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.25);
  transition: var(--transition);
}

.wa-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}

.wa-bar .wa-text-mobile {
  display: none;
}

.wa-bar svg {
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.wa-bar .wa-cta {
  display: inline-block;
  background: #FFFFFF;
  color: #4F46E5;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--transition);
}

.wa-bar .wa-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Main Navigation Header */
.gbnav {
  width: 100%;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.gbnav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gbnav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.gbnav-brand .logo-accent {
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
}

.gbnav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 600;
}

.gbnav-links > a {
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.gbnav-links > a:hover {
  color: var(--text);
}

.gbnav-links > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.gbnav-links > a:hover::after {
  width: 100%;
}

.gbnav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gbnav-cta {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gbnav-cta-solid {
  background: var(--accent);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-glow);
}

.gbnav-cta-solid:hover {
  background: var(--accent-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 10px 25px -4px rgba(79, 70, 229, 0.45);
}

.gbnav-cta-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1.5px solid var(--border);
}

.gbnav-cta-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-hover) !important;
  background: var(--accent-soft);
  transform: translateY(-1.5px);
}

.gbnav-burger {
  display: flex;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.gbnav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Off-canvas mobile drawer */
.gbnav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.gbnav-overlay.on {
  opacity: 1;
  pointer-events: auto;
}

.gbnav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: var(--transition);
}

.gbnav-drawer.on {
  transform: translateX(0);
}

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

.gbnav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.gbnav-close:hover {
  color: var(--text);
}

.gbnav-d-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
}

.gbnav-d-link:hover {
  color: var(--accent);
  padding-left: 6px;
}

.gbnav-d-btns {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Adjust main body margin when top announcement is hidden or shifts */
@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
  .gbnav-links, .gbnav-right .gbnav-cta-ghost, .gbnav-right .gbnav-cta-solid {
    display: none;
  }
}
@media (min-width: 769px) {
  .gbnav-burger {
    display: none;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 20px 6px 8px;
  border-radius: 99px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-pill .badge {
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin: 0 auto 24px;
  color: var(--text);
}

.h1-br {
  display: none;
}

.hero h1 span.g {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 span.g::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-soft);
  z-index: -1;
}

.hero .sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hbtns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 99px;
  transition: var(--transition);
}

.btn-acc {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-acc:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -8px rgba(79, 70, 229, 0.5);
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--text);
}

/* Floating Logos Animation container */
.flogos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.flogo {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  animation: flbob 6s ease-in-out infinite;
}

.flogo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
}

.flogo.sm { width: 44px; height: 44px; }
.flogo.sm img { width: 22px; height: 22px; }
.flogo.lg { width: 68px; height: 68px; }
.flogo.lg img { width: 36px; height: 36px; }

@keyframes flbob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating Logos Positions */
.flogo.f1  { top: 5%;   left: 3%;   animation-delay: 0s; }
.flogo.f2  { top: 2%;   left: 15%;  animation-delay: 0.8s; }
.flogo.f3  { top: 20%;  left: 1%;   animation-delay: 1.6s; }
.flogo.f4  { top: 44%;  left: 2%;   animation-delay: 2.4s; }
.flogo.f5  { top: 68%;  left: 4%;   animation-delay: 1.2s; }
.flogo.f6  { top: 12%;  right: 3%;  animation-delay: 0.4s; }
.flogo.f7  { top: 3%;   right: 16%; animation-delay: 1.2s; }
.flogo.f8  { top: 22%;  right: 1%;  animation-delay: 2s; }
.flogo.f9  { top: 48%;  right: 2%;  animation-delay: 0.6s; }
.flogo.f10 { top: 70%;  right: 4%;  animation-delay: 1.8s; }

@media (max-width: 1024px) {
  .flogo.f2, .flogo.f7 { display: none; }
}
@media (max-width: 768px) {
  .flogo { display: none; } /* Hide all floating elements on small screens for cleanliness */
}

/* ==========================================================================
   Hero Preview Grid Section
   ========================================================================== */

.preview {
  margin: 50px auto 0;
  max-width: 960px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pv-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: #F8FAFC;
}

.pv-bar .d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
}

.pv-bar .d:nth-child(1) { background: #FDA4AF; }
.pv-bar .d:nth-child(2) { background: #FDE047; }
.pv-bar .d:nth-child(3) { background: #86EFAC; }

.pv-bar .addr {
  margin-left: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-grow: 1;
  max-width: 320px;
  text-align: left;
}

.pv-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media(max-width: 768px) {
  .pv-body { grid-template-columns: repeat(3, 1fr); }
}

.pv-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pv-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pv-tile img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 2px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.pv-tile .nm {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.pv-tile .pr {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-hover);
  margin-top: 4px;
  font-weight: 600;
}

/* ==========================================================================
   Marquee Band
   ========================================================================== */

.strip {
  padding: 40px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  background: rgba(241, 245, 249, 0.4);
  overflow: hidden;
}

.strip .lbl {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.mq-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

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

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.95rem;
}

.mq-item img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #FFFFFF;
  padding: 1px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   Statistics
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0;
}

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

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.25);
}

.stat b {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
  line-height: 1;
}

.stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.sec {
  padding: 52px 0;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 10px;
  color: var(--text);
}

.sec-head h2 span.g {
  color: var(--accent-hover);
}

.sec-head p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

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

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

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

.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.feat .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

/* Custom styled icon backgrounds & colors based on icon type (Light Theme) */
.feat .ico-activation {
  background: rgba(6, 182, 212, 0.08);
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  color: #0891b2; /* Cyan */
}
.feat:hover .ico-activation {
  background: #06b6d4;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.feat .ico-security {
  background: rgba(59, 130, 246, 0.08);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  color: #2563eb; /* Blue */
}
.feat:hover .ico-security {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.feat .ico-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border: 1.5px solid rgba(37, 211, 102, 0.2);
  color: #16a34a; /* Green */
}
.feat:hover .ico-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.feat .ico-savings {
  background: rgba(6, 182, 212, 0.08);
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  color: #0891b2; /* Cyan */
}
.feat:hover .ico-savings {
  background: #06b6d4;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.feat h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feat p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Target Workflows / Audience
   ========================================================================== */

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

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

.who-c {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.who-c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}

.who-c .n {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.who-c h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--text);
}

.who-c p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Pricing Section (Kits)
   ========================================================================== */

.kits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 380px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .kits {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
    margin: 0;
    gap: 24px;
  }
  
  .kits .kit {
    grid-column: span 3;
  }
  
  .kits .kit:nth-child(5) {
    grid-column: 2 / span 4;
  }
}

@media(min-width: 1024px) {
  .kits .kit:nth-child(1),
  .kits .kit:nth-child(2),
  .kits .kit:nth-child(3) {
    grid-column: span 2;
  }
  
  .kits .kit:nth-child(4) {
    grid-column: 2 / span 2;
  }
  
  .kits .kit:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.kit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-md);
}

.kit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.kit.pop {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
}

.kit.pop::before {
  content: "Best Choice";
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kit .kt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hover);
  font-weight: 700;
}

.kit h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.kit .price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: baseline;
  margin-top: 4px;
}

.kit .price-tag .price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.kit .kd {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.klist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 20px;
  flex-grow: 1;
}

.klist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.klist li svg {
  color: #10B981;
  background: #ECFDF5;
  border-radius: 50%;
  padding: 3.5px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  box-sizing: border-box;
}

.klist li svg[style*="#EF4444"],
.klist li svg[style*="EF4444"] {
  color: #EF4444 !important;
  background: #FEF2F2 !important;
}

.klist li span.not-inc {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.kit .kbtn-sec {
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  margin-top: auto;
  margin-bottom: 2px;
  display: block;
}

.kit .kbtn-sec:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.kit .kbtn {
  margin-top: 8px;
  text-align: center;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.kit:hover .kbtn {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.kit.pop .kbtn {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.kit.pop .kbtn:hover {
  background: var(--accent-hover);
}

/* Envato Elements Download Capabilities Notice Card */
.envato-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(79, 70, 229, 0.04);
  border: 1px dashed rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.envato-notice-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  padding: 8px;
  border-radius: 50%;
  margin-top: 2px;
}

.envato-notice-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.envato-notice-text strong {
  color: var(--accent-deep);
}

@media (max-width: 600px) {
  .envato-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
    gap: 12px;
    margin: 0 auto;
  }
  .envato-notice-icon {
    margin-top: 0;
  }
  .envato-notice-text {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Tools Catalog Section
   ========================================================================== */

/* Search Filter styling */
.tools-search {
  max-width: 480px;
  margin: -20px auto 44px;
  position: relative;
}

.tools-search input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tools-search input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.tools-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.cat-sec {
  margin-bottom: 44px;
}

.cat-sec:last-child {
  margin-bottom: 0;
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.cat-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
}

.cat-head .cm {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.cat-head .bar {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
}

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

.tool {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tool:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.tool-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tool-ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tool-ico .fb {
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 1.15rem;
  font-family: var(--font-mono);
}

.tool h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.tool p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  flex-grow: 1;
}

.tool-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.tlink {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.tlink svg {
  transition: transform 0.2s;
}

.tool:hover .tlink {
  color: var(--accent-hover);
}

.tool:hover .tlink svg {
  transform: translate(3px, -3px);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  width: 100%;
  gap: 6px;
  cursor: pointer;
}

.btn-demo:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-demo svg {
  transition: transform 0.2s;
}

.btn-demo:hover svg {
  transform: translate(2px, -2px);
}

.price-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 24px;
  text-align: center;
}

/* ==========================================================================
   Steps Section
   ========================================================================== */

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

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

.stp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stp:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: var(--shadow-md);
}

.stp .sn {
  font-family: var(--font-mono);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.stp h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--text);
}

.stp p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   Happy Customers Gallery Section & Lightbox
   ========================================================================== */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.customer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.customer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.customer-img-wrapper {
  width: 100%;
  aspect-ratio: 1080 / 2400;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

.customer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Lightbox Modal CSS */
.g-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding: 40px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
}

.g-modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.25s ease-out;
}

@keyframes zoomIn {
  from {transform: scale(0.92); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.g-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #F8FAFC;
  font-size: 38px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10001;
}

.g-close:hover {
  color: var(--accent);
}

.g-prev, .g-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10002;
  user-select: none;
}

.g-prev {
  left: 24px;
}

.g-next {
  right: 24px;
}

.g-prev:hover, .g-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

@media (max-width: 600px) {
  .g-prev, .g-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .g-prev {
    left: 10px;
  }
  .g-next {
    right: 10px;
  }
}

@media(max-width: 992px) {
  .customer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media(max-width: 480px) {
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */

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

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq details[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary .pm {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.25s ease;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

details[open] summary .pm {
  transform: rotate(45deg);
}

.faq p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  border-top: 1px solid var(--border);
  padding: 60px 0;
  background: #F8FAFC;
}

.foot-in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.foot-brand {
  flex-grow: 1;
  max-width: 420px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.foot-logo .logo-accent {
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
}

.foot-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.foot-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-col h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 700;
}

.foot-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  transition: var(--transition);
}

.foot-col a:hover {
  color: var(--accent-hover);
  transform: translateX(2px);
}

.foot-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Mobile Responsiveness Overrides
   ========================================================================== */

@media (max-width: 600px) {
  /* WhatsApp Bar announcement text scaling */
  .wa-bar-content {
    padding: 8px 16px;
    font-size: 0.8rem;
    gap: 8px;
  }
  .wa-bar svg {
    width: 16px;
    height: 16px;
  }
  .wa-bar .wa-text-desktop {
    display: none;
  }
  .wa-bar .wa-text-mobile {
    display: inline;
  }
  .wa-bar .wa-cta {
    font-size: 0.72rem;
    padding: 2px 8px;
  }

  /* Catalog category headers vertical stack */
  .cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 8px;
  }
  .cat-head .cm {
    margin-left: 0;
    font-size: 0.68rem;
  }
  .cat-head .bar {
    display: none; /* Hide indicator bar on stacked mobile view to save vertical space */
  }
}

@media (max-width: 480px) {
  /* Side padding adjustment for smaller containers */
  .wrap {
    padding: 0 16px;
  }

  /* Sticky Navigation bar spacing */
  .gbnav-wrap {
    padding: 0 16px;
    height: 56px;
  }
  body {
    padding-top: 130px;
  }

  /* Hero Section spacing adjustments */
  .hero {
    padding: 48px 0 36px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .h1-br {
    display: block;
  }
  .hero-pill {
    padding: 4px 14px 4px 6px;
    font-size: 0.76rem;
    margin-bottom: 20px;
  }
  .hero-pill .badge {
    padding: 2px 8px;
    font-size: 0.68rem;
  }
  .hero .sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hbtns {
    gap: 12px;
    margin-bottom: 40px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
    width: 100%; /* Stack buttons on extremely narrow viewports */
    justify-content: center;
  }

  /* Hero Dashboard Preview Scaling */
  .preview {
    margin-top: 32px;
  }
  .pv-bar {
    padding: 8px 12px;
  }
  .pv-bar .addr {
    font-size: 0.68rem;
    padding: 2px 10px;
    margin-left: 10px;
  }
  .pv-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .pv-tile {
    padding: 12px 10px;
  }
  .pv-tile img {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }
  .pv-tile .nm {
    font-size: 0.8rem;
  }

  /* Statistics scaling */
  .stats {
    gap: 10px;
    padding: 32px 0;
  }
  .stat {
    padding: 16px 10px;
  }
  .stat b {
    font-size: 1.8rem;
  }
  .stat span {
    font-size: 0.75rem;
    margin-top: 4px;
  }

  /* Section headers typography */
  .sec {
    padding: 48px 0;
  }
  .sec-head {
    margin-bottom: 36px;
  }
  .sec-head h2 {
    font-size: 1.6rem;
  }
  .sec-head p {
    font-size: 0.92rem;
    margin-top: 10px;
  }

  /* Feature & workflow cards padding */
  .feat, .who-c, .stp {
    padding: 24px;
  }
  .feat .ico {
    margin-bottom: 16px;
  }

  /* Pricing Cards layout padding */
  .kit {
    padding: 22px 16px;
    gap: 8px;
    border-radius: var(--radius-md);
  }
  .kit.pop::before {
    left: 16px;
    font-size: 0.62rem;
    padding: 3px 10px;
    top: -10px;
  }
  .kit h3 {
    font-size: 1.15rem;
  }
  .kit .price-tag {
    font-size: 1.6rem;
  }
  .kit .kd {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .klist {
    margin: 4px 0 12px;
    gap: 8px;
  }
  .klist li {
    font-size: 0.78rem;
    gap: 8px;
  }
  .klist li svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    margin-top: 2px;
  }
  .kit .kbtn, .kit .kbtn-sec {
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 8px;
    margin-top: 4px;
  }

  /* Search bar input margin */
  .tools-search {
    margin-bottom: 32px;
  }
  .tools-search input {
    padding: 12px 16px 12px 38px;
    font-size: 0.88rem;
  }
  .tools-search svg {
    left: 14px;
  }

  /* Tools Catalog Grid mobile adjustment */
  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .tool {
    padding: 16px 12px;
    gap: 10px;
  }
  .tool-top h4 {
    font-size: 0.95rem;
  }
  .tool p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .btn-demo {
    padding: 6px 10px;
    font-size: 0.76rem;
    border-radius: 6px;
  }

  /* Compact Horizontal Layout for Stock Downloaders and Bonus Free Tools on Mobile */
  .cat-sec[data-category="Stock Downloaders"] .grid,
  .cat-sec[data-category="Bonus Free Tools"] .grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .cat-sec[data-category="Stock Downloaders"] .tool,
  .cat-sec[data-category="Bonus Free Tools"] .tool {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 12px;
  }
  .cat-sec[data-category="Stock Downloaders"] .tool-top,
  .cat-sec[data-category="Bonus Free Tools"] .tool-top {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .cat-sec[data-category="Stock Downloaders"] .tool-foot,
  .cat-sec[data-category="Bonus Free Tools"] .tool-foot {
    display: block;
    margin: 0;
  }
  .cat-sec[data-category="Stock Downloaders"] .price,
  .cat-sec[data-category="Bonus Free Tools"] .price {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 4px;
    font-weight: 700;
  }

  /* Call-to-action banner */
  .band {
    padding: 40px 16px;
  }
  .band h2 {
    font-size: 1.6rem;
  }
  .band p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  /* FAQ summary sizing & collapse padding */
  .faq details {
    padding: 14px 16px;
  }
  summary {
    font-size: 0.92rem;
  }
  .faq p {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  /* Footer structure vertical collapse */
  footer {
    padding: 40px 0;
  }
  .foot-in {
    gap: 28px;
  }
  .foot-links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .foot-col h5 {
    margin-bottom: 10px;
  }
  .foot-col a {
    margin-bottom: 8px;
    font-size: 0.85rem;
  }
  .foot-bottom {
    margin-top: 32px;
    padding-top: 16px;
    font-size: 0.75rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal-sec h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 14px;
  border-bottom: 1.5px dashed var(--border);
  padding-bottom: 8px;
}

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

@media(max-width: 480px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-head h2 {
    font-size: 1.15rem;
  }
}

.modal-tool-tile {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.modal-tool-tile:hover {
  border-color: rgba(79, 70, 229, 0.4);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.modal-tool-tile img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.modal-tool-tile span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Brand Logo Image Styling */
.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.gbnav-drawer-head .brand-logo-img {
  height: 32px;
}

.foot-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Reduce spacing above Why Choose Us section */
#why-choose {
  padding-top: 30px;
}
@media (max-width: 768px) {
  #why-choose {
    padding-top: 20px;
  }
}

/* ==========================================================================
   Pricing Duration Select Dropdown
   ========================================================================== */
.plan-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -10px;
  margin-bottom: 40px;
  position: relative;
  z-index: 110; /* Ensure dropdown displays above pricing cards */
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 340px; /* Increased width to prevent text wrap */
  font-family: var(--font-sans);
  z-index: 100;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.custom-select-trigger:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--accent);
  border-radius: 20px 20px 0 0;
  border-bottom-color: transparent;
  box-shadow: none;
}

.custom-select-trigger svg.arrow {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.custom-select-wrapper.open svg.arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.custom-option:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.custom-option.selected {
  background: var(--accent);
  color: #FFFFFF;
}

/* Micro-animation for price change */
.price-amount {
  display: inline-block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.price-amount.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}

/* Discount badge inside pricing card */
.price-discount-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  margin-left: 12px;
  align-self: center;
  font-family: var(--font-mono);
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  animation: badgePop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes badgePop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
