/* ==========================================
   DESIGN SYSTEM VARIABLES
   ========================================== */
:root {
  --color-primary: #FFFFFF;      /* Pure White for headings */
  --color-primary-light: #E2E8F0;/* Off-white */
  --color-accent: #F97316;       /* Brand Orange */
  --color-accent-hover: #EA6A0A; /* Dark Orange Hover */
  --color-bg: #07090E;           /* Obsidian Dark */
  --color-text: #94A3B8;         /* Light Slate Charcoal */
  --color-text-muted: #64748B;   /* Slate-500 */
  --color-white: #0B0F19;        /* Card Background */
  --color-card-bg: rgba(11, 15, 25, 0.65);
  --color-glass: rgba(255, 255, 255, 0.03);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glass-border-gold: rgba(249, 115, 22, 0.18);
  --color-glass-dark: rgba(7, 9, 14, 0.85);
  --color-error: #EF4444;        /* Crimson Red */

  --gradient-orange: linear-gradient(135deg, #FED7AA 0%, #F97316 50%, #C2510A 100%);
  --gradient-bg: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.04) 0%, transparent 45%),
                 radial-gradient(circle at 90% 80%, rgba(13, 62, 54, 0.09) 0%, transparent 50%),
                 radial-gradient(circle at 50% 50%, rgba(7, 9, 14, 1) 0%, #07090E 100%);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.15);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --slider-pos: 50%;
}

/* ==========================================
   THEME OVERRIDES & TOGGLE STYLES
   ========================================== */
.light-theme {
  --color-primary: #1E2738;      /* Brand Navy */
  --color-primary-light: #2D3E56;/* Mid Navy */
  --color-accent: #F97316;       /* Brand Orange — stays vibrant on white */
  --color-accent-hover: #EA6A0A;
  --color-bg: #F8F9FA;           /* Clean Off-White */
  --color-text: #334155;         /* Dark Slate */
  --color-text-muted: #64748B;   /* Slate-500 */
  --color-white: #FFFFFF;        /* Pure White Cards */
  --color-card-bg: rgba(255, 255, 255, 0.95);
  --color-glass: rgba(30, 39, 56, 0.02);
  --color-glass-border: rgba(30, 39, 56, 0.08);
  --color-glass-border-gold: rgba(249, 115, 22, 0.2);
  --color-glass-dark: rgba(248, 249, 250, 0.92);

  --gradient-bg: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 45%),
                 radial-gradient(circle at 90% 80%, rgba(30, 39, 56, 0.03) 0%, transparent 50%),
                 radial-gradient(circle at 50% 50%, rgba(248, 249, 250, 1) 0%, #F8F9FA 100%);

  --shadow-sm: 0 2px 4px rgba(30, 39, 56, 0.06);
  --shadow-md: 0 4px 20px rgba(30, 39, 56, 0.08);
  --shadow-lg: 0 10px 30px rgba(30, 39, 56, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(30, 39, 56, 0.08);
  --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.12);
}

/* Specific component light mode overrides */
.light-theme .header {
  background-color: rgba(248, 249, 250, 0.85);
  border-bottom: 1px solid rgba(30, 39, 56, 0.08);
}

