/* ==========================================================================
   MissingLink SEO - SARASOTA DIGITAL MARKETING AGENCY
   Theme: Full Dark Luxury Executive Cockpit (Titanium Slate & Crimson)
   ========================================================================== */

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

:root {
  /* Brand Color Palette */
  --color-red: #E5252A;
  --color-red-hover: #C81A1F;
  --color-red-dark: #961115;
  --color-red-glow: rgba(229, 37, 42, 0.35);
  --color-red-subtle: rgba(229, 37, 42, 0.1);
  --color-red-border: rgba(229, 37, 42, 0.3);

  /* Hero & Dark Accent Palette */
  --bg-dark-hero: #07080C;
  --bg-dark-surface: #111520;
  --bg-dark-surface-2: #181E2C;
  --bg-dark-input: #151A26;

  /* Body & Section Canvases */
  --bg-page: #07080C;
  --bg-section-alt: #0C101A;
  --bg-section-light: #111624;
  --bg-card-white: #111625;
  --bg-accent-tint: rgba(229, 37, 42, 0.08);

  /* Typography */
  --text-dark-primary: #FFFFFF;
  --text-dark-secondary: #CBD5E1;
  --text-dark-muted: #94A3B8;
  --text-white: #FFFFFF;
  --text-white-slate: #CBD5E1;
  --text-white-muted: #94A3B8;
  --text-muted: #CBD5E1;
  --text-light-gray: #CBD5E1;
  --bg-dark-1: #111625;
  --bg-dark-2: #090D17;
  --border-glass: rgba(255, 255, 255, 0.12);

  /* Borders & Dividers */
  --border-light: rgba(255, 255, 255, 0.1);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(255, 255, 255, 0.16);

  /* Shadows */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.8);
  --shadow-dark-card: 0 20px 45px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 10px 25px -4px rgba(229, 37, 42, 0.4);
  --shadow-red-hover: 0 15px 35px -4px rgba(229, 37, 42, 0.6);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Rules
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark-primary);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-red {
  color: var(--color-red);
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(229, 37, 42, 0.12);
  border: 1.5px solid var(--color-red-border);
  color: #FF5A5F;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.tagline-badge-light {
  background: var(--bg-accent-tint);
  color: var(--color-red);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--text-dark-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-dark-muted);
  font-weight: 400;
}

/* Red Slanted SEO Badge (matches logo) */
.brand-seo-badge {
  display: inline-block;
  background: var(--color-red);
  color: #FFFFFF;
  font-style: italic;
  font-weight: 900;
  padding: 0.15rem 0.5rem;
  transform: skewX(-12deg);
  border-radius: 2px;
}

.brand-seo-badge span {
  display: inline-block;
  transform: skewX(12deg);
}

.version-switch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111520;
  border: 1px solid rgba(229, 37, 42, 0.4);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: var(--transition);
}

.version-switch-pill:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-red);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--color-red-hover);
  box-shadow: var(--shadow-red-hover);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: #111625;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
  background: rgba(229, 37, 42, 0.15);
  border-color: var(--color-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-red);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation (Unified Sticky Dark Executive Header)
   ========================================================================== */
