/* 
  StriveMob Premium Landing Page Stylesheet
  Colors: Blue & Black for headings, White background, Electric Blue accents.
  Designed for modern browsers and easy integration in WordPress.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --color-primary: #0f4c81;       /* Deep Classic Blue */
  --color-secondary: #000000;     /* Pure Black */
  --color-accent: #2563eb;        /* Vibrant Royal/Electric Blue */
  --color-accent-light: rgba(37, 99, 235, 0.1);
  --color-accent-rgb: 37, 99, 235;
  
  --color-heading: #090d16;       /* Very dark slate/black */
  --color-body: #475569;          /* Readable Slate 600 */
  --color-body-light: #64748b;    /* Slate 500 */
  
  --color-bg: #ffffff;            /* Primary background (white) */
  --color-bg-alt: #f8fafc;        /* Secondary background (very light slate/gray) */
  --color-bg-card: #ffffff;       /* Card background */
  --color-border: #e2e8f0;        /* Light slate border */
  --color-border-hover: #cbd5e1;  /* Slate 300 */
  
  /* Status Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Constants */
  --container-max-width: 1240px;
  --header-height: 85px;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(9, 13, 22, 0.06);
  --shadow-lg: 0 16px 40px rgba(9, 13, 22, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------
   Reset & Base Styles
   ---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ----------------------------------------------------
   Utility Classes & Layout
   ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--color-bg-alt);
}

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

.section-header h2 {
  color: var(--color-heading);
}

.section-header p {
  color: var(--color-body-light);
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* Heading Gradients (Blue and Black) */
.heading-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--color-secondary);
  color: var(--color-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ----------------------------------------------------
   Header & Navigation
   ---------------------------------------------------- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.header-wrapper.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--color-accent);
}

/* Menu Style */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-heading);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--color-accent);
}

/* Submenu Indicator */
.submenu-indicator {
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.submenu-indicator-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 2px;
}

/* Dropdown Menu (Desktop) */
.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1010;
}

.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu > li:hover .submenu-indicator {
  transform: rotate(180deg);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--color-body);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav-dropdown li a:hover {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  padding-left: 20px;
}

/* Action Section in Navbar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-action-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-heading);
  cursor: pointer;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-action-btn:hover {
  color: var(--color-accent);
}

.display-desktop-btn {
  display: inline-flex;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-heading);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------------------
   Mobile Off-Canvas Navigation Drawer
   ---------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  padding: 100px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 13, 22, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-list > li > a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-list > li > a:hover {
  color: var(--color-accent);
}

/* Mobile Dropdown submenu */
.mobile-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 2px solid var(--color-border);
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu a {
  font-size: 0.95rem;
  color: var(--color-body);
  font-weight: 500;
}

.mobile-submenu a:hover {
  color: var(--color-accent);
}

.mobile-drawer-cta {
  margin-top: auto;
}

.mobile-drawer-cta .btn {
  width: 100%;
}

/* ----------------------------------------------------
   Search Overlay Modal
   ---------------------------------------------------- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-heading);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.search-close:hover {
  transform: rotate(90deg);
  color: var(--color-accent);
}

.search-form-container {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
}

.search-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.search-input-wrap {
  position: relative;
  border-bottom: 3px solid var(--color-secondary);
}

.search-input {
  width: 100%;
  border: none;
  background: none;
  font-size: 2rem;
  padding: 15px 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 600;
}

.search-submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-heading);
  cursor: pointer;
}

.search-submit-btn:hover {
  color: var(--color-accent);
}

/* ----------------------------------------------------
   Hero Banner Slider
   ---------------------------------------------------- */
.hero-slider-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  background-color: var(--color-bg);
  overflow: hidden;
  margin-top: var(--header-height);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  z-index: 1;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.circle-dec {
  position: absolute;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, rgba(255,255,255,0) 70%);
}