.light-theme .header-scrolled {
  background-color: rgba(248, 249, 250, 0.97);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.light-theme .section-dark {
  background-color: #1E2738; /* Brand Navy — dark sections stay dark */
  color: #E2E8F0;
}

.light-theme .section-dark h2,
.light-theme .section-dark h3 {
  color: #FFFFFF;
}

.light-theme .section-dark p {
  color: #94A3B8;
}

.light-theme .footer {
  background-color: #1E2738; /* Brand Navy — stays dark in both modes */
  color: #94A3B8;
  border-top: none;
}

.light-theme .footer-brand h3,
.light-theme .footer-links h4,
.light-theme .footer-contact h4,
.light-theme .footer-contact span {
  color: #FFFFFF;
}

.light-theme .retention-section {
  background-color: #1E2738;
}

.light-theme .step-circle {
  background-color: #FAF9F6;
  border-color: rgba(15, 23, 42, 0.08);
}

.light-theme .step-circle span {
  color: var(--color-text);
}

.light-theme .step-node.active .step-circle {
  border-color: var(--color-accent);
  background-color: #FAF9F6;
}

.light-theme .step-node.active .step-circle span {
  color: var(--color-accent);
}

.light-theme .step-node.completed .step-circle {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.light-theme .wa-simulator-device {
  border-color: #E2E8F0;
  box-shadow: var(--shadow-glass);
}

/* Theme Switcher Toggle Button */
.theme-toggle {
  background: none;
  border: 1px solid var(--color-glass-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  transition: all var(--transition-normal);
  padding: 0;
  outline: none;
  background-color: var(--color-glass);
}

.theme-toggle:hover {
  background-color: rgba(249, 115, 22, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.08) rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  transition: transform var(--transition-normal);
}

/* Toggle icon visibility based on theme */
.light-theme .theme-toggle-moon,
:not(.light-theme) .theme-toggle-sun {
  display: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  background-image: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-text);
  font-weight: 400;
}

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

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

/* ==========================================
   LAYOUT STRUCTURE
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-dark {
  background-color: #0B0F19;
  color: var(--color-primary-light);
}

.section-dark h2, .section-dark h3 {
  color: #FFFFFF;
}

.section-dark p {
  color: #94A3B8;
}

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

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 16px auto 0 auto;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ==========================================
   BUTTONS & ACCENTS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md), 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-accent {
  background: var(--gradient-orange);
  color: #07090E;
  border: none;
}

.btn-accent:hover {
  filter: brightness(1.05);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md), 0 6px 20px rgba(249, 115, 22, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px) scale(1.02);
}

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

.btn-outline-white:hover {
  background: var(--gradient-orange);
  color: var(--color-primary);
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(7, 9, 14, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-normal);
}

.header-scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background-color: rgba(7, 9, 14, 0.9);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.logo span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
  display: inline-block;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-primary);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 105;
  padding: 100px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer .nav-link {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-family: var(--font-serif);
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

/* Hamburger active transformation */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-white);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  background-color: var(--color-white);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%), var(--color-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.hero-content h1 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--color-text-muted);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat-item h3 {
  font-size: 2rem;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--color-glass-border-gold);
  position: relative;
  overflow: hidden;
}

.hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
}

.badge-headline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.badge-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.badge-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.badge-benefit-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
}

/* ==========================================
   BEFORE/AFTER WEBSITE REDESIGN SLIDER
   ========================================== */
.slider-container {
  max-width: 900px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  -webkit-user-select: none;
  background-color: #eee;
  border: 4px solid var(--color-primary);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  transition: object-position 6s ease-in-out;
}

.slider-wrapper:hover .slider-img {
  object-position: bottom center;
}

.slider-before {
  z-index: 1;
}

.slider-after {
  z-index: 2;
  clip-path: polygon(0 0, var(--slider-pos) 0, var(--slider-pos) 100%, 0 100%);
}

/* Handle styles */
.slider-handle {
  position: absolute;
  top: 0;
  left: var(--slider-pos);
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--color-accent);
  z-index: 3;
  cursor: ew-resize;
  pointer-events: none;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--color-accent);
  font-size: 1.2rem;
  pointer-events: auto;
  cursor: ew-resize;
}

.slider-label {
  position: absolute;
  bottom: 16px;
  padding: 4px 10px;
  background-color: rgba(15, 23, 42, 0.7);
  color: var(--color-white);
  font-size: 0.75rem;
  border-radius: 4px;
  z-index: 4;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.label-before {
  right: 16px;
}

.label-after {
  left: 16px;
}

/* ==========================================
   TABBED SERVICE SELECTOR
   ========================================== */
.services-container {
  max-width: 960px;
  margin: 0 auto;
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-tab {
  background-color: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 20px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition-normal);
}

.service-tab:hover {
  background-color: rgba(214, 175, 87, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.service-tab.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-tab.active:hover {
  transform: translateY(-2px);
}

.service-panel {
  display: none;
  background-color: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--color-glass-border-gold);
  animation: fadeIn var(--transition-normal);
}

.service-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.service-details h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-details .lead-text {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.service-features-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
}

.service-stats-box {
  background-color: var(--color-bg);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.service-stat-desc {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================
   5-STAGE STEPPER (Premium Delivery Process)
   ========================================== */
.stepper-container {
  max-width: 1000px;
  margin: 0 auto;
}

.stepper-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 60px;
}

.stepper-nav::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: rgba(15, 23, 42, 0.1);
  z-index: 1;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 12px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 120px;
  transition: var(--transition-normal);
}

/* Stepper Active States */
.step-node.active .step-circle {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
}

.step-node.active .step-title {
  color: var(--color-primary);
  font-weight: 700;
}

.step-node.completed .step-circle {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Stepper Card Content */
.stepper-content-wrapper {
  background-color: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--color-glass-border-gold);
  min-height: 250px;
  display: flex;
  align-items: center;
}

.step-panel {
  display: none;
  width: 100%;
}

.step-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: slideUp var(--transition-normal);
}

.step-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.step-index-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.step-info p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.step-deliverables {
  background-color: var(--color-bg);
  padding: 24px;
  border-radius: 6px;
}

.step-deliverables h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.step-deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-deliverables li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-deliverables li::before {
  content: '→';
  color: var(--color-accent);
  font-weight: bold;
}

.step-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stepper-graphic {
  width: 100%;
  max-width: 320px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background-color: var(--color-bg);
}

/* ==========================================
   RETENTION ADVANTAGE (SPECIAL SECTION)
   ========================================== */
.retention-section {
  background-color: #0c1220; /* Deepest Slate */
}

.retention-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.retention-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.retention-content h2 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.retention-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.retention-box-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.retention-box {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-glass-border);
  border-top: 3px solid var(--color-accent);
  padding: 28px;
  border-radius: 8px;
  transition: var(--transition-normal);
}