.site-header, header.navbar, .topbar {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #07080C;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #040508;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: #94A3B8;
  backdrop-filter: blur(12px);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-item i {
  color: var(--color-red);
}

.topbar-item a {
  color: #CBD5E1;
  transition: var(--transition);
}

.topbar-item a:hover {
  color: var(--color-red);
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 31px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #07080C !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
}

.navbar.scrolled, .site-header.scrolled .navbar {
  background: #05060A !important;
  padding: 0.65rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(229, 37, 42, 0.15);
  border-bottom-color: rgba(229, 37, 42, 0.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF !important;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF !important;
  text-shadow: 0 0 12px rgba(229, 37, 42, 0.6);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(229, 37, 42, 0.8);
  transition: var(--transition);
}

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

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 280px;
  background: #0B0E17 !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--color-red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  backdrop-filter: blur(16px);
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: #CBD5E1 !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(229, 37, 42, 0.15) !important;
  color: #FFFFFF !important;
  padding-left: 1.5rem;
}

.dropdown-item i {
  color: var(--color-red);
  font-size: 1rem;
  width: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-phone i {
  color: var(--color-red);
}

.nav-phone:hover {
  color: var(--color-red) !important;
  transform: scale(1.03);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.75rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (Dark Red Match: Deep Carbon Obsidian + Vibrant Red Ambient)
   ========================================================================== */
.hero {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  background-color: #07080C;
  background-image: linear-gradient(135deg, rgba(7, 8, 12, 0.91) 0%, rgba(15, 17, 23, 0.84) 50%, rgba(7, 8, 12, 0.93) 100%), 
                    radial-gradient(circle at 80% 20%, rgba(229, 37, 42, 0.22) 0%, rgba(7, 8, 12, 0) 60%),
                    url('../images/sarasota_hero_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-bottom: 2px solid rgba(229, 37, 42, 0.3);
}

.hero-glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 37, 42, 0.3) 0%, rgba(229, 37, 42, 0) 70%);
  top: -150px;
  right: -100px;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

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

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-lead {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item h4 {
  font-size: 2.1rem;
  color: var(--color-red);
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* Hero Right: High-Contrast Dark Audit Card Matching Dark Red Theme */
.hero-card-audit {
  background: #111522;
  border: 1px solid rgba(229, 37, 42, 0.35);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(229, 37, 42, 0.15);
  position: relative;
}

.audit-card-badge {
  display: inline-block;
  background: rgba(229, 37, 42, 0.15);
  color: #FF5A5F;
  border: 1px solid var(--color-red-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.audit-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.audit-card-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.audit-form-group {
  margin-bottom: 1.35rem;
  text-align: left;
}

.audit-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap i {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: #FF5A5F;
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 2;
}

.input-field,
.audit-input,
.audit-interactive-form input[type="text"],
.audit-interactive-form input[type="email"],
.audit-interactive-form input[type="tel"] {
  width: 100%;
  height: 52px;
  background: rgba(14, 18, 30, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 1.25rem 0 3.2rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-appearance: none;
  appearance: none;
}

.input-field::placeholder,
.audit-input::placeholder {
  color: #64748B;
  font-size: 0.92rem;
  font-weight: 400;
}

.input-field:focus,
.audit-input:focus,
.audit-interactive-form input:focus {
  background: rgba(20, 26, 44, 0.98);
  border-color: var(--color-red);
  box-shadow: 0 0 0 4px rgba(229, 37, 42, 0.25), 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0,0,0,0.4);
  color: #FFFFFF;
}

.input-icon-wrap:focus-within i {
  color: #FF3338;
  transform: translateY(-50%) scale(1.15);
}

.audit-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 1.25rem;
  justify-content: center;
  font-weight: 600;
}

.audit-guarantee i {
  color: #10B981;
}

/* ==========================================================================
   Trust Bar (Light Crisp Accent Bar)
   ========================================================================== */
.trust-bar {
  background: #F8FAFC !important;
  padding: 2.25rem 0;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 2px solid #CBD5E1 !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.trust-bar-text {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0F172A !important;
  margin-bottom: 1.5rem;
}

.trust-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0F172A !important;
  transition: var(--transition);
}

.trust-item i {
  color: var(--color-red) !important;
  font-size: 1.45rem;
}

.trust-item:hover {
  color: var(--color-red) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   Profit Forecasting / ROI Growth Calculator Section
   ========================================================================== */
.roi-section, .roi-calculator-section {
  padding: 6rem 0;
  background: #07080C;
  position: relative;
  border-top: 1px solid rgba(229, 37, 42, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.roi-section .section-title, .roi-calculator-section .section-title {
  color: #FFFFFF !important;
}

.roi-section .roi-card-wrapper, 
.roi-calculator-section .roi-card-wrapper {
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 37, 42, 0.15);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Generic Subpage 2-Column Split Cards (Dark Titanium Architecture) */
.subpage-split-card,
.roi-card-wrapper {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-top: 4px solid var(--color-red);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.subpage-split-card h2, .subpage-split-card h3,
.roi-card-wrapper:not(.roi-section *) h2, .roi-card-wrapper:not(.roi-section *) h3 {
  color: #FFFFFF !important;
}

.subpage-split-card p,
.roi-card-wrapper:not(.roi-section *) p {
  color: #CBD5E1 !important;
}

/* Left Inputs Column (Crisp Dark Typography on #F8FAFC) */
.roi-inputs h3 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  color: #0A0D14 !important;
  font-family: var(--font-heading);
  font-weight: 800;
}

.roi-inputs p {
  color: #1E293B !important;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.calc-range-group {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-left: 4px solid var(--color-red) !important;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.calc-range-group:hover {
  background: #FFFFFF !important;
  border-color: rgba(229, 37, 42, 0.4) !important;
  border-left-color: #FF3B41 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label-row span {
  font-weight: 700;
  font-size: 0.92rem;
  color: #1E293B !important;
}

.calc-val-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--color-red) 0%, #B91C1C 100%) !important;
  padding: 0.25rem 0.85rem;
  border-radius: 8px;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(229, 37, 42, 0.4);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #CBD5E1 !important;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-red);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(229, 37, 42, 0.8);
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Right ROI Output Dashboard */
.roi-results-box {
  background: #05070C !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid #10B981;
  border-radius: 16px;
  padding: 2.75rem 2.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.roi-metric-header {
  font-size: 0.85rem;
  color: #A7F3D0 !important;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.roi-big-number {
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: #10B981 !important;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.roi-multiplier-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399 !important;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.roi-breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.roi-mini-card {
  background: #0C101C !important;
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-mini-card span {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8 !important;
  margin-bottom: 0.25rem;
}

.roi-mini-card strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .roi-card-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   Services Section (Elevated Titanium Cards on Deep Canvas)
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: var(--bg-page);
  position: relative;
}

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

.service-card {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 37, 42, 0.2);
}

.service-card-popular {
  border-color: rgba(229, 37, 42, 0.55) !important;
  background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 25%) !important;
}

.card-badge-top {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--color-red);
  color: #FFFFFF !important;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(229, 37, 42, 0.5);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(229, 37, 42, 0.08);
  border: 1.5px solid rgba(229, 37, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-red);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--color-red);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(229, 37, 42, 0.6);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  color: #0A0D14 !important;
  font-weight: 800;
}

.service-card p {
  color: #0F172A !important;
  font-size: 0.96rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-features-list {
  margin-bottom: 1.75rem;
  margin-top: auto;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.55;
}

.service-card .service-features-list li {
  color: #0F172A !important;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-features-list li i {
  color: var(--color-red) !important;
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-red) !important;
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.85rem;
  color: var(--color-red-hover) !important;
}

/* ==========================================================================
   Sarasota Geo-Local Authority Section (Rich Dark Anchor Block)
   ========================================================================== */
.sarasota-geo-section {
  padding: 6rem 0;
  background: #090B10;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.geo-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: #FFFFFF !important;
  font-weight: 800;
}

.geo-content p {
  color: #CBD5E1 !important;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.geo-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.geo-badge {
  background: #161B28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.geo-badge i {
  color: var(--color-red);
}

.geo-badge:hover {
  border-color: var(--color-red);
  background: rgba(229, 37, 42, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.geo-map-card {
  background: #161B28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.geo-map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.geo-map-info-box {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0E121C;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-red);
}

.geo-map-info-box h5 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: #FFFFFF !important;
}

.geo-map-info-box p {
  font-size: 0.8rem;
  color: #94A3B8 !important;
  margin-bottom: 0;
}

/* ==========================================================================
   Case Studies / Results (Crisp Light Cards with High-Contrast Badges)
   ========================================================================== */
.case-studies-section {
  padding: 6rem 0;
  background: #0C101A;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.case-card {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 37, 42, 0.2);
}

.case-header-bar {
  padding: 1rem 1.75rem;
  background: #F1F5F9 !important;
  border-bottom: 1.5px solid #E2E8F0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-industry {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #0F172A !important;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-location {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.case-location i {
  color: var(--color-red) !important;
}

.case-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: #0A0D14 !important;
  font-weight: 800;
  line-height: 1.3;
}

.case-body p {
  color: #0F172A !important;
  font-size: 0.96rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.case-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: #F8FAFC !important;
  padding: 1.25rem;
  border-radius: 10px;
  margin-top: auto;
  border: 1.5px solid #CBD5E1 !important;
  border-left: 4px solid var(--color-red) !important;
}

.case-stat-box span {
  display: block;
  font-size: 0.78rem;
  color: #1E293B !important;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-stat-box strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: #059669 !important;
  font-weight: 900;
}

/* ==========================================================================
   Process Section (MissingLink Framework on Light Canvas)
   ========================================================================== */
.process-section {
  padding: 6rem 0;
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 2px solid #CBD5E1 !important;
}

.process-section .section-title {
  color: #0A0D14 !important;
}

.process-section .section-subtitle {
  color: #0F172A !important;
  font-weight: 600;
  font-size: 1.15rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.process-step-card {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-top: 4px solid var(--color-red) !important;
  border-radius: 14px;
  padding: 2.5rem 1.75rem 2rem;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.05);
}

.process-step-card:hover {
  background: #FFFFFF !important;
  border-color: var(--color-red) !important;
  border-top-color: #FF3338 !important;
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18), 0 0 20px rgba(229, 37, 42, 0.2);
}

.step-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #334155 !important;
  opacity: 1 !important;
  line-height: 1;
}

.step-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(229, 37, 42, 0.08);
  border: 1.5px solid rgba(229, 37, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-red);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.process-step-card:hover .step-icon-wrap {
  background: var(--color-red);
  color: #FFFFFF;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 20px rgba(229, 37, 42, 0.5);
}

.process-step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0A0D14 !important;
  font-weight: 900;
}

