/* ==========================================================================
   RETENTIVE CO. - MASTER DESIGN SYSTEM & STYLESHEET
   Color Palette: #010401, #0E180E, #B6EF00, #F2F7DF
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
  --bg-dark: #010401;
  --bg-card: #0E180E;
  --bg-card-glass: rgba(14, 24, 14, 0.75);
  --bg-card-hover: #142214;
  --border-card: rgba(182, 239, 0, 0.12);
  --border-card-hover: rgba(182, 239, 0, 0.35);
  
  --color-lime: #B6EF00;
  --color-lime-glow: rgba(182, 239, 0, 0.25);
  --color-lime-dark: #98c700;
  
  --text-white: #ffffff;
  --text-light: #F2F7DF;
  --text-muted: rgba(242, 247, 223, 0.65);
  --text-dark: #010401;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* --- HEADING TYPOGRAPHY RULES --- */
h1, h2,
.hero-heading,
.section-title,
.cta-heading-large,
.service-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important; /* Futura Condensed PT ExtraBold */
  text-transform: uppercase !important; /* ALL CAPS */
  letter-spacing: 0.5px;
}

h3, h4, h5, h6,
.brand-title-serif,
.comp-title,
.trusted-heading,
.category-tag,
.col-title,
.modal-header h3 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important; /* Futura Condensed PT Bold */
  text-transform: uppercase !important; /* ALL CAPS */
  letter-spacing: 0.5px;
}

.main-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- NOISE CANVAS & GLOW SPOTLIGHTS --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
}

.glow-spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
}

.glow-spotlight-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(182, 239, 0, 0.15) 0%, rgba(1, 4, 1, 0) 70%);
}

.glow-spotlight-mid {
  top: 40%;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(182, 239, 0, 0.1) 0%, rgba(1, 4, 1, 0) 70%);
}

/* --- UTILITY CLASSES --- */
.container-large {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-lime { color: var(--color-lime); }
.text-white { color: var(--text-white); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.subheader-text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-lime);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.75rem auto 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 239, 0, 0.15), transparent);
}

.section-hero,
.section-highlights,
.section-trusted,
.section-services,
.section-comparison,
.section-metrics,
.section-case-studies,
.section-testimonials,
.section-faq,
.section-cta-banner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: var(--bg-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);

}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-lime {
  background: var(--color-lime);
  color: var(--text-dark);
  box-shadow: 0 0 25px var(--color-lime-glow);
}

.btn-lime:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(182, 239, 0, 0.45);
}

.btn-outline-lime {
  background: transparent;
  border: 1px solid var(--color-lime);
  color: var(--text-light);
}

.btn-outline-lime:hover {
  background: rgba(182, 239, 0, 0.1);
  color: var(--color-lime);
  transform: translateY(-2px);
}

/* --- FLOATING HEADER CONTAINER --- */
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(14, 24, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(182, 239, 0, 0.22);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(182, 239, 0, 0.05);
}

.floating-header.visible,
.floating-header {
    top: 20px;
}

.floating-header .logo { display: flex; align-items: center; }
.floating-header .logo-img { height: 28px; width: auto; object-fit: contain; display: block; }
.floating-header nav { display: flex; gap: 8px; align-items: center; }

