:root {
  --color-bg: #0a0a0f;
  --color-bg-alt: #12121a;
  --color-surface: #1a1a25;
  --color-surface-light: #222233;
  --color-accent: #4f6ef7;
  --color-accent-hover: #6b85ff;
  --color-accent-glow: rgba(79, 110, 247, 0.15);
  --color-text: #e8e8ed;
  --color-text-secondary: #9999aa;
  --color-text-muted: #666677;
  --color-white: #ffffff;
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body { font-family: var(--font-primary); background: var(--color-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; }

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

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

ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }

.header.scrolled { background: rgba(10, 10, 15, 0.92);  padding: 14px 0; border-bottom: 1px solid var(--color-border); }

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

.logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--color-white); letter-spacing: -0.02em; }

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

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

.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--color-text-secondary); transition: var(--transition); position: relative; }

.nav-links a:hover { color: var(--color-white); }

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

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

.nav-cta { font-size: 0.875rem; font-weight: 600; padding: 10px 24px; background: var(--color-accent); color: var(--color-white); border-radius: 100px; transition: var(--transition); border: none; cursor: pointer; }

.nav-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 6px 0; transition: var(--transition); border-radius: 2px; }

/* ─── HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }

.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 110, 247, 0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(79, 110, 247, 0.05) 0%, transparent 60%); pointer-events: none; }

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%); pointer-events: none; }

.hero .container { position: relative; z-index: 1; text-align: center; max-width: 860px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: var(--color-accent-glow); border: 1px solid rgba(79, 110, 247, 0.2); border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin-bottom: 32px; letter-spacing: 0.05em; text-transform: uppercase; }

.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--color-white); margin-bottom: 24px; }

.hero h1 .highlight { background: linear-gradient(135deg, var(--color-accent), #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero p { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--color-text-secondary); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }

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

.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--color-accent); color: var(--color-white); font-family: var(--font-primary); font-size: 1rem; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: var(--transition); }

.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79, 110, 247, 0.4); }

.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: transparent; color: var(--color-text); font-family: var(--font-primary); font-size: 1rem; font-weight: 500; border: 1px solid var(--color-border-hover); border-radius: 100px; cursor: pointer; transition: var(--transition); }

.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-white); background: rgba(79, 110, 247, 0.05); }

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ─── TRUST BAR ─── */
.trust-bar { padding: 60px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

.trust-bar p { text-align: center; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 32px; }

.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.4; }

.trust-logos svg { height: 28px; width: auto; fill: var(--color-text-secondary); transition: var(--transition); }

.trust-logos svg:hover { opacity: 1; fill: var(--color-text); }

.trust-logo-item { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-secondary); display: flex; align-items: center; gap: 8px; transition: var(--transition); }

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

.trust-logo-icon { width: 20px; height: 20px; border-radius: 4px; background: var(--color-surface-light); display: flex; align-items: center; justify-content: center; }

/* ─── SECTIONS ─── */
section { padding: 100px 0; }

.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-accent); margin-bottom: 16px; }

.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; color: var(--color-white); margin-bottom: 16px; line-height: 1.15; }

.section-subtitle { font-size: 1.05rem; color: var(--color-text-secondary); max-width: 560px; line-height: 1.7; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-header .section-subtitle { margin: 0 auto; }

/* ─── SERVICES ─── */
.services { background: var(--color-bg-alt); }

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

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

.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--color-accent), #8b5cf6); opacity: 0; transition: var(--transition); }

.service-card:hover { border-color: var(--color-border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

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

.service-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--color-accent-glow); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--color-accent); }

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--color-white); margin-bottom: 12px; }

.service-card p { font-size: 0.925rem; color: var(--color-text-secondary); margin-bottom: 24px; line-height: 1.6; }

.service-link { font-size: 0.875rem; font-weight: 600; color: var(--color-accent); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }

.service-link:hover { gap: 10px; }

/* ─── STATS ─── */
.stats { position: relative; }

.stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(79, 110, 247, 0.06) 0%, transparent 70%); pointer-events: none; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }

.stat-item { text-align: center; padding: 40px 20px; }

.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--color-white); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1; }

.stat-number .accent { color: var(--color-accent); }

.stat-label { font-size: 0.9rem; color: var(--color-text-secondary); }

.stat-divider { width: 1px; background: var(--color-border); align-self: stretch; }