.process-step-card p {
  color: #0F172A !important;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: #0C101A;
}

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

.testimonial-card {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.test-stars {
  color: #F59E0B;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.test-quote {
  font-size: 1rem;
  color: #E2E8F0 !important;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #07080C;
  border: 2px solid var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFFFFF;
}

.test-author-info h5 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: #FFFFFF !important;
  font-weight: 700;
}

.test-author-info span {
  font-size: 0.8rem;
  color: #94A3B8 !important;
}

/* ==========================================================================
   FAQ Section Accordion (High-Contrast Obsidian Cards)
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: #07080C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.faq-item {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
  background: #151C2E;
  border-color: var(--color-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(229, 37, 42, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-question i {
  color: var(--color-red);
  transition: var(--transition);
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
  color: #CBD5E1 !important;
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   CTA Banner (Executive 2-Column Split Action Grid)
   ========================================================================== */
.cta-banner {
  padding: 5.5rem 0;
  position: relative;
  background-color: #07080C;
  background-image: radial-gradient(circle at 75% 40%, rgba(229, 37, 42, 0.16) 0%, rgba(7, 8, 12, 0) 65%),
                    linear-gradient(180deg, rgba(7, 8, 12, 0.97) 0%, rgba(11, 14, 22, 0.94) 50%, rgba(7, 8, 12, 0.98) 100%),
                    url('../images/cta_banner_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 2px solid rgba(229, 37, 42, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-banner-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #FFFFFF;
  line-height: 1.15;
}

.cta-banner-left p {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.cta-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F1F5F9;
}

.cta-feature-item i {
  color: var(--color-red);
  font-size: 1.1rem;
}

.cta-action-card {
  background: rgba(17, 21, 34, 0.85);
  border: 1.5px solid rgba(229, 37, 42, 0.35);
  border-top: 4px solid var(--color-red);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 37, 42, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-card-header h3 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.cta-card-header p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
}

.cta-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (max-width: 992px) {
  .cta-banner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .cta-features-list {
    align-items: center;
  }
}

.cta-banner p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #F1F5F9;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #040507;
  color: #CBD5E1;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-col p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111522;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.social-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #FFFFFF;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--color-red);
}