.retention-box:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-glow);
}

.retention-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.retention-box p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* ==========================================
   DUAL BOOKING PLATFORM
   ========================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cal-embed-wrapper {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-booking-card {
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cal-booking-icon {
  font-size: 3rem;
  line-height: 1;
}

.cal-booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin: 0;
}

.cal-booking-desc {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
  margin: 0;
}

.cal-booking-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.cal-booking-features li {
  color: var(--color-text);
  font-size: 0.9rem;
}

.cal-booking-features li::marker { display: none; }

.cal-booking-btn {
  margin-top: 8px;
  cursor: pointer;
  border: none;
}

.cal-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-booking-wrapper {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-glass-border-gold);
}

.whatsapp-booking-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.whatsapp-booking-wrapper p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* WhatsApp Sub-Tabs (Templates) */
.whatsapp-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  padding-bottom: 12px;
}

.whatsapp-tab-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.whatsapp-tab-btn.active {
  background-color: rgba(214, 175, 87, 0.12);
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}

.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--color-bg);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  background-color: var(--color-white);
}

/* Checkbox Container Wobble & Flash */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-accent);
  font-weight: 600;
}

.wobble-error {
  animation: wobble 0.5s ease-in-out;
  border-color: var(--color-error);
  background-color: rgba(239, 68, 68, 0.03);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

.wobble-error .checkbox-label {
  color: var(--color-error);
}

@keyframes wobble {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-6px); }
  30%, 60%, 90% { transform: translateX(6px); }
}

.btn-whatsapp {
  background-color: #25D366; /* WhatsApp Green */
  color: var(--color-white);
  font-size: 1rem;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   FLOATING AGENCY ASSISTANT
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.floating-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

.assistant-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
  font-size: 1.4rem;
}