/* ─── HOW IT WORKS ─── */
.how-it-works { background: var(--color-bg-alt); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }

.step-card { text-align: center; padding: 48px 32px; position: relative; }

.step-number { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--color-accent-glow); line-height: 1; margin-bottom: 24px; background: linear-gradient(180deg, rgba(79,110,247,0.2) 0%, rgba(79,110,247,0.02) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.step-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--color-white); margin-bottom: 12px; }

.step-card p { font-size: 0.925rem; color: var(--color-text-secondary); line-height: 1.6; }

.step-connector { position: absolute; top: 50%; right: -16px; width: 32px; height: 2px; background: var(--color-border); }

.step-connector::after { content: ''; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-right: 2px solid var(--color-accent); border-top: 2px solid var(--color-accent); transform: rotate(45deg); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-content .section-subtitle { margin-bottom: 24px; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.about-feature { display: flex; gap: 16px; align-items: flex-start; }

.about-feature-icon { width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius-sm); background: var(--color-accent-glow); display: flex; align-items: center; justify-content: center; color: var(--color-accent); }

.about-feature h4 { font-size: 0.95rem; font-weight: 600; color: var(--color-white); margin-bottom: 4px; }

.about-feature p { font-size: 0.85rem; color: var(--color-text-secondary); }

.about-visual { position: relative; }

.about-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 48px; position: relative; }

.about-card-stat { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--color-accent); margin-bottom: 8px; }

.about-card-text { font-size: 1rem; color: var(--color-text-secondary); margin-bottom: 32px; }

.about-card-bar { height: 4px; background: var(--color-surface-light); border-radius: 4px; overflow: hidden; }

.about-card-bar-fill { height: 100%; width: 87%; background: linear-gradient(90deg, var(--color-accent), #8b5cf6); border-radius: 4px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--color-bg-alt); }

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

.testimonial-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 40px 32px; transition: var(--transition); }

.testimonial-card:hover { border-color: var(--color-border-hover); }

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #f59e0b; }

.testimonial-text { font-size: 0.95rem; color: var(--color-text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent), #8b5cf6); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--color-white); }

.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--color-white); }

.testimonial-role { font-size: 0.8rem; color: var(--color-text-muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: none; border: none; cursor: pointer; font-family: var(--font-primary); font-size: 1.05rem; font-weight: 600; color: var(--color-white); text-align: left; transition: var(--transition); }

.faq-question:hover { color: var(--color-accent); }

.faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 16px; }

.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--color-text-secondary); transition: var(--transition); border-radius: 1px; }

.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }

.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }

.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.faq-answer-inner { padding: 0 0 24px; font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.7; }

/* ─── FINAL CTA ─── */
.final-cta { background: var(--color-bg-alt); text-align: center; padding: 120px 0; position: relative; overflow: hidden; }

.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79, 110, 247, 0.08) 0%, transparent 70%); pointer-events: none; }

.final-cta .container { position: relative; z-index: 1; }

.final-cta .section-title { margin-bottom: 20px; }

.final-cta .section-subtitle { margin: 0 auto 40px; }

/* ─── FOOTER ─── */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--color-border); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }

.footer-brand .logo { margin-bottom: 16px; display: inline-block; }

.footer-brand p { font-size: 0.875rem; color: var(--color-text-secondary); max-width: 280px; line-height: 1.6; }

.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); margin-bottom: 20px; }

.footer-col a { display: block; font-size: 0.875rem; color: var(--color-text-secondary); margin-bottom: 12px; transition: var(--transition); }

.footer-col a:hover { color: var(--color-white); }

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

.footer-bottom p { font-size: 0.8rem; color: var(--color-text-muted); }

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

.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--color-surface); display: flex; align-items: center; justify-content: center; color: var(--color-text-secondary); transition: var(--transition); }

.footer-social a:hover { background: var(--color-accent); color: var(--color-white); }

.footer-social svg { width: 16px; height: 16px; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 1; transform: translateY(30px); animation: revealFallback 0.8s ease forwards; transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 15, 0.98); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 1001; }
  
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  
  .mobile-toggle { display: block; z-index: 1001; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 24px; }
}

/* ===== v58 SUBPAGE COMPATIBILITY LAYER ===== */
/* Old classes restyled for new dark premium theme */