.footer-links a:hover {
  color: var(--color-red);
  padding-left: 0.35rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #94A3B8;
}

.footer-contact-list i {
  color: var(--color-red);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

/* ==========================================================================
   Inner Page Banners (Deep Dark Overlay Matching Homepage)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background-color: #07080C;
  background-image: linear-gradient(135deg, rgba(7, 8, 12, 0.93) 0%, rgba(15, 17, 23, 0.88) 50%, rgba(7, 8, 12, 0.95) 100%),
                    radial-gradient(circle at 80% 20%, rgba(229, 37, 42, 0.12) 0%, rgba(7, 8, 12, 0) 60%),
                    url('../images/sarasota_hero_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  border-bottom: 2px solid rgba(229, 37, 42, 0.3);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.page-hero p {
  font-size: 1.2rem;
  color: #E2E8F0;
  max-width: 760px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #94A3B8;
}

.breadcrumb a {
  color: #CBD5E1;
}

.breadcrumb a:hover {
  color: var(--color-red);
}

.breadcrumb span {
  color: var(--color-red);
  font-weight: 700;
}

/* Contact Page Grid */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  margin: 5rem 0;
}

.contact-card-box {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

.contact-info-card h4 {
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-card p, .contact-info-card a {
  color: #CBD5E1 !important;
}

.contact-info-card a:hover {
  color: var(--color-red) !important;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-accent-tint);
  border: 1.5px solid var(--color-red-border);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Audit Simulation Box */
.audit-progress-box {
  display: none;
  background: #181E2E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}

.progress-bar-wrap {
  width: 100%;
  height: 10px;
  background: #0E121C;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF6B6B, var(--color-red));
  transition: width 0.3s ease;
}

/* Modern Floating Concierge Bar */
.floating-concierge-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(229, 37, 42, 0.4);
  border-radius: 50px;
  padding: 0.5rem 0.6rem 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 37, 42, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-concierge-bar:hover {
  border-color: var(--color-red);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 35px rgba(229, 37, 42, 0.35);
  transform: translateY(-3px);
}

.concierge-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-beacon {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulseBeacon 2s infinite;
}

.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
}

@keyframes pulseBeacon {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.concierge-info {
  display: flex;
  flex-direction: column;
}

.concierge-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #10B981;
  text-transform: uppercase;
}

.concierge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.concierge-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.concierge-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 0.55rem 1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.concierge-phone-btn i {
  color: var(--color-red);
}

.concierge-phone-btn:hover {
  background: rgba(229, 37, 42, 0.15);
  border-color: var(--color-red);
  color: #FFFFFF;
}

.concierge-audit-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-red);
  color: #FFFFFF;
  padding: 0.55rem 1.15rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(229, 37, 42, 0.4);
  transition: var(--transition);
}