.assistant-trigger:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.assistant-card {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.assistant-card.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.assistant-header {
  padding: 20px;
  background-color: rgba(15, 23, 42, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-header h4 {
  color: var(--color-white);
  font-size: 1rem;
}

.assistant-header p {
  color: var(--color-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.assistant-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.assistant-link:hover {
  background-color: rgba(214, 175, 87, 0.1);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.assistant-link .icon {
  color: var(--color-accent);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background-color: #05070A;
  color: var(--color-text);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--color-accent);
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.footer-links-list a {
  color: #94A3B8;
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-contact span {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #64748B;
}

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

/* ==========================================
   PPC VARIATION STYLING
   ========================================== */
.ppc-layout {
  padding-top: 40px;
}

.ppc-layout .hero {
  padding: 60px 0;
}

.ppc-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.ppc-headline {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 24px;
}

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

.ppc-subheadline {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto 48px auto;
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==========================================
   WHATSAPP CHAT SIMULATOR
   ========================================== */
.wa-simulator-device {
  width: 100%;
  max-width: 380px;
  height: 440px;
  background-color: #E5DDD5;
  border-radius: 24px;
  border: 10px solid #1E293B;
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.wa-simulator-header {
  background-color: #075E54;
  color: var(--color-white);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.wa-simulator-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
}

.wa-simulator-status h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-sans);
}

.wa-simulator-status p {
  color: #12C06A;
  font-size: 0.65rem;
  margin: 0;
  font-weight: 600;
}

.wa-simulator-body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  position: relative;
}

.wa-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-msg.show {
  opacity: 1;
  transform: translateY(0);
}

.wa-msg-left {
  background-color: var(--color-white);
  color: var(--color-text);
  align-self: flex-start;
  border-top-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-msg-right {
  background-color: #DCF8C6;
  color: var(--color-text);
  align-self: flex-end;
  border-top-right-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-msg-meta {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: 3px;
  display: block;
}

.wa-system-label {
  align-self: center;
  background-color: rgba(225, 232, 235, 0.85);
  color: #51636c;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  margin: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.wa-system-label.show {
  opacity: 1;
  transform: scale(1);
}

.wa-typing-indicator {
  align-self: flex-start;
  background-color: var(--color-white);
  padding: 8px 12px;
  border-radius: 10px;
  border-top-left-radius: 0;
  display: none;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-typing-dot {
  width: 5px;
  height: 5px;
  background-color: #90A4AE;
  border-radius: 50%;
  animation: waTyping 1.2s infinite ease-in-out;
}

.wa-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dot:nth-child(3) { animation-delay: 0.4s; }

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

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet & Landscape (992px Breakpoint) */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }

  .hero-content > div {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
  
  .hero-badge-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .service-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-stats-box {
    padding: 24px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .retention-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .retention-box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  
  .footer-grid > :last-child {
    grid-column: span 2;
  }
}

/* Mobile Breakpoint (768px) */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  /* Services Tabs Grid to Stack */
  .services-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .service-tab {
    padding: 16px;
    font-size: 1rem;
  }
  
  /* Stepper Grid to Stack */
  .stepper-nav {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .stepper-nav::before {
    display: none;
  }
  
  .step-node {
    flex-direction: row;
    gap: 16px;
    background-color: var(--color-white);
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    align-items: center;
    box-shadow: var(--shadow-sm);
  }
  
  .step-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .step-title {
    text-align: left;
    max-width: none;
  }
  
  .stepper-content-wrapper {
    padding: 24px;
  }
  
  .step-panel.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stepper-graphic {
    max-width: 240px;
  }
  
  /* Before/After slider layout */
  .slider-after h3 {
    font-size: 1.6rem;
  }
  
  .slider-after p {
    font-size: 0.85rem;
  }
  
  .slider-after .portal-metrics {
    gap: 16px;
  }
  
  .slider-after .portal-metric-item h4 {
    font-size: 1.1rem;
  }
  
  /* Retention section */
  .retention-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .retention-box-wrapper {
    grid-template-columns: 1fr;
  }
  
  /* WhatsApp Booking Panel */
  .whatsapp-booking-wrapper {
    padding: 24px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-grid > :last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   INTERACTIVE DEMO SCHEDULER WIDGET
   ========================================== */
.demo-scheduler {
  background: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border-gold);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-primary);
}

.scheduler-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.scheduler-title {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: bold;
}

.scheduler-subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.day-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.day-btn {
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-btn:hover {
  border-color: var(--color-accent);
  background: rgba(249, 115, 22, 0.04);
}

.day-btn.active {
  background: var(--gradient-orange);
  border-color: transparent;
  color: #07090E;
  box-shadow: var(--shadow-sm);
}

.day-btn .day-name {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.8;
}

.day-btn.active .day-name {
  opacity: 1;
}

.day-btn .day-date {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 2px;
}

.time-slots-container h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-align: left;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.time-btn {
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-primary);
}

.time-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.time-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.scheduler-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.select-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.selection-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.selection-details p {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin: 0;
}

.selection-details strong {
  color: var(--color-accent);
}

/* ==========================================
   FOUNDER SHOWCASE SECTION
   ========================================== */
.founder-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.founder-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-glass-border-gold);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.founder-avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.founder-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #07090E;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.founder-card h3 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 6px;
}

.founder-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.founder-quote {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-primary-light);
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding: 0 10px;
}

.founder-details h3 {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(249, 115, 22, 0.15);
  padding-bottom: 8px;
}

.pillar-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.8rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-info h4 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.pillar-info p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
   PPC STREAMLINED LANDING PAGE STYLES
   ========================================== */
.ppc-hero-section {
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 60%), var(--color-bg);
}

.audit-checklist-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.audit-checklist-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border-gold);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-md);
}

.audit-checklist-card h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  padding-bottom: 10px;
}

.audit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-checklist li {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}

.audit-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive Overrides for New Elements */
@media (max-width: 992px) {
  .founder-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .day-selector {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
  .day-btn {
    padding: 8px 2px;
  }
  .day-btn .day-date {
    font-size: 0.85rem;
  }
  .time-slots {
    grid-template-columns: 1fr;
  }
}