/* --- SITE HEADER (old class) maps to new .header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  background: rgba(10,10,15,0.85); 
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header.scrolled {
  background: rgba(10,10,15,0.95); padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* Logo text (old style) */
.logo-text { display: flex; gap: 6px; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 1.2rem; }
.logo-text .get { color: #e8e8ed; }
.logo-text .clicks { color: #4f6ef7; }
.logo-text .marketing { color: #9999aa; font-weight: 500; font-size: 0.9rem; }
.logo img { display: block; height: 55px; width: auto; }

/* Hamburger (old class) */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #e8e8ed;
  margin: 6px 0; transition: 0.3s cubic-bezier(0.4,0,0.2,1); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* Nav links open state */
.nav-links.open { display: flex !important; position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; background: rgba(10, 10, 15, 0.98) !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; gap: 32px !important; z-index: 99999 !important; }

/* btn-coral maps to btn-primary */
.btn-coral, a.btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; background: #4f6ef7; color: #fff;
  font-family: 'Inter',sans-serif; font-size: 0.875rem; font-weight: 600;
  border: none; border-radius: 100px; cursor: pointer;
  transition: 0.3s cubic-bezier(0.4,0,0.2,1); text-decoration: none;
}
.btn-coral:hover, a.btn-coral:hover {
  background: #6b85ff; transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(79,110,247,0.35); color: #fff;
}

/* Generic .btn */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-family: 'Inter',sans-serif; font-size: 1rem; font-weight: 600;
  border: none; border-radius: 100px; cursor: pointer;
  transition: 0.3s cubic-bezier(0.4,0,0.2,1); text-decoration: none;
}
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* .read-more link */
.read-more {
  font-size: 0.875rem; font-weight: 600; color: #4f6ef7;
  display: inline-flex; align-items: center; gap: 6px;
  transition: 0.3s; text-decoration: none;
}
.read-more:hover { gap: 10px; color: #6b85ff; }

/* Hero background overlay */
.hero-background {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,110,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
  justify-content: center;
}
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-number {
  font-family: 'Outfit',sans-serif; font-size: 2rem; font-weight: 700;
  color: #fff; display: block;
}
.hero-stats .stat-label { font-size: 0.85rem; color: #9999aa; }

/* Section + section-light */
.section { padding: 100px 0; position: relative; }
.section-light { background: var(--color-bg-alt, #12121a); }

/* Section badge */
.section-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: #4f6ef7; margin-bottom: 16px;
}

/* Content grid (2 col) */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* Process steps */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px;
}
.process-step {
  background: #1a1a25; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 32px; transition: 0.3s;
}
.process-step:hover {
  border-color: rgba(255,255,255,0.12); transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

/* Breadcrumb */
.breadcrumb, .breadcrumb-nav {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  font-size: 0.85rem;
}
.breadcrumb a { color: #9999aa; text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: #e8e8ed; }
.breadcrumb-container { max-width: 1200px; margin: 0 auto; padding: 16px 24px; }
.breadcrumb-item { color: #9999aa; }
.breadcrumb-separator { margin: 0 8px; color: #666677; }

/* Page header */
.page-header {
  padding: 120px 0 60px; background: #0a0a0f; position: relative;
}
.page-header-content { position: relative; z-index: 1; }

/* Blog grid + cards */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 24px;
}
.blog-card {
  background: #1a1a25; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden; transition: 0.3s;
  text-decoration: none; display: block; color: inherit;
}
.blog-card:hover {
  border-color: rgba(255,255,255,0.12); transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-card-content h3 {
  font-family: 'Outfit',sans-serif; font-size: 1.15rem; font-weight: 600;
  color: #fff; margin-bottom: 8px;
}
.blog-card-content p { font-size: 0.9rem; color: #9999aa; line-height: 1.6; }
.blog-meta { font-size: 0.8rem; color: #666677; margin-bottom: 8px; }

/* Contact form */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 600;
  color: #e8e8ed; font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: #12121a; color: #e8e8ed;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
  font-size: 1rem; font-family: 'Inter',sans-serif;
  transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #4f6ef7;
  box-shadow: 0 0 0 3px rgba(79,110,247,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: #12121a; color: #e8e8ed; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #666677; }

/* CTA section */
.cta-section {
  background: #12121a; text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79,110,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Outfit',sans-serif; font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; color: #fff; margin-bottom: 16px; position: relative;
}
.cta-section p {
  font-size: 1.05rem; color: #9999aa; max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7; position: relative;
}
.cta-content { position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-guarantee { font-size: 0.85rem; color: #666677; margin-top: 16px; position: relative; }

/* Footer (old classes) */
.site-footer {
  padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.06);
  background: #0a0a0f;
}
.footer-content {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto 64px; padding: 0 24px;
}
.footer-section h3 {
  font-family: 'Outfit',sans-serif; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: #e8e8ed;
  margin-bottom: 20px;
}
.footer-section p { font-size: 0.875rem; color: #9999aa; line-height: 1.6; margin-bottom: 8px; }
.footer-section a { color: #9999aa; text-decoration: none; transition: 0.3s; }
.footer-section a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { display: block; font-size: 0.875rem; color: #9999aa; margin-bottom: 12px; transition: 0.3s; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-logo { font-family: 'Outfit',sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-logo span { color: #4f6ef7; }
.footer-contact p { font-size: 0.875rem; color: #9999aa; }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}
.footer-bottom p { font-size: 0.8rem; color: #666677; text-align: center; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 10px 0 10px 20px; border-left: 2px solid #4f6ef7;
  margin-bottom: 8px; color: #e8e8ed; font-size: 0.95rem;
}

/* Cookie consent */
.cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100198;
  background: #1a1a25; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.cookie-consent-content {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
.cookie-consent-text p { font-size: 0.85rem; color: #9999aa; margin: 0; }
.cookie-consent-buttons { display: flex; gap: 8px; }
.cookie-btn {
  padding: 8px 20px; border-radius: 8px; font-weight: 600; cursor: pointer;
  border: none; font-size: 0.85rem; transition: 0.3s;
}
.cookie-accept { background: #4f6ef7; color: #fff; }
.cookie-accept:hover { background: #6b85ff; }
.cookie-decline { background: transparent; color: #9999aa; border: 1px solid rgba(255,255,255,0.12); }
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* Fade in up animation */
.fade-in-up {
  animation: fadeInUpCompat 0.6s ease forwards;
}
@keyframes fadeInUpCompat {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Highlight text */
.highlight {
  background: linear-gradient(135deg, #4f6ef7, #8b5cf6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Body offset for fixed header */
body { padding-top: 0; }

/* Service link in old cards */
.service-link, a .service-link {
  font-size: 0.875rem; font-weight: 600; color: #4f6ef7;
  display: inline-flex; align-items: center; gap: 6px; transition: 0.3s;
}
.service-link:hover { gap: 10px; }

/* Override old inline styles that use old colors */
.site-footer h3, .site-footer h4 { color: #e8e8ed !important; }
.site-footer p, .site-footer a { color: #9999aa; }
.site-footer a:hover { color: #fff !important; }

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .cookie-consent-content { flex-direction: column; text-align: center; }
}

/* ===== END v58 COMPATIBILITY ===== */

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar { 
  display: none; 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: #4f6ef7; 
  padding: 12px 20px; 
  text-align: center; 
  z-index: 1002; 
}
.mobile-cta-bar a { 
  color: #fff; 
  font-weight: 600; 
  font-size: 1rem; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
}
@media(max-width:768px){ 
  .mobile-cta-bar { display: block; } 
}
EOFcat > add_breadcrumbs.sh << 'EOF'
#!/bin/bash
echo "Adding BreadcrumbList schema to HTML files..."

# Skip index.html and 404.html as requested
for file in *.html; do
    if [[ "$file" == "index.html" || "$file" == "404.html" ]]; then
        continue
    fi
    
    # Skip if already has BreadcrumbList schema
    if grep -q "BreadcrumbList" "$file"; then
        echo "Skipping $file - already has BreadcrumbList"
        continue
    fi
    
    echo "Processing $file..."
    
    # Backup original
    cp "$file" "audit-fixes-backup/${file}.breadcrumb-backup"
    
    # Determine breadcrumb based on filename
    breadcrumb=""
    
    # Blog files
    if [[ "$file" == blog/* ]]; then
        page_name=$(basename "$file" .html | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
        breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://getclicksmarketing.com/blog/"},{"@type":"ListItem","position":3,"name":"'$page_name'"}]}'
    
    # SEO Services pages
    elif [[ "$file" == *"seo-services"* ]]; then
        if [[ "$file" == "seo-services.html" ]]; then
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Services","item":"https://getclicksmarketing.com/services.html"},{"@type":"ListItem","position":3,"name":"SEO Services"}]}'
        else
            city=$(echo "$file" | sed 's/seo-services-//g' | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"SEO Services","item":"https://getclicksmarketing.com/seo-services.html"},{"@type":"ListItem","position":3,"name":"'$city' NJ"}]}'
        fi
    
    # Google Ads Management pages
    elif [[ "$file" == *"google-ads-management"* ]]; then
        if [[ "$file" == "google-ads-management.html" ]]; then
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Services","item":"https://getclicksmarketing.com/services.html"},{"@type":"ListItem","position":3,"name":"Google Ads Management"}]}'
        else
            city=$(echo "$file" | sed 's/google-ads-management-//g' | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Google Ads Management","item":"https://getclicksmarketing.com/google-ads-management.html"},{"@type":"ListItem","position":3,"name":"'$city' NJ"}]}'
        fi
    
    # Website Design pages
    elif [[ "$file" == *"website-design"* ]]; then
        if [[ "$file" == "website-design.html" ]]; then
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Services","item":"https://getclicksmarketing.com/services.html"},{"@type":"ListItem","position":3,"name":"Website Design"}]}'
        else
            city=$(echo "$file" | sed 's/website-design-//g' | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Website Design","item":"https://getclicksmarketing.com/website-design.html"},{"@type":"ListItem","position":3,"name":"'$city' NJ"}]}'
        fi
    
    # Social Media Marketing pages
    elif [[ "$file" == *"social-media-marketing"* ]]; then
        if [[ "$file" == "social-media-marketing.html" ]]; then
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Services","item":"https://getclicksmarketing.com/services.html"},{"@type":"ListItem","position":3,"name":"Social Media Marketing"}]}'
        else
            city=$(echo "$file" | sed 's/social-media-marketing-//g' | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
            breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Social Media Marketing","item":"https://getclicksmarketing.com/social-media-marketing.html"},{"@type":"ListItem","position":3,"name":"'$city' NJ"}]}'
        fi
    
    # Location-specific county pages
    elif [[ "$file" == *"county"* ]]; then
        county=$(echo "$file" | sed 's/-nj-digital-marketing.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
        breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Locations","item":"https://getclicksmarketing.com/locations.html"},{"@type":"ListItem","position":3,"name":"'$county'"}]}'
    
    # Other city marketing pages
    elif [[ "$file" == *"-marketing.html" ]]; then
        city=$(echo "$file" | sed 's/-nj-marketing.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
        breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Locations","item":"https://getclicksmarketing.com/locations.html"},{"@type":"ListItem","position":3,"name":"'$city' NJ Marketing"}]}'
    
    # Industry-specific marketing pages
    elif [[ "$file" == *"electrical-marketing"* || "$file" == *"hvac-marketing"* || "$file" == *"plumbing-marketing"* || "$file" == *"roofing-marketing"* ]]; then
        service=$(echo "$file" | cut -d'-' -f1 | sed 's/\b\w/\U&/g')
        county=$(echo "$file" | sed 's/.*-marketing-//g' | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
        breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"Industry Marketing","item":"https://getclicksmarketing.com/services.html"},{"@type":"ListItem","position":3,"name":"'$service' Marketing '$county'"}]}'
    
    # Default breadcrumb for other pages
    else
        page_name=$(echo "$file" | sed 's/.html//g' | sed 's/-/ /g' | sed 's/\b\w/\U&/g')
        breadcrumb='{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://getclicksmarketing.com/"},{"@type":"ListItem","position":2,"name":"'$page_name'"}]}'
    fi
    
    # Insert breadcrumb schema before </head>
    if [[ -n "$breadcrumb" ]]; then
        sed -i "s|</head>|<script type=\"application/ld+json\">$breadcrumb</script>\n</head>|g" "$file"
        echo "Added breadcrumb to $file"
    fi
done

echo "Breadcrumb addition complete!"
EOFchmod +x add_breadcrumbs.sh
./add_breadcrumbs.sh | head -50
ls -la add_breadcrumbs.sh
head -20 electrical-marketing-hudson-county-nj.html | grep -i breadcrumb
tail -5 css/style.min.css
Control+Cecho "Ready to continue"
/* Get Clicks Marketing - Navigation v42 - Tue Mar 10 16:16:43 EDT 2026 */
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