.concierge-audit-btn:hover {
  background: var(--color-red-hover);
  transform: translateY(-1px);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .floating-concierge-bar {
    bottom: 15px;
    right: 15px;
    left: 15px;
    border-radius: 16px;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
  }
  .concierge-info {
    display: none;
  }
  .concierge-actions {
    width: 100%;
    justify-content: space-between;
  }
  .concierge-phone-btn, .concierge-audit-btn {
    flex: 1;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
  }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #111522;
  color: #FFFFFF;
  border: 1px solid rgba(229, 37, 42, 0.35);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .geo-grid, .roi-card-wrapper, .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0B0E17 !important;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 3px solid var(--color-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    color: #FFFFFF !important;
    font-size: 1.1rem;
  }

  .nav-actions {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #111625 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    width: 100%;
    margin-top: 0.5rem;
  }

  .dropdown-item {
    color: #CBD5E1 !important;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid, .case-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   Circle Silo (Circular Internal Linking Architecture)
   ========================================================================== */
.circle-silo-section {
  padding: 5rem 0;
  background: #07080C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.circle-silo-card {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-top: 4px solid var(--color-red);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.circle-silo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.circle-silo-header h3 {
  font-size: 1.85rem;
  color: #FFFFFF !important;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.circle-silo-header p {
  color: #CBD5E1 !important;
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

.silo-ring-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.silo-ring-btn {
  background: #090D17;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.silo-ring-btn:hover {
  background: #141B2D;
  border-color: var(--color-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 37, 42, 0.25);
}

.silo-ring-btn-prev {
  text-align: left;
}

.silo-ring-btn-next {
  text-align: right;
  flex-direction: row-reverse;
}

.silo-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229, 37, 42, 0.12);
  border: 1px solid rgba(229, 37, 42, 0.3);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.silo-ring-btn:hover .silo-btn-icon {
  background: var(--color-red);
  color: #FFFFFF;
}

.silo-btn-meta {
  display: flex;
  flex-direction: column;
}

.silo-btn-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 0.2rem;
}

.silo-btn-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.silo-pillar-btn {
  background: rgba(229, 37, 42, 0.12);
  border: 1.5px solid var(--color-red);
  border-radius: 12px;
  padding: 1rem 1.75rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}

.silo-pillar-btn:hover {
  background: var(--color-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 37, 42, 0.4);
}

.silo-pillar-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CBD5E1;
}