.floating-header .nav-link {
    color: #F2F7DF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.floating-header .nav-link:hover,
.floating-header .nav-link.active {
    color: #B6EF00;
    background-color: rgba(182, 239, 0, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-cta { display: none; }

.floating-header .cta-button {
    background-color: #B6EF00;
    color: #0E180E;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-header .cta-button:hover {
    transform: scale(1.05);
    background-color: #c8f526;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    height: 20px;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-lime);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
    .floating-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 12px;
        background: rgba(14, 24, 14, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(182, 239, 0, 0.25);
        border-radius: 24px;
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }
    .floating-header nav.active { display: flex; }
    .floating-header .nav-link { width: 100%; text-align: center; padding: 10px 0; }
    .desktop-cta { display: none; }
    .mobile-cta { display: block; width: 100%; text-align: center; }
    .mobile-toggle { display: flex; }
    .floating-header { padding: 10px 20px; width: 92%; }
}

/* --- HERO SECTION --- */
.section-hero {
  padding: 170px 0 90px;
  position: relative;
}

.hero-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(182, 239, 0, 0.08);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 12px var(--color-lime);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-heading {
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.hero-accent-line {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-main-line {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
  font-weight: 800;
}

.text-glow {
  text-shadow: 0 0 35px var(--color-lime-glow);
}

.hero-subtext {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.checkmarks-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
}

.checkmark-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(182, 239, 0, 0.15);
  color: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkmark-icon svg { width: 12px; height: 12px; }

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* --- INDUSTRY HIGHLIGHTS CATEGORIES SECTION --- */
.section-highlights { padding: 80px 0; }

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

.category-card-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-interactive {
  background: #090909; /* Sleek black/gray default static background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(242, 247, 223, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* ON HOVER: Switch to dark green theme with neon lime glow */
.glass-card-interactive:hover {
  transform: translateY(-8px);
  background: #0E180E; /* Dark green theme on hover */
  border-color: var(--color-lime);
  box-shadow: 0 20px 45px rgba(182, 239, 0, 0.22), 0 0 25px rgba(182, 239, 0, 0.1);
}

.card-highlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.category-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
}

.category-metric-pill {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-lime);
  background: rgba(182, 239, 0, 0.12);
  border: 1px solid rgba(182, 239, 0, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.mockup-preview-img {
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #111111; /* Neutral dark gray inner box for default state */
  border: 1px solid rgba(242, 247, 223, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ON HOVER: Inner box transitions to dark green gradient background */
.glass-card-interactive:hover .mockup-preview-img {
  background: linear-gradient(135deg, rgba(20, 36, 20, 0.95), rgba(8, 18, 8, 0.98));
  border-color: rgba(182, 239, 0, 0.3);
}

.preview-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(182, 239, 0, 0.12);
  border: 1px solid rgba(182, 239, 0, 0.2);
  border-radius: var(--radius-pill);
  color: var(--color-lime);
}

.preview-img-box {
  font-size: 2.2rem;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
}

.glass-card-interactive:hover .preview-img-box {
  transform: scale(1.15) rotate(5deg);
}

.preview-content h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.preview-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.preview-btn:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--color-lime-glow);
}

.preview-btn svg {
  transition: transform var(--transition-fast);
}

.preview-btn:hover svg {
  transform: translateX(4px);
}

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

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

.preview-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(182, 239, 0, 0.15);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  color: var(--color-lime);
}

.preview-img-box {
  font-size: 2.2rem;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
}

.glass-card-interactive:hover .preview-img-box {
  transform: scale(1.15) rotate(5deg);
}

.preview-content h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.preview-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.preview-btn:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--color-lime-glow);
}

.preview-btn svg {
  transition: transform var(--transition-fast);
}

.preview-btn:hover svg {
  transform: translateX(4px);
}

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

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

.swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.swiper-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.8);
  border: 1px solid var(--border-card);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.swiper-nav-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
}

.swiper-nav-btn svg { width: 20px; height: 20px; }

/* --- TRUSTED BY TICKER --- */
.section-trusted { padding: 40px 0; overflow: hidden; }

.trusted-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
}

.ticker-left { animation: scroll-left 30s linear infinite; }
.ticker-right { animation: scroll-right 35s linear infinite; }

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

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 44px;
}