.circle-dec-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.circle-dec-2 {
  width: 800px;
  height: 800px;
  bottom: -300px;
  left: -200px;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Slide Content Animation */
.slide-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow) 0.2s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  margin-bottom: 1.5rem;
}

.slide-content p {
  font-size: 1.2rem;
  color: var(--color-body);
  margin-bottom: 2rem;
}

.slide-actions {
  display: flex;
  gap: 1rem;
}

/* Slide Graphic Animation */
.slide-graphic {
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition-slow) 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active .slide-graphic {
  opacity: 1;
  transform: scale(1);
}

/* CSS Vector Illustration Styling */
.vector-card-canvas {
  width: 100%;
  max-width: 440px;
  height: 380px;
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.canvas-element {
  position: absolute;
  transition: all var(--transition-normal);
}

/* Custom CSS illustration constructs per slide */
/* Slide 1 - App Optimization */
.aso-phone {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 280px;
  background-color: var(--color-secondary);
  border: 8px solid var(--color-secondary);
  border-bottom-width: 16px;
  border-top-width: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.aso-phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  border-radius: 12px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.aso-bar {
  height: 25px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.aso-bar::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

.aso-bar-fill {
  margin-left: 8px;
  height: 6px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  flex-grow: 1;
}

.aso-floating-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.aso-card-1 {
  top: 60px;
  left: 20px;
  width: 140px;
}

.aso-card-2 {
  top: 150px;
  right: 20px;
  width: 150px;
}

.aso-indicator {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.aso-details {
  flex-grow: 1;
}

.aso-line {
  height: 6px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.aso-line:last-child {
  width: 60%;
  margin-bottom: 0;
}

/* Slide 2 - PPC Ads illustration */
.ppc-graph-bg {
  width: 100%;
  height: 160px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
  margin-top: 60px;
}

.ppc-grid-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-alt);
}

.ppc-grid-line-1 { bottom: 40px; }
.ppc-grid-line-2 { bottom: 80px; }
.ppc-grid-line-3 { bottom: 120px; }

.ppc-graph-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ppc-floating-badge {
  background-color: var(--color-secondary);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.ppc-floating-badge span {
  color: var(--color-accent);
}

/* Slide 3 - Affiliate Marketing network */
.aff-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  box-shadow: 0 0 20px rgba(37,99,235,0.4);
  font-size: 1.5rem;
  z-index: 10;
}

.aff-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-secondary);
  transition: all var(--transition-normal);
  z-index: 5;
}

.aff-node:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.1);
}

.aff-node-1 { top: 40px; left: 80px; }
.aff-node-2 { top: 50px; right: 80px; }
.aff-node-3 { bottom: 50px; left: 70px; }
.aff-node-4 { bottom: 60px; right: 90px; }

.aff-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 20;
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background-color: var(--color-secondary);
  color: var(--color-bg);
  border-color: var(--color-secondary);
}

.slider-arrow-prev {
  left: 30px;
}

.slider-arrow-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dot.active {
  width: 30px;
  background-color: var(--color-accent);
}

/* ----------------------------------------------------
   Free Analysis Section / Lead Scan Tool
   ---------------------------------------------------- */
.scan-tool-wrap {
  max-width: 900px;
  margin: -60px auto 0 auto;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 50;
  text-align: center;
}

.scan-title {
  margin-bottom: 1.5rem;
}

.scan-title h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.scan-title p {
  color: var(--color-body-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.scan-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.scan-input-group {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.scan-input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-body-light);
  font-size: 1.1rem;
}

.scan-form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  color: var(--color-heading);
}

.scan-form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light);
}

.scan-form .btn {
  padding: 16px 36px;
}

/* Scan Animation Simulator */
.scan-loader {
  display: none;
  margin-top: 25px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scan-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-accent-light);
  border-top-color: var(--color-accent);
  border-radius: var(--radius-full);
  animation: spin 1s infinite linear;
}

