/* ==========================================================================
   TETMIDE MARKETING - DESIGN SYSTEM
   Premium, Modern, High-Converting Performance Agency Style (Vanilla CSS)
   ========================================================================== */

/* 1. Imports & Core Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* 2. Global CSS Custom Variables */
:root {
  /* Color Palette */
  --bg-dark: #0A0A0B;
  --bg-surface: #111113;
  --bg-surface-elevated: #161619;
  
  --primary: #C8FF41;                  /* Accent Green */
  --primary-glow: rgba(200, 255, 65, 0.08);
  --primary-solid-glow: rgba(200, 255, 65, 0.2);
  --secondary: #3DD9C3;                /* Teal Accent */
  --secondary-glow: rgba(61, 217, 195, 0.08);
  
  --accent: #E8E6E0;                   /* Off-White */
  --accent-glow: rgba(232, 230, 224, 0.05);
  
  /* Text System */
  --text-primary: #E8E6E0;             /* Off-White */
  --text-secondary: hsl(45, 6%, 80%);
  --text-muted: hsl(45, 4%, 60%);
  --text-dim: hsl(45, 3%, 40%);
  
  /* Border & Gradients */
  --border-color: rgba(232, 230, 224, 0.08);
  --border-light: rgba(232, 230, 224, 0.05);
  --border-glow: rgba(200, 255, 65, 0.25);
  
  --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(180deg, #0A0A0B 0%, #050506 100%);
  --gradient-card: linear-gradient(145deg, rgba(18, 18, 20, 0.7) 0%, rgba(10, 10, 11, 0.95) 100%);
  --gradient-text: linear-gradient(135deg, #E8E6E0 30%, #C8C6C0 70%, var(--primary) 100%);
  --gradient-accent-text: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Effects & Layout */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 20px 50px -15px rgba(0, 0, 0, 0.95);
  --shadow-glow: 0 0 35px 0 var(--primary-glow);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --max-width: 1240px;
}

/* 3. Base Document Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-dark);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* Premium Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Scrollbar Engineering */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #222225;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* Title Case Classes */
.title-case {
  text-transform: capitalize;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media (max-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Gradient text elements */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px -2px rgba(200, 255, 65, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px 0 rgba(200, 255, 65, 0.4);
  background: #d6ff70;
}

.btn-secondary {
  background: rgba(18, 18, 20, 0.6);
  color: var(--text-primary);
  border-color: var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(22, 22, 25, 0.8);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px -2px var(--primary-glow);
}

.btn-sm {
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
}

/* Glassmorphism Surface Base */
.glass-panel {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
  position: relative;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent-text);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.glass-panel:hover {
  border-color: rgba(200, 255, 65, 0.15);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  transform: translateY(-4px);
}

.glass-panel:hover::before {
  opacity: 0.7;
}

/* Eyebrows & Common Headers */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem auto;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.15rem;
  background: rgba(200, 255, 65, 0.05);
  border: 1px solid rgba(200, 255, 65, 0.15);
  border-radius: var(--radius-full);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
}

/* ==========================================
       1. STICKY HEADER NAVIGATION
       ========================================== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.75rem 0;
}

header.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

header.site-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-accent-dot {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 0;
  margin-top: -0.2rem;
}

.logo-text span {
  font-weight: 700;
  color: var(--primary);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 6.5rem 2.5rem 3rem 2.5rem;
    gap: 1.75rem;
    transition: right var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .header-actions .btn-sm:not(#nav-primary-cta) {
    display: none;
  }
}

/* ==========================================
       2. HERO SECTION WITH DECORATIVES
       ========================================== */
.hero-section {
  position: relative;
  padding: 11rem 0 8.5rem 0;
  overflow: hidden;
}

/* Grid overlay background with linear animated motion */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(232, 230, 224, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 230, 224, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, black 20%, transparent 80%);
  mask-image: radial-gradient(circle at 50% 45%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
  animation: grid-movement 35s linear infinite;
}

@keyframes grid-movement {
  0% { background-position: 0 0; }
  100% { background-position: 60px 120px; }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media (max-width: 900px) {
  .hero-section {
    padding: 8.5rem 0 5.5rem 0;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.15rem;
  background: rgba(200, 255, 65, 0.05);
  border: 1px solid rgba(200, 255, 65, 0.15);
  border-radius: var(--radius-full);
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.775rem;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: var(--radius-full);
  animation: pulse-dot 1.2s infinite alternate;
}

@keyframes pulse-dot {
  0% { transform: scale(0.85); opacity: 0.6; box-shadow: 0 0 0 0 rgba(200, 255, 65, 0.4); }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 8px 3px rgba(200, 255, 65, 0.7); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.125;
  margin-bottom: 1.75rem;
}

.hero-accent-text {
  font-style: italic;
  color: var(--primary);
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-ctas {
    justify-content: center;
  }
}

.social-proof-banner {
  margin-top: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.social-proof-bold {
  font-weight: 800;
}

/* Green radial glow element directly behind the Hero content */
.hero-bg-glow {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(200, 255, 65, 0.08) 0%, rgba(61, 217, 195, 0.03) 50%, transparent 100%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

/* PREMIUM INTERACTIVE Growth Dashboard Mockup */
.dashboard-mockup {
  position: relative;
  width: 100%;
}

.mockup-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Live Floating Cards */
.floating-stat-card {
  position: absolute;
  padding: 0.85rem 1.15rem;
  background: rgba(18, 18, 20, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-effect 5s ease-in-out infinite alternate;
}

.floating-stat-card.card-left {
  top: 15%;
  left: -8%;
  animation-delay: 0.3s;
}

.floating-stat-card.card-right {
  bottom: 15%;
  right: -8%;
  animation-delay: 1.8s;
}

@media (max-width: 1100px) {
  .floating-stat-card.card-left { left: -2%; }
  .floating-stat-card.card-right { right: -2%; }
}

@media (max-width: 600px) {
  .floating-stat-card { display: none; }
}

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

.floating-stat-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  background: rgba(200, 255, 65, 0.08);
  border: 1px solid rgba(200, 255, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.05rem;
}

.floating-stat-card.card-right .floating-stat-icon {
  background: rgba(61, 217, 195, 0.08);
  border-color: rgba(61, 217, 195, 0.2);
  color: var(--secondary);
}

.floating-stat-info {
  display: flex;
  flex-direction: column;
}

.floating-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.floating-stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
}

.floating-stat-badge {
  font-size: 0.625rem;
  padding: 0.1rem 0.35rem;
  background: rgba(16, 185, 129, 0.1);
  color: rgb(16, 185, 129);
  border-radius: 4px;
  font-weight: 700;
  margin-top: 0.1rem;
  align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
}

/* Master Mockup Panel styling */
.dashboard-panel {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(17, 17, 19, 0.8) 0%, rgba(10, 10, 11, 0.97) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 45px -10px var(--primary-glow);
}

/* Accent glowing top line */
.dashboard-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent-text);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.dashboard-window-controls {
  display: flex;
  gap: 6px;
}

.dashboard-window-controls span {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
}

.dashboard-window-controls span:nth-child(1) { background: #ef4444; }
.dashboard-window-controls span:nth-child(2) { background: #f59e0b; }
.dashboard-window-controls span:nth-child(3) { background: #10b981; }

.dashboard-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 800;
}

.dashboard-badge-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(200, 255, 65, 0.06);
  border: 1px solid rgba(200, 255, 65, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.675rem;
  color: var(--primary);
  font-weight: 800;
  font-family: 'Open Sans', sans-serif;
}

.dashboard-pulse-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: var(--radius-full);
  animation: pulse-dot 0.8s infinite alternate;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.dashboard-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.dashboard-stat-cell {
  background: rgba(18, 18, 20, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  text-align: left;
}

.dashboard-stat-cell-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-stat-cell-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
}

.dashboard-stat-cell-change {
  font-size: 0.6rem;
  color: #10b981;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Staggered Vertical Bar Chart animation styles */
.dashboard-chart-box {
  background: rgba(18, 18, 20, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.dashboard-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 90px;
  padding-top: 10px;
  gap: 6px;
  border-bottom: 1px solid var(--border-light);
}

.dashboard-bar-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 3px 3px 0 0;
  height: 0;
  animation: grow-bar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 0 10px rgba(200, 255, 65, 0.15);
}

/* Staggered animations using delays */
.dashboard-bar-chart .bar:nth-child(1) { animation-delay: 0.05s; }
.dashboard-bar-chart .bar:nth-child(2) { animation-delay: 0.15s; }
.dashboard-bar-chart .bar:nth-child(3) { animation-delay: 0.25s; }
.dashboard-bar-chart .bar:nth-child(4) { animation-delay: 0.35s; }
.dashboard-bar-chart .bar:nth-child(5) { animation-delay: 0.45s; }
.dashboard-bar-chart .bar:nth-child(6) { animation-delay: 0.55s; }
.dashboard-bar-chart .bar:nth-child(7) { animation-delay: 0.65s; }

@keyframes grow-bar {
  to { height: var(--height); }
}

/* ==========================================
       3. TICKER BAR STYLING
       ========================================== */
.ticker-section {
  position: relative;
  z-index: 10;
  background: #0A0A0B;
}

.ticker-container {
  background: #111113;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.35rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.ticker-wrap {
  display: inline-flex;
  animation: ticker-slide 28s linear infinite;
  align-items: center;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 3.25rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ==========================================
       3.5 TRUST LOGOS ROW
       ========================================== */
.trust-banner {
  padding: 3rem 0;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 19, 0.4) 10%, rgba(17, 17, 19, 0.4) 90%, transparent);
  border-bottom: 1px solid var(--border-light);
}

.trust-title {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-weight: 800;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dim);
  opacity: 0.55;
  transition: all var(--transition-fast);
}

.trust-logo-item:hover {
  color: var(--text-primary);
  opacity: 1;
}

.trust-logo-icon {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .trust-logos {
    justify-content: center;
  }
}

/* ==========================================
       4. SERVICES SECTION
       ========================================== */
.services-section {
  padding: 7.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
}

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

.service-card {
  padding: 2.5rem 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, var(--primary-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

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

.service-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(18, 18, 20, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.35rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  border-color: transparent;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px -2px var(--primary-solid-glow);
}

.service-card:nth-child(even):hover .service-icon-box {
  background: var(--secondary);
  box-shadow: 0 5px 15px -2px var(--secondary-glow);
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.service-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.625;
}

.service-features-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature-item {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.825rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-feature-bullet {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

.service-card:nth-child(even) .service-feature-bullet {
  background: var(--secondary);
}

/* ==========================================
       5. WHY CHOOSE US (ADVANTAGE) SECTION
       ========================================== -->
.why-section {
  padding: 7.5rem 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
}

.comparison-box {
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(18, 18, 20, 0.8) 0%, rgba(10, 10, 11, 0.97) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.comparison-bar-item {
  margin-bottom: 1.75rem;
}

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

.comparison-bar-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
}

.comparison-bar-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(18, 18, 20, 0.8);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.comparison-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Trigger width scaling on reveal */
.comparison-bar-fill.active {
  width: var(--target-width);
}

.comparison-bar-fill.accent-1 {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(200, 255, 65, 0.3);
}

.comparison-bar-fill.accent-2 {
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(61, 217, 195, 0.3);
}

.why-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-advantage-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(200, 255, 65, 0.05);
  border: 1px solid rgba(200, 255, 65, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-advantage-item:nth-child(even) .why-advantage-icon {
  background: rgba(61, 217, 195, 0.05);
  border-color: rgba(61, 217, 195, 0.15);
  color: var(--secondary);
}

.why-advantage-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.why-advantage-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
       6. RESULTS STATISTICS SECTION
       ========================================== */
.results-section {
  padding: 7.5rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 19, 0.4) 50%, transparent);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

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

.result-card {
  padding: 2.75rem 2rem;
  text-align: center;
}

.result-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.result-number-wrap {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.85rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.result-number-unit {
  font-size: 0.65em;
  color: var(--primary);
  vertical-align: super;
  margin-left: 2px;
}

.result-card:nth-child(even) .result-number-unit {
  color: var(--secondary);
}

.result-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.result-desc {
  font-size: 0.725rem;
  color: var(--text-dim);
  font-style: italic;
}

.results-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 3.5rem;
  font-style: italic;
}

/* ==========================================
       6.5 CASE STUDY SHOWCASE STYLING (META ADS)
       ========================================== */
.case-study-section {
  padding: 7.5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.4) 100%);
}

.ads-manager-panel {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(17, 17, 19, 0.9) 0%, rgba(10, 10, 11, 0.98) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 50px -15px var(--primary-glow);
  overflow: hidden;
  position: relative;
}

.ads-manager-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent-text);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 900px) {
  .ads-manager-panel {
    padding: 1.25rem;
  }
}

.ads-table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.75rem;
  -webkit-overflow-scrolling: touch;
}

.ads-table-container::-webkit-scrollbar {
  height: 6px;
}
.ads-table-container::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
.ads-table-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.ads-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 950px;
}

.ads-table th {
  padding: 1.15rem 1.35rem;
  border-bottom: 2px solid var(--border-color);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.ads-table td {
  padding: 1.35rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.ads-row {
  transition: background-color var(--transition-fast);
}

.ads-row:hover {
  background-color: rgba(22, 22, 25, 0.4);
}

.ads-row.totals-row {
  background-color: rgba(18, 18, 20, 0.8);
}

.ads-row.totals-row td {
  border-top: 2px solid var(--border-color);
  border-bottom: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
}

/* Campaign switch toggle layout */
.campaign-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.campaign-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.campaign-switch {
  width: 20px;
  height: 10px;
  background: var(--primary);
  border-radius: var(--radius-full);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.campaign-switch::after {
  content: '';
  position: absolute;
  top: 1.5px;
  right: 1.5px;
  width: 7px;
  height: 7px;
  background: var(--bg-dark);
  border-radius: var(--radius-full);
}

.campaign-switch.off {
  background: rgba(232, 230, 224, 0.15);
}
.campaign-switch.off::after {
  left: 1.5px;
  right: auto;
}

.campaign-meta {
  font-size: 0.725rem;
  color: var(--text-dim);
}

/* CPA metric layouts */
.cpa-value {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cpa-trend {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 700;
}

.cpa-trend.neutral {
  color: var(--text-dim);
}

.budget-value {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.spent-value {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
}

.strategy-cell {
  max-width: 280px;
}

.strategy-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.strategy-badge.scale {
  background: rgba(200, 255, 65, 0.06);
  border: 1px solid rgba(200, 255, 65, 0.15);
  color: var(--primary);
}

.strategy-badge.test {
  background: rgba(61, 217, 195, 0.06);
  border: 1px solid rgba(61, 217, 195, 0.15);
  color: var(--secondary);
}

.strategy-badge.remarket {
  background: rgba(232, 230, 224, 0.05);
  border: 1px solid rgba(232, 230, 224, 0.1);
  color: var(--text-muted);
}

.strategy-badge.warm {
  background: rgba(200, 255, 65, 0.05);
  border: 1px solid rgba(200, 255, 65, 0.15);
  color: var(--primary);
}

.campaign-brief {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
       7. PROCESS TIMELINE SECTION
       ========================================== */
.process-section {
  padding: 7.5rem 0;
}

.timeline-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  position: relative;
  margin-top: 2rem;
}

.timeline-layout::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gradient-accent-text);
  opacity: 0.15;
  z-index: 1;
}

@media (max-width: 900px) and (min-width: 601px) {
  .timeline-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .timeline-layout::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .timeline-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .timeline-layout::before {
    display: none;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 5;
}

@media (max-width: 600px) {
  .timeline-step {
    display: flex;
    text-align: left;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .timeline-step-badge:first-child {
    min-width: 3.5rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0.9rem;
    margin: 0;
  }
}

.timeline-step-badge {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.timeline-step-badge::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.125;
  transition: opacity var(--transition-normal);
}

@media (max-width: 900px) {
  .timeline-step-badge {
    margin: 0;
    flex-shrink: 0;
  }
}

.timeline-step:hover .timeline-step-badge {
  transform: scale(1.05);
  border-color: transparent;
  box-shadow: 0 0 20px 0 var(--primary-glow);
  color: var(--primary);
}

.timeline-step:hover .timeline-step-badge::after {
  opacity: 1;
}

.timeline-step-title {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.timeline-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
       8. TESTIMONIALS CAROUSEL SECTION
       ========================================== */
.testimonials-section {
  padding: 7.5rem 0;
}

.carousel-outer {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  min-height: 310px;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 1rem;
}

.testimonial-card {
  padding: 3rem;
  position: relative;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 1.75rem;
  }
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 5rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--border-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-content {
  font-size: clamp(1.025rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

.testimonial-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-full);
  background: var(--gradient-main);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
}

.testimonial-slide:nth-child(even) .testimonial-avatar-inner {
  color: var(--secondary);
}

.testimonial-info-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}

.testimonial-info-title {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Testimonial Navs */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--primary);
  color: var(--text-primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--primary);
  width: 18px;
}

.testimonial-illustrative-tag {
  text-align: center;
  font-size: 0.725rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* ==========================================
       9. FAQ ACCORDION STYLING
       ========================================== */
.faq-section {
  padding: 7.5rem 0;
}

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

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  background: rgba(18, 18, 20, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(200, 255, 65, 0.15);
  background: var(--gradient-card);
}

.faq-header {
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.05rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: var(--text-primary);
  padding-right: 1.5rem;
  line-height: 1.4;
}

.faq-icon-box {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  font-size: 0.85rem;
}

/* + to x rotation key */
.faq-item.active .faq-icon-box {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1) ease-out;
}

.faq-body {
  padding: 0 2rem 1.6rem 2rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
  border-color: var(--border-light);
}

/* ==========================================
       10. CONTACT FORM STYLING
       ========================================== */
.contact-section {
  padding: 7.5rem 0;
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-layout {
    gap: 2.5rem;
    max-width: 100%;
  }
}

.contact-info-panel {
  width: 100%;
  text-align: center;
}

.contact-info-panel .section-title {
  text-align: center;
}

.contact-info-panel .section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-bullet-list {
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .contact-bullet-list {
    flex-direction: column;
    align-items: flex-start;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-bullet-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.contact-bullet-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: var(--radius-sm);
  background: rgba(200, 255, 65, 0.04);
  border: 1px solid rgba(200, 255, 65, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-bullet-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Form Panel Card */
.contact-form-card {
  padding: 3rem;
  width: 100%;
}

@media (max-width: 600px) {
  .contact-form-card {
    padding: 1.75rem;
  }
}

.form-header-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-header-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.775rem;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(10, 10, 11, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px -3px rgba(200, 255, 65, 0.2);
  background: #111113;
}

/* Styles for dropdown selects */
select.form-input option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.825rem;
  color: var(--text-secondary);
  user-select: none;
  line-height: 1.5;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(232, 230, 224, 0.45);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  background: rgba(10, 10, 11, 0.9);
  margin-top: 2px;
}

.checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--bg-dark);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 8px 0 rgba(200, 255, 65, 0.3);
}

input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

.form-error {
  position: absolute;
  bottom: -1.35rem;
  left: 0;
  font-size: 0.725rem;
  color: #ef4444;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.form-error.active {
  opacity: 1;
}

/* ==========================================
       11. SCHEDULING SUCCESS MODAL OVERLAY
       ========================================== */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.booking-success-modal {
  max-width: 480px;
  width: 90%;
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

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

.success-check-badge {
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(200, 255, 65, 0.05);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.25rem auto;
  color: var(--primary);
  font-size: 2.15rem;
  box-shadow: 0 0 30px -5px rgba(200, 255, 65, 0.3);
}

.success-title {
  font-size: 1.65rem;
  margin-bottom: 1.15rem;
}

.success-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ==========================================
       12. MODERN FOOTER STYLING
       ========================================== */
.site-footer {
  padding: 6rem 0 3.5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.9) 100%);
  border-top: 1px solid var(--border-light);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4.5rem;
  margin-bottom: 4.5rem;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

.footer-col-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.15rem;
  line-height: 1.65;
}

.footer-col-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
}

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

.footer-link-item {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-link-item a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Footer disclaimer box */
.footer-disclaimer-box {
  background: rgba(18, 18, 20, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 4.5rem;
  text-align: left;
}

.footer-disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 0.825rem;
  color: var(--text-dim);
}

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

/* ==========================================
       13. INTERSECTION REVEAL UTILITIES (.fade-up)
       ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   14. MOBILE LAYOUT & OVERFLOW BUG FIXES
   ========================================================================== */

/* Strict Global Scroll & Viewport Constraints */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 1. Header Responsive Optimization */
.mobile-only-cta {
  display: none;
  width: 100%;
}

@media (max-width: 900px) {
  .mobile-only-cta {
    display: block;
  }
}

@media (max-width: 600px) {
  /* Hide header booking CTA button when space is critical, placing it inside hamburger menu instead */
  .header-actions #nav-primary-cta {
    display: none;
  }
  /* Scale down header logo slightly to fit smaller screens */
  .logo {
    font-size: 1.15rem;
  }
  header.site-header {
    padding: 1.25rem 0;
  }
  header.site-header.scrolled {
    padding: 0.85rem 0;
  }
}

/* 2. Hero Dashboard Mockup Responsive Optimization */
@media (max-width: 600px) {
  /* Use 2-col grid on mobile so stats don't stack into a huge tall column */
  .dashboard-stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
  
  .dashboard-stat-cell {
    padding: 0.6rem 0.7rem;
  }
  
  .dashboard-stat-cell-value {
    font-size: 0.875rem;
  }

  .dashboard-stat-cell-label {
    font-size: 0.6rem;
  }
  
  .dashboard-panel {
    padding: 0.85rem;
  }

  .dashboard-bar-chart {
    height: 70px;
  }
  
  /* Flex column wrap for the sub-chart label text to avoid overlapping */
  .dashboard-chart-box div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 0.25rem !important;
    align-items: flex-start !important;
  }
}

/* 3. Case Study Ads Manager Table Responsive Optimization */
@media (max-width: 768px) {
  /* Ensure the table wrapper strictly respects parent width boundaries */
  .ads-table-container {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
  }
}

/* ==========================================================================
   TETMIDE MARKETING - BRANDING & VISUAL LAYOUT OVERRIDES
   ========================================================================== */

/* Logo Image Header styling */
.logo-img {
  height: 93px;
  width: auto;
  display: block;
  transition: transform var(--transition-normal);
}
.logo:hover .logo-img {
  transform: scale(1.05);
}

/* Hero Section Logo Placement */
.hero-logo-box {
  margin-bottom: 1.5rem;
  display: inline-block;
}
.hero-logo-large {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 15px rgba(200, 255, 65, 0.2));
  transition: transform var(--transition-normal);
}
.hero-logo-box:hover .hero-logo-large {
  transform: scale(1.04);
}

/* Client Logo Marquee */
.trust-logos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  animation: marquee-scroll 30s linear infinite;
  padding: 0.5rem 0;
}

.marquee-track .trust-logo-item {
  flex-shrink: 0;
}

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

/* Services Checkerboard Layout */
.services-checkerboard {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 65, 0.15);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.service-row:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr;
}

.service-image-col {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
}

.service-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-row:hover .service-mockup-img {
  transform: scale(1.02);
}

.service-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.service-row-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-row-cta {
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .service-row, .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .service-row .service-image-col {
    order: -1 !important; /* Always put image on top for mobile stacking */
  }
}

/* Case Studies Grid Layout */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.case-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
}

.case-badge {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: rgba(61, 217, 195, 0.08);
  border: 1px solid rgba(61, 217, 195, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.case-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.case-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.case-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  gap: 1.25rem;
}

.case-metric {
  display: flex;
  flex-direction: column;
}

.case-metric-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.case-metric-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .case-card {
    padding: 1.75rem;
  }
}

/* Results page mobile overflow fix */
@media (max-width: 480px) {
  .case-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }
  .case-metric {
    text-align: left;
  }
  .ads-manager-panel {
    padding: 1rem 0.75rem;
  }
  .dashboard-header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .dashboard-title {
    font-size: 0.7rem;
  }
}

/* CSS Mock Calendly Widget Styling */
.calendly-mock {
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: 2rem;
  max-width: 100%;
}

.calendly-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.calendly-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.calendly-header-info {
  display: flex;
  flex-direction: column;
}

.calendly-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
}

.calendly-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.calendly-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .calendly-body {
    grid-template-columns: 1fr;
  }
}

.calendly-calendar {
  display: flex;
  flex-direction: column;
}

.calendar-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.calendar-month-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.calendar-nav-btn:hover {
  color: var(--text-primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 4px;
}

.calendar-days .day {
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-radius: 4px;
  color: var(--text-dim);
  user-select: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.calendar-days .day.active {
  color: var(--text-primary);
  background: rgba(232, 230, 224, 0.03);
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.calendar-days .day.active:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-days .day.active.select {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  font-weight: 800;
}

.calendly-slots {
  display: flex;
  flex-direction: column;
}

.slots-header {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.slots-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slot {
  width: 100%;
  padding: 0.55rem;
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.time-slot:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(61, 217, 195, 0.03);
}

.time-slot.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}

.calendly-note {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.4;
}

/* Cookie Consent Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  width: 90%;
  max-width: 580px;
  padding: 1.25rem 1.5rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(17, 17, 19, 0.85);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: all;
}

.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
  }
}

.cookie-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-details {
  display: none;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.cookie-details.open {
  display: block;
}

.cookie-option {
  margin-bottom: 0.75rem;
}

.cookie-option span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