.brand-logo-img {
  height: 24px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.65;
  mix-blend-mode: screen;
  filter: brightness(0.95);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Optical Visual Weight Balancing */
.brand-logo-img[alt="KOLLO"] { height: 20px; }
.brand-logo-img[alt="LUMI"] { height: 18px; }
.brand-logo-img[alt="EVELYN"] { height: 26px; }
.brand-logo-img[alt="100 SENSES"] { height: 26px; }
.brand-logo-img[alt="CAROLINA COFFEE CO."] { height: 26px; }
.brand-logo-img[alt="SAINT JANE"] { height: 20px; }
.brand-logo-img[alt="CHICCABORSE"] { height: 19px; }

/* Subtle brightness highlight on hover only */
.brand-logo-item:hover .brand-logo-img {
  opacity: 1;
  filter: brightness(1.3);
}

/* --- INTERACTIVE SERVICES TAB TOGGLE BAR --- */
.services-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.services-toggle-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(9, 9, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 247, 223, 0.15);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-tab-btn {
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.service-tab-btn:hover {
  color: var(--text-light);
}

.service-tab-btn.active {
  background: var(--color-lime);
  color: #010401;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(182, 239, 0, 0.35);
}

/* SERVICE CARDS TAB SWITCHING ANIMATION */
.service-card-tab {
  display: none;
  animation: fadeInTab 0.4s ease forwards;
}

.service-card-tab.active {
  display: block;
}

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

/* WHAT'S INCLUDED CAPABILITIES GRID */
.whats-included-block {
  margin-top: 28px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(242, 247, 223, 0.12) !important;
}

.whats-included-title {
  font-family: var(--font-heading);
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  color: var(--text-light) !important;
  margin-bottom: 20px !important;
  text-transform: uppercase;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
  margin-bottom: 28px !important;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: rgba(242, 247, 223, 0.88) !important;
}

.capability-item span:not(.cap-icon) {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}

.cap-icon {
  font-size: 0.9rem;
  color: var(--color-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(182, 239, 0, 0.08);
  flex-shrink: 0;
  margin-top: 1px;
}

.service-cta-wrapper {
  margin-top: 28px !important;
  margin-bottom: 8px !important;
}

/* --- CORE SERVICES SECTION & EYEBROW HIERARCHY --- */
.section-services { padding: 80px 0; }

.service-header-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px !important;
  margin-bottom: 1.5rem !important;
}

.service-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(182, 239, 0, 0.08);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
}

.eyebrow-category-text {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.service-tagline-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-top: 4px;
}

.checkmark-item.highlighted {
  background: rgba(182, 239, 0, 0.06);
  border: 1px solid rgba(182, 239, 0, 0.18);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.checkmark-item.highlighted:hover {
  background: rgba(182, 239, 0, 0.12);
  border-color: rgba(182, 239, 0, 0.35);
}

.checkmark-item.highlighted strong {
  color: var(--color-lime);
}

/* FULL RETENTION SYSTEM EMAIL ENVELOPE MOCKUP */
.bg-retention-envelope {
  background: #060c06;
  padding: 16px 12px;
  overflow-y: auto;
  scrollbar-width: none;
}
.bg-retention-envelope::-webkit-scrollbar { display: none; }

.envelope-content-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.env-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(182, 239, 0, 0.1);
  border: 1px solid rgba(182, 239, 0, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.env-icon { font-size: 0.85rem; }
.env-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 1.5px; color: var(--color-lime); }

.env-hero-card {
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95), rgba(1, 4, 1, 0.95));
  border: 1px solid rgba(182, 239, 0, 0.3);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.env-tag { font-size: 0.62rem; font-weight: 800; letter-spacing: 1.2px; display: block; margin-bottom: 4px; }
.env-heading { font-size: 1.35rem; font-weight: 800; color: var(--text-light); margin: 0 0 4px; }
.env-sub { font-size: 0.68rem; color: var(--text-muted); display: block; }

.env-growth-list { display: flex; flex-direction: column; gap: 8px; }
.env-growth-item { display: flex; flex-direction: column; gap: 4px; }
.env-item-head { display: flex; justify-content: space-between; font-size: 0.7rem; font-weight: 700; color: var(--text-light); }

.env-bar { height: 6px; background: rgba(255, 255, 255, 0.08); border-radius: 3px; overflow: hidden; }
.env-fill { height: 100%; background: linear-gradient(90deg, var(--color-lime), #80d000); border-radius: 3px; }

.env-cta-button {
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(182, 239, 0, 0.3);
}

.env-footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(1, 4, 1, 0.8);
  border: 1px solid rgba(242, 247, 223, 0.12);
  border-radius: 10px;
  padding: 8px;
}

.e-stat { display: flex; flex-direction: column; align-items: center; }
.e-stat strong { font-size: 0.95rem; }
.e-stat span { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-reverse { direction: ltr; }

.service-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.checkmarks-list { display: flex; flex-direction: column; gap: 12px; }
.service-visual { display: flex; justify-content: center; }

.iphone-mockup-wrapper {
  position: relative;
  width: 300px;
  height: 560px;
}

.iphone-frame {
  width: 100%;
  height: 100%;
  background: #0E180E;
  border: 4px solid #1c2b1c;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #010401;
  border-radius: 12px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #060c06;
  padding-top: 40px;
  overflow: hidden;
}

.email-mockup-scroll {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: phone-scroll 12s ease-in-out infinite alternate;
}

@keyframes phone-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-80px); } }

