/* Google Fonts imported via HTML link tags for performance */

/* --- CUSTOM VARIABLES (DEFAULT DARK) --- */
:root {
  --bg-primary: #080C14;
  --bg-secondary: #0E1424;
  --bg-tertiary: rgba(18, 26, 47, 0.6);
  --bg-input: rgba(8, 12, 20, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(99, 102, 241, 0.3);
  
  /* Text Colors */
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;
  
  /* Accent Colors */
  --accent-primary: #6366F1; /* Electric Indigo */
  --accent-secondary: #06B6D4; /* Cyan */
  --accent-mint: #14B8A6; /* Mint */
  --accent-gradient: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
  --accent-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #0891b2 100%);
  
  /* Component Specifics */
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.25);
  --btn-secondary-bg: rgba(255, 255, 255, 0.05);
  --btn-secondary-bg-hover: rgba(255, 255, 255, 0.1);
  --table-header-bg: rgba(14, 20, 36, 0.8);
  --accordion-content-bg: rgba(8, 12, 20, 0.3);
  --navbar-bg: rgba(8, 12, 20, 0.85);
  --cta-bg: linear-gradient(135deg, rgba(14, 20, 36, 0.9) 0%, rgba(8, 12, 20, 0.9) 100%);
  
  /* Spacing & Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- LIGHT THEME OVERRIDES --- */
html[data-theme="light"] {
  --bg-primary: #F8FAFC; /* Slate 50 */
  --bg-secondary: #FFFFFF; /* White */
  --bg-tertiary: rgba(255, 255, 255, 0.8); /* Translucent White */
  --bg-input: #FFFFFF;
  --border-color: rgba(15, 23, 42, 0.08); /* Slate 900 low opacity */
  --border-color-hover: rgba(99, 102, 241, 0.4);
  
  /* Text Colors */
  --text-main: #0F172A; /* Slate 900 */
  --text-muted: #475569; /* Slate 600 */
  --text-dark: #F1F5F9; /* Slate 100 */
  
  /* Component Specifics */
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  --card-shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.08);
  --btn-secondary-bg: rgba(15, 23, 42, 0.04);
  --btn-secondary-bg-hover: rgba(15, 23, 42, 0.08);
  --table-header-bg: rgba(241, 245, 249, 0.9);
  --accordion-content-bg: #F8FAFC;
  --navbar-bg: rgba(248, 250, 252, 0.85);
  --cta-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* --- UTILITIES & LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center { text-align: center; }
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFF;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
  background: var(--accent-gradient-hover);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--btn-secondary-bg-hover);
  border-color: var(--text-muted);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.section-tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent-secondary);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--navbar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

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

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

.phone-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
}

.phone-nav svg {
  width: 18px;
  height: 18px;
  color: var(--accent-secondary);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  color: var(--text-main);
  background-color: var(--btn-secondary-bg-hover);
  border-color: var(--text-muted);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

html[data-theme="dark"] .sun-icon {
  display: none;
}
html[data-theme="light"] .moon-icon {
  display: none;
}

/* Navigation Dropdown Menu (Desktop) */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.dropdown-toggle:hover, .dropdown-toggle.active {
  color: var(--text-main);
}

.dropdown-toggle svg {
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  min-width: 220px;
  box-shadow: var(--card-shadow);
  padding: 8px 0;
  z-index: 1001;
  margin-top: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  transition: var(--transition);
}

.dropdown-menu a:hover, .dropdown-menu a.active {
  color: var(--text-main);
  background-color: var(--btn-secondary-bg-hover);
}

/* Navigation Dropdown Menu (Mobile responsive overrides) */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 15px;
  }
  
  .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding: 0 0 0 16px;
    margin-top: 4px;
  }
  
  .dropdown-menu.active {
    display: block;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-main);
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  padding: 160px 0 100px 0;
  overflow: hidden;
  background-image: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
}

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

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.hero-feature span {
  font-size: 15px;
  font-weight: 500;
}

/* Lead Gen Form Card */
.form-card {
  background: var(--bg-tertiary);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.form-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(6, 182, 212, 0.05));
  z-index: -1;
  pointer-events: none;
}

.form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* --- PROOF & METRICS SECTION --- */
.proof-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.metrics {
  display: flex;
  gap: 40px;
  border-right: 1px solid var(--border-color);
}

.metric-item h4 {
  font-size: 36px;
  color: var(--text-main);
}

.metric-item p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gmb-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.gmb-stars {
  color: #FBBF24;
  display: flex;
  gap: 4px;
}

.gmb-text h5 {
  font-size: 15px;
}

.gmb-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.proof-quote {
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  padding-left: 24px;
}

.proof-quote::before {
  content: '“';
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  color: var(--accent-primary);
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
}

.proof-quote span {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  color: var(--text-main);
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-secondary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

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

/* --- COMPARISON TABLE --- */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-secondary);
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--table-header-bg);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.comparison-table td {
  font-size: 15px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-feature {
  font-weight: 600;
  max-width: 300px;
}

.competitor-col {
  color: var(--text-muted);
  width: 250px;
}

.us-col {
  font-weight: 500;
  width: 320px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.status-yes {
  background-color: rgba(20, 184, 166, 0.1);
  color: var(--accent-mint);
}

.status-no {
  background-color: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

/* --- FAQ ACCORDION --- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--border-color-hover);
}

.accordion-header {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--accordion-content-bg);
}

.accordion-content-inner {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-secondary);
}

.accordion-item.active .accordion-content {
  max-height: 1000px; /* Large enough threshold */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-box {
  background: var(--cta-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

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

/* --- FOOTER --- */
.footer {
  background-color: #04060A;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
  font-size: 14px;
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.footer-subsidiary {
  font-weight: 500;
}

.footer-subsidiary a {
  color: var(--accent-primary);
  font-weight: 600;
}

.footer-subsidiary a:hover {
  color: var(--accent-secondary);
}

/* --- CLUSTER SPECIFIC SUBPAGES STYLING --- */
.subpage-hero {
  padding: 160px 0 80px 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 40%);
  border-bottom: 1px solid var(--border-color);
}

.subpage-hero h1 {
  font-size: 48px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.subpage-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

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

.breadcrumb-separator {
  color: rgba(255,255,255,0.2);
}

.subpage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.subpage-body h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.subpage-body p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.subpage-body ul {
  list-style: none;
  margin-bottom: 30px;
}

.subpage-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.subpage-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
}

.subpage-sidebar {
  position: sticky;
  top: 100px;
}

/* Sidebar Call Box */
.sidebar-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-box h4 {
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

/* Niche checklist styling */
.niche-checklist {
  background-color: rgba(99, 102, 241, 0.03);
  border: 1px dashed rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 30px 0;
}

.niche-checklist h4 {
  color: var(--text-main);
  margin-bottom: 12px;
  font-size: 16px;
}

/* Case study metrics card */
.case-study-metric-card {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.05));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

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

.cs-number {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.cs-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-features {
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .metrics {
    border-right: none;
    justify-content: center;
  }
  
  .gmb-badge {
    border-right: none;
    padding-right: 0;
    justify-content: center;
  }
  
  .proof-quote {
    padding-left: 0;
    padding-top: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .subpage-grid {
    grid-template-columns: 1fr;
  }
  
  .subpage-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .phone-nav, .nav-cta .btn {
    display: none;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box h2 {
    font-size: 28px;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