.silo-pillar-btn:hover .silo-pillar-label {
  color: #FFFFFF;
}

.silo-pillar-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.silo-cluster-matrix {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.silo-matrix-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  text-align: center;
}

.silo-cluster-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.silo-badge-item {
  background: #090D17;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.silo-badge-item i {
  color: var(--color-red);
}

.silo-badge-item:hover {
  border-color: var(--color-red);
  background: rgba(229, 37, 42, 0.15);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.silo-badge-item.active {
  background: var(--color-red) !important;
  color: #FFFFFF !important;
  border-color: var(--color-red) !important;
  box-shadow: 0 0 15px rgba(229, 37, 42, 0.4);
}

.silo-badge-item.active i {
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .silo-ring-nav {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .silo-ring-btn-next {
    text-align: left;
    flex-direction: row;
  }
}

/* ==========================================================================
   Blog & Knowledge Base System (Editorial Dark Architecture)
   ========================================================================== */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.blog-filter-btn {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--color-red);
  color: #FFFFFF !important;
  border-color: var(--color-red);
  box-shadow: 0 4px 15px rgba(229, 37, 42, 0.35);
  transform: translateY(-2px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-top: 4px solid var(--color-red);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 37, 42, 0.2);
}

.blog-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-featured-img-wrap {
  margin: 2.5rem 0 3.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.article-featured-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.blog-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-category-badge {
  background: rgba(229, 37, 42, 0.15);
  border: 1px solid rgba(229, 37, 42, 0.35);
  color: #FF5A5F;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.blog-read-time {
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 0.85rem;
  line-height: 1.35;
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: #FF5A5F !important;
}

.blog-card-excerpt {
  color: #CBD5E1 !important;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.blog-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.blog-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--color-red);
}

.blog-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.blog-read-more {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 0.7rem;
}

/* ==========================================================================
   Single Article Layout & Typography
   ========================================================================== */
.article-section {
  padding: 5rem 0;
  background: #07080C;
}

.article-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  font-size: 0.9rem;
  color: #94A3B8;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #CBD5E1;
}

.article-body h2 {
  font-size: 1.95rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 2.25rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.75rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.75rem;
  color: #CBD5E1;
}

.article-body li strong {
  color: #FFFFFF;
}

.article-body a {
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition);
}

.article-body a:hover {
  color: var(--color-red-hover);
}

.article-body a.btn,
.article-body .btn,
.article-silo-funnel a.btn,
.article-silo-funnel .btn {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

.article-body a.btn i,
.article-body .btn i,
.article-silo-funnel .btn i {
  color: #FFFFFF !important;
}

.article-callout-box {
  background: #111625;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-red);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.article-callout-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.article-callout-box p {
  color: #CBD5E1;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Service Pillar Funnel CTA Card */
.article-silo-funnel {
  background: linear-gradient(135deg, #161C2C 0%, #0D111A 100%);
  border: 1.5px solid rgba(229, 37, 42, 0.4);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin: 4rem 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.article-silo-funnel h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem;
}

.article-silo-funnel p {
  color: #CBD5E1;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.author-bio-card {
  background: #111625;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

.author-bio-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
  flex-shrink: 0;
  object-fit: cover;
}

.author-bio-details h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.author-bio-details span {
  font-size: 0.85rem;
  color: var(--color-red);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.author-bio-details p {
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .author-bio-card {
    flex-direction: column;
    text-align: center;
  }
}