.email-header-bar { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--color-lime); text-align: center; }
.email-hero-banner { background: linear-gradient(135deg, #142414, #081208); border: 1px solid rgba(182, 239, 0, 0.2); border-radius: var(--radius-md); padding: 14px; }
.email-hero-banner .tag { font-size: 0.65rem; font-weight: 700; color: var(--color-lime); }
.email-hero-banner h4 { font-size: 0.95rem; color: var(--text-light); margin-top: 4px; }
.email-body-text { font-size: 0.75rem; color: var(--text-muted); }
.email-cta-btn { margin-top: 8px; padding: 8px; background: var(--color-lime); color: var(--text-dark); font-size: 0.75rem; font-weight: 800; text-align: center; border-radius: var(--radius-sm); }

.email-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.email-prod-card { background: rgba(182, 239, 0, 0.05); border: 1px solid rgba(182, 239, 0, 0.1); border-radius: var(--radius-sm); padding: 8px; text-align: center; }
.prod-img { font-size: 1.2rem; }
.prod-title { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 600; }
.prod-price { font-size: 0.65rem; color: var(--color-lime); }

.bg-chat { background: #081208; }
.sms-chat-screen { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-date { font-size: 0.65rem; color: var(--text-muted); text-align: center; }
.chat-bubble { max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 0.75rem; line-height: 1.4; }
.bubble-incoming { align-self: flex-start; background: #122212; color: var(--text-light); border: 1px solid rgba(182, 239, 0, 0.15); border-bottom-left-radius: 4px; }
.chat-sender { display: block; font-size: 0.65rem; font-weight: 700; color: var(--color-lime); margin-bottom: 2px; }
.chat-link { font-size: 0.65rem; color: var(--color-lime); margin-top: 4px; text-decoration: underline; }
.bubble-outgoing { align-self: flex-end; background: var(--color-lime); color: var(--text-dark); font-weight: 600; border-bottom-right-radius: 4px; }

.floating-badge {
  position: absolute;
  background: rgba(14, 24, 14, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.badge-top-right { top: 40px; right: -40px; }
.badge-mid-left { top: 220px; left: -40px; }
.badge-bottom-right { bottom: 60px; right: -30px; }
.badge-top-left { top: 50px; left: -40px; }

.badge-val { font-size: 1.4rem; font-weight: 800; color: var(--text-light); }
.badge-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

.float-anim-1 { animation: float-1 4s ease-in-out infinite alternate; }
.float-anim-2 { animation: float-2 5s ease-in-out infinite alternate; }
.float-anim-3 { animation: float-3 4.5s ease-in-out infinite alternate; }

@keyframes float-1 { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes float-2 { 0% { transform: translateY(0); } 100% { transform: translateY(12px); } }
@keyframes float-3 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

/* --- COMPARISON TABLE GRID --- */
.section-comparison { padding: 80px 0; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.comp-card { padding: 32px; display: flex; flex-direction: column; }
.comp-featured {
  border: 1px solid var(--color-lime);
  box-shadow: 0 0 40px rgba(182, 239, 0, 0.2);
  background: rgba(182, 239, 0, 0.04);
  transform: scale(1.03);
  z-index: 5;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.comp-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; }
.comp-logo-header { margin-bottom: 16px; }
.comp-logo { height: 24px; object-fit: contain; }
.comp-divider { height: 1px; background: var(--border-card); margin-bottom: 20px; }
.comp-row { margin-bottom: 16px; }
.comp-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.comp-val { font-size: 1.05rem; font-weight: 600; color: var(--text-light); }

/* --- IMPACT METRICS SECTION --- */
.section-metrics { padding: 60px 0; }

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

.metric-card { padding: 30px 20px; }
.metric-number { display: inline-block; font-size: 3rem; font-weight: 800; color: var(--text-light); line-height: 1; }
.metric-symbol { font-size: 3rem; font-weight: 800; color: var(--text-light); }
.metric-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-top: 8px; }

/* --- CASE STUDIES SHOWCASE SECTION (COMPACT WITH BOTTOM NAV ARROWS) --- */
.section-case-studies {
  padding: 80px 0;
}

.case-study-showcase-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-studies-swiper {
  width: 100%;
  border-radius: 28px;
}

.case-study-feature-card {
  background: rgba(14, 24, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 247, 223, 0.15);
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.brand-title-serif {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.brand-subtag {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.case-impact-headline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.case-impact-desc {
  font-size: 0.9rem;
  color: rgba(242, 247, 223, 0.75);
  line-height: 1.55;
  margin-bottom: 20px;
}

.case-impact-divider {
  height: 1px;
  background: rgba(242, 247, 223, 0.15);
  margin-bottom: 20px;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-val {
  display: block;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.8rem;
  color: rgba(242, 247, 223, 0.75);
  font-weight: 500;
  line-height: 1.3;
}

.case-study-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.case-study-action-btn:hover {
  color: var(--color-lime);
  transform: translateX(4px);
}

.case-study-visual-side {
  background: #EFECE6; /* Off-white light container matching reference image */
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.case-mockup-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.case-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* Centered Navigation Row Below Cards */
.case-study-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.showcase-nav-btn {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.85);
  border: 1px solid rgba(182, 239, 0, 0.3);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showcase-nav-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
  box-shadow: 0 0 20px var(--color-lime-glow);
}

@media (max-width: 992px) {
  .case-study-feature-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* --- TESTIMONIALS SECTION --- */
.section-testimonials { padding: 80px 0; }
.trust-badges-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(182, 239, 0, 0.06); border: 1px solid rgba(182, 239, 0, 0.2); border-radius: var(--radius-pill); }
.stars-gold { color: var(--color-lime); font-size: 1rem; letter-spacing: 1.5px; }
.trust-text { font-size: 0.85rem; color: var(--text-light); }

.featured-review-card {
  padding: 44px;
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.9), rgba(1, 4, 1, 0.95));
  border: 1px solid rgba(182, 239, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(182, 239, 0, 0.08);
}

.quote-icon-large { font-size: 4rem; line-height: 1; color: var(--color-lime); font-family: Georgia, serif; opacity: 0.5; margin-bottom: -10px; }
.featured-quote-text { font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 500; line-height: 1.55; color: var(--text-white); margin-bottom: 24px; font-style: italic; }
.featured-author-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-avatar-gradient { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--color-lime), #7fad00); color: var(--text-dark); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--color-lime-glow); }
.author-name { font-size: 1.1rem; color: var(--text-white); font-weight: 700; }
.author-title { font-size: 0.85rem; color: var(--text-muted); }
.verified-tag { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--color-lime); background: rgba(182, 239, 0, 0.12); padding: 4px 12px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 6px; }

.aesthetic-review-card { padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.card-stars { color: var(--color-lime); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-card); padding-top: 16px; }
.author-avatar-sm { width: 38px; height: 38px; border-radius: 50%; background: rgba(182, 239, 0, 0.15); border: 1px solid var(--color-lime); color: var(--color-lime); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.author-name-sm { font-size: 0.95rem; color: var(--text-white); font-weight: 700; }
.author-sub { font-size: 0.78rem; color: var(--text-muted); }

/* --- SIX2EIGHT INSPIRED LIGHT-BACKGROUND FAQ SECTION --- */
.section-light-theme {
  background-color: var(--text-light); /* #F2F7DF Off-White Brand Surface */
  color: var(--bg-dark); /* #010401 Dark Text */
  padding: 100px 0;
  border-radius: var(--radius-lg);
  position: relative;
}

.text-dark-title {
  color: var(--bg-dark) !important;
}

.text-dark-sub {
  color: rgba(1, 4, 1, 0.7) !important;
}

.badge-pill-dark {
  background: rgba(14, 24, 14, 0.08) !important;
  border: 1px solid rgba(14, 24, 14, 0.2) !important;
}

.badge-dot-dark {
  background: var(--bg-dark) !important;
  box-shadow: 0 0 10px rgba(1, 4, 1, 0.4) !important;
}

.badge-text-dark {
  color: var(--bg-dark) !important;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(14, 24, 14, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--bg-card);
  box-shadow: 0 10px 30px rgba(14, 24, 14, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.06);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--color-lime);
  color: var(--bg-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: rgba(1, 4, 1, 0.8);
  line-height: 1.65;
}

/* --- SIX2EIGHT INSPIRED "LET'S TALK ABOUT YOUR PROJECT" CTA SECTION --- */
.section-cta-banner {
  padding: 100px 0 60px;
}

.six2eight-cta-box {
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95), rgba(1, 4, 1, 0.98));
  border: 1px solid var(--border-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(182, 239, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(182, 239, 0, 0.1);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-lime);
  letter-spacing: 1.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 10px var(--color-lime);
}

.cta-heading-large {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* IN-PAGE RETENTION AUDIT FORM & CTA BANNER - 2 COLUMNS */
.cta-banner-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 48px !important;
  align-items: start !important;
  text-align: left !important;
  width: 100% !important;
}

.cta-info-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100% !important;
}

.cta-info-side .cta-heading-large {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: var(--text-light) !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem !important;
  text-align: left !important;
}

.cta-info-side .cta-subtitle {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
  text-align: left !important;
}

.cta-form-side {
  width: 100% !important;
}

.inpage-form-card {
  background: rgba(9, 9, 9, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(182, 239, 0, 0.3) !important;
  border-radius: 24px !important;
  padding: 32px 28px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(182, 239, 0, 0.1) !important;
  text-align: left !important;
  width: 100% !important;
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-top: 4px;
}

.inpage-form {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 247, 223, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-lime);
  background: rgba(182, 239, 0, 0.05);
  box-shadow: 0 0 15px rgba(182, 239, 0, 0.2);
}

select.form-input option {
  background: #090909;
  color: var(--text-light);
}

/* CUSTOM BRANDED DROPDOWN MENU */
.custom-dropdown-container {
  position: relative;
  width: 100%;
}

.custom-dropdown-selected {
  width: 100%;
  padding: 12px 16px;
  background: #090909;
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dropdown-selected:hover,
.custom-dropdown-selected.active {
  border-color: var(--color-lime);
  background: rgba(182, 239, 0, 0.05);
  box-shadow: 0 0 15px rgba(182, 239, 0, 0.2);
}

.custom-dropdown-selected svg {
  color: var(--color-lime);
  transition: transform 0.3s ease;
}

.custom-dropdown-selected.active svg {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #090909;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(182, 239, 0, 0.3);
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(182, 239, 0, 0.15);
  z-index: 99;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-dropdown-menu.hidden {
  display: none !important;
}

.custom-dropdown-item {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-dropdown-item:hover {
  background: rgba(182, 239, 0, 0.15);
  color: var(--color-lime);
  padding-left: 20px;
}

.custom-dropdown-item.selected {
  background: rgba(182, 239, 0, 0.1);
  color: var(--color-lime);
  font-weight: 700;
}

@media (max-width: 991px) {
  .cta-banner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- SIX2EIGHT INSPIRED FOOTER --- */
.footer-six2eight {
  padding: 40px 0 60px;
  background: var(--bg-dark);
}

.footer-glass-box {
  background: var(--bg-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
}

.footer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 32px;
  object-fit: contain;
}

.footer-availability-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(182, 239, 0, 0.08);
  border: 1px solid rgba(182, 239, 0, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.footer-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 239, 0, 0.2), transparent);
  margin: 32px 0;
}

.footer-cols-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.footer-contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-lime);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-contact-value:hover {
  color: var(--color-lime);
}

.col-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 18px;
}

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

.col-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.col-links a:hover {
  color: var(--color-lime);
}

.footer-social-pills {
  display: flex;
  gap: 14px;
}

.footer-social-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242, 247, 223, 0.05);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.footer-social-pills a:hover {
  background: rgba(182, 239, 0, 0.15);
  border-color: var(--color-lime);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(182, 239, 0, 0.25);
}

.footer-social-pills a:hover .social-icon-img {
  filter: invert(82%) sepia(87%) saturate(1600%) hue-rotate(25deg) brightness(105%) contrast(105%);
  transform: scale(1.1);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
  background: rgba(14, 24, 14, 0.6);
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
}

/* --- BIG LOW-OPACITY GRADIENT WATERMARK LOGO BELOW FOOTER --- */
.footer-watermark-container {
  width: 100%;
  overflow: hidden;
  padding: 60px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
}

.footer-watermark-img {
  width: 90%;
  max-width: 1100px;
  height: auto;
  opacity: 0.12;
  filter: drop-shadow(0 0 40px rgba(182, 239, 0, 0.15));
  transition: opacity 0.5s ease;
}

/* --- MODAL DRAWER --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(1, 4, 1, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.modal-drawer {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: #0E180E;
  border-left: 1px solid var(--border-card);
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-drawer { transform: translateX(0); }

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-muted);
}

.modal-header h3 { font-size: 1.6rem; color: var(--text-light); margin-top: 4px; }
.modal-header p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.form-group input,
.form-group select {
  padding: 12px 16px;
  background: rgba(1, 4, 1, 0.6);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--color-lime); }
.form-success-msg { text-align: center; padding: 40px 0; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-reverse { direction: ltr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-featured { transform: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
  .footer-cols-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-cols-grid { grid-template-columns: 1fr; }
  .cta-action-buttons { flex-direction: column; width: 100%; }
  .cta-action-buttons .btn { width: 100%; }
  .featured-review-card { padding: 24px; }
  .verified-tag { margin-left: 0; margin-top: 8px; width: 100%; }
}

/* ==========================================================================
   MOBILE OPTIMIZATION BREAKPOINTS (@media max-width: 768px & 480px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Layout & Container Padding */
  .container,
  .container-large {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Header & Navigation */
  .floating-header {
    top: 12px;
    padding: 10px 16px;
    width: 94%;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 3%;
    width: 94%;
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(242, 247, 223, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }

  /* Hero Section */
  .section-hero {
    padding: 165px 0 60px !important;
  }

  .badge-pill {
    padding: 6px 14px;
    font-size: 0.75rem;
    gap: 6px;
    margin-bottom: 1.25rem;
  }

  .hero-accent-line {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem) !important;
    margin-bottom: 6px;
  }

  .hero-main-line {
    font-size: clamp(1.7rem, 6.8vw, 2.2rem) !important;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .checkmarks-row {
    align-items: flex-start;
    gap: 10px;
  }

  .checkmark-item {
    font-size: 0.85rem;
    text-align: left;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section Headings & Spacing */
  section {
    padding: 44px 0 !important;
  }

  .section-title {
    font-size: clamp(1.35rem, 5.2vw, 1.8rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.75rem !important;
  }

  .section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    color: var(--text-muted) !important;
  }

  /* Category Cards */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card-item .card-highlight {
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }

  .card-highlight-title {
    font-size: 1.1rem !important;
    line-height: 1.25 !important;
  }

  .card-highlight-sub {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
  }

  /* Trusted Marquee Ticker */
  .section-trusted {
    padding: 24px 0 !important;
  }

  .brand-logo-item {
    padding: 0 14px;
  }

  /* Core Services & Tab Toggle Mobile Optimization (NO HORIZONTAL SCROLL) */
  .services-toggle-wrapper {
    width: 100% !important;
    overflow: hidden !important;
    margin-bottom: 1.5rem !important;
  }

  .services-toggle-bar {
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 3px !important;
    gap: 2px !important;
    border-radius: 9999px !important;
  }

  .service-tab-btn {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    padding: 9px 2px !important;
    font-size: clamp(0.66rem, 2.6vw, 0.76rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
  }

  .glass-card.service-card {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .service-title {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .service-description {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  .whats-included-block {
    margin-top: 20px !important;
    padding-top: 16px !important;
  }

  .whats-included-title {
    font-size: 0.85rem !important;
    margin-bottom: 14px !important;
    letter-spacing: 0.04em !important;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 10px !important;
    margin-bottom: 20px !important;
  }

  .capability-item {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    gap: 7px !important;
  }

  .cap-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.78rem !important;
    border-radius: 5px !important;
  }

  .service-cta-wrapper {
    margin-top: 20px !important;
    width: 100% !important;
  }

  .service-cta-wrapper .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .framework-badge-box {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Case Studies Showcase Card */
  .case-study-feature-card {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .case-study-mockup-wrapper {
    order: -1;
  }

  .case-study-mockup-img {
    max-height: 260px;
    border-radius: 12px;
  }

  .brand-title-serif {
    font-size: 1.4rem !important;
  }

  .case-metrics-grid {
    gap: 16px;
  }

  .metric-num {
    font-size: 1.8rem;
  }

  /* Comparison Table */
  .comparison-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .comp-card {
    padding: 24px 18px;
  }

  /* Reviews & Testimonials */
  .featured-review-card {
    padding: 20px 16px;
  }

  .featured-quote-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .author-name {
    font-size: 1rem;
  }

  .aesthetic-review-card {
    padding: 20px 16px;
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* FAQ Accordion */
  .faq-question {
    padding: 16px 14px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 14px 16px;
    font-size: 0.9rem;
  }

  /* Final CTA Banner & In-Page Audit Form Mobile Optimization */
  .cta-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    width: 100% !important;
  }

  .cta-info-side {
    width: 100% !important;
  }

  .cta-form-side {
    width: 100% !important;
    margin-top: 10px !important;
  }

  .cta-banner-card {
    padding: 28px 16px !important;
    border-radius: 20px !important;
    overflow: visible !important;
  }

  .inpage-form-card {
    width: 100% !important;
    padding: 24px 18px !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }

  .form-input,
  .custom-dropdown-selected {
    font-size: 16px !important; /* Prevents auto-zoom on mobile browsers */
  }

  .cta-heading-large {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  .cta-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-action-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-cols-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

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

  /* Audit Modal Drawer */
  .modal-drawer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-main-line {
    font-size: 1.5rem !important;
  }

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

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .case-metrics-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- CUSTOM INTERACTIVE CURSOR --- */
@media (pointer: fine) {
  body, a, button, input, select, textarea, [role="button"] {
    cursor: none !important;
  }
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0 10px var(--color-lime);
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(182, 239, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease;
}

/* Hover Interactive State */
body.cursor-hover .custom-cursor-ring {
  width: 56px;
  height: 56px;
  background-color: rgba(182, 239, 0, 0.12);
  border-color: var(--color-lime);
  box-shadow: 0 0 24px rgba(182, 239, 0, 0.25);
}

body.cursor-hover .custom-cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 14px #ffffff;
}

@media (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
  body, a, button, input, select, textarea {
    cursor: auto !important;
  }
}

/* OVERRIDE FOR ALL FORM SELECT DROPDOWNS */
select,
select.form-input,
#form-revenue {
  background-color: #090909 !important;
  color: #F2F7DF !important;
  border: 1px solid rgba(182, 239, 0, 0.3) !important;
}

select option,
select.form-input option,
#form-revenue option {
  background-color: #090909 !important;
  color: #F2F7DF !important;
  padding: 12px 16px !important;
}

select option:checked,
select option:hover,
select option:focus {
  background-color: #142414 !important;
  color: #B6EF00 !important;
}