.scan-success-msg {
  display: none;
  margin-top: 20px;
  color: var(--color-success);
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ----------------------------------------------------
   Services Section (3 columns grid)
   ---------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 45px 35px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  background-color: var(--color-secondary);
  color: var(--color-bg);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--color-body);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-bullets {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-bullets li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-bullets li i {
  color: var(--color-success);
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--color-accent);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   About Us Section (Split statistics grid)
   ---------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-bullets h4 {
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.about-bullets p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--color-body-light);
}

/* About graphic / dashboard */
.about-dashboard-graphic {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.about-graphic-element {
  position: absolute;
}

.stats-circle-wrap {
  top: 40px;
  left: 40px;
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.stats-number span {
  font-size: 1.1rem;
  color: var(--color-accent);
}

.about-details-card {
  top: 40px;
  right: 40px;
  width: 200px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--color-border);
}

.details-line {
  height: 8px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.details-line:nth-child(1) { width: 40%; background-color: var(--color-accent); }
.details-line:nth-child(2) { width: 85%; }
.details-line:nth-child(3) { width: 70%; }
.details-line:nth-child(4) { width: 50%; margin-bottom: 0; }

.stats-bars-wrap {
  bottom: 40px;
  left: 40px;
  right: 40px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.stats-bar-item {
  margin-bottom: 12px;
}

.stats-bar-item:last-child {
  margin-bottom: 0;
}

.stats-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.stats-bar-progress {
  height: 6px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  width: 0; /* Animated dynamically with JS */
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bar-fill-2 {
  background-color: var(--color-secondary);
}

/* ----------------------------------------------------
   Stats counter bar
   ---------------------------------------------------- */
.stats-bar-section {
  background-color: var(--color-secondary);
  color: var(--color-bg);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-family: var(--font-heading);
  color: var(--color-bg);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item h3 span {
  color: var(--color-accent);
}

.stat-item p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ----------------------------------------------------
   FAQ Accordion Section
   ---------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.faq-card:hover, .faq-card.active {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-heading);
  transition: color var(--transition-fast);
  padding-right: 20px;
}

.faq-card.active .faq-header h3 {
  color: var(--color-accent);
}

.faq-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-heading);
  border-radius: var(--radius-full);
}

/* horizontal line */
.faq-toggle-icon::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

/* vertical line */
.faq-toggle-icon::after {
  top: 0;
  left: 8px;
  width: 2px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.faq-card.active .faq-toggle-icon {
  transform: rotate(90deg);
}

.faq-card.active .faq-toggle-icon::after {
  transform: scaleY(0);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-in-out;
}

.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--color-body);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-card.active .faq-content {
  border-top-color: var(--color-bg-alt);
}

/* ----------------------------------------------------
   Contact Us Section (form and data grid)
   ---------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-body);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  color: var(--color-heading);
  background-color: var(--color-bg);
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card .btn {
  margin-top: 1.5rem;
}

/* Success notification message inside form card */
.form-response-msg {
  display: none;
  padding: 15px;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-response-msg.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-response-msg.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ----------------------------------------------------
   Footer Section
   ---------------------------------------------------- */
.footer-wrap {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--color-body);
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-body);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.footer-newsletter-form .form-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}

.footer-newsletter-form .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 20px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: var(--color-body-light);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ----------------------------------------------------
   Scroll Animations (Intersection Observer Hook)
   ---------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.element-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.zoom-in {
  transform: scale(0.92);
}

.zoom-in.element-visible {
  transform: scale(1);
}

/* ----------------------------------------------------
   Responsive Adjustments (Media Queries)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .slide-graphic {
    display: none; /* Hide illustrations on tablet/mobile slider for better layout spacing */
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .nav-menu {
    display: none; /* Hide standard menu on mobile */
  }
  
  .display-desktop-btn {
    display: none; /* Hide main cta on mobile header, since drawer will have it */
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .scan-tool-wrap {
    margin-top: -30px;
    padding: 25px 20px;
  }
  
  .scan-form {
    flex-direction: column;
  }
  
  .scan-form .btn {
    width: 100%;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
