/*
Theme Name: Search Engine Boosters
Theme URI: https://searchengineboosters.com
Author: Search Engine Boosters
Author URI: https://searchengineboosters.com
Description: A high-performance dark SEO marketing theme with animated sections, service grids, results showcases, pricing tables, and FAQ accordion — designed to convert.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: searchengineboosters
Tags: marketing, seo, dark, one-page, business
*/

/* ======= CSS VARIABLES ======= */
:root {
  --black: #0A0A0F;
  --off-black: #111118;
  --dark: #1A1A26;
  --card: #1E1E2E;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text-primary: #F0EEF9;
  --text-secondary: #9B98B8;
  --text-muted: #5C5A78;
  --accent: #7C5CFC;
  --accent-light: #9B7DFF;
  --accent-glow: rgba(124,92,252,0.25);
  --accent-2: #00D9B5;
  --accent-2-glow: rgba(0,217,181,0.2);
  --accent-warm: #FF6B6B;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
}

p { font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ======= LAYOUT ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 120px 0; }

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 40px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border: 0.5px solid var(--border-hover);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}

/* ======= ORB BACKGROUNDS ======= */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent-glow); opacity: 0.6; }
.orb-2 { width: 400px; height: 400px; background: var(--accent-2-glow); opacity: 0.5; }
.orb-3 { width: 300px; height: 300px; background: rgba(124,92,252,0.15); opacity: 0.4; }

/* ======= NAVIGATION ======= */
#site-navigation {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
#site-navigation.scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo, .site-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.site-title a { color: inherit; }
.logo-accent { color: var(--accent); }

/* WordPress Menu */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-navigation ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 400;
}
.main-navigation ul li a:hover { color: var(--text-primary); }
.main-navigation ul li.cta-item a {
  padding: 10px 22px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.main-navigation ul li.cta-item a:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0.5px solid var(--border-hover);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

/* ======= HERO SECTION ======= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-section .orb-1 { top: -100px; right: -150px; }
.hero-section .orb-2 { bottom: -50px; left: -100px; }
.hero-section .orb-3 { top: 40%; left: 40%; }

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(124,92,252,0.12);
  border: 0.5px solid rgba(124,92,252,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-light);
  margin-bottom: 36px;
  font-weight: 400;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-section h1 {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}

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

.hero-stats {
  margin-top: 72px;
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ======= MARQUEE ======= */
.marquee-section {
  padding: 40px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
  background: var(--off-black);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.5; }

/* ======= SECTION HEADERS ======= */
.section-header { margin-bottom: 72px; }
.section-header h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--text-secondary); max-width: 500px; }
.section-header.centered { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.section-header.centered .eyebrow { justify-content: center; }

/* ======= SERVICES ======= */
.services-section { background: var(--off-black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 40px 36px;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: #222236; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.service-icon.purple { background: rgba(124,92,252,0.15); }
.service-icon.teal   { background: rgba(0,217,181,0.12); }
.service-icon.coral  { background: rgba(255,107,107,0.12); }
.service-icon.blue   { background: rgba(56,139,253,0.12); }
.service-icon.amber  { background: rgba(240,163,40,0.12); }
.service-icon.green  { background: rgba(63,185,80,0.12); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }

/* ======= PROCESS ======= */
.process-section { background: var(--black); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-steps { display: flex; flex-direction: column; gap: 8px; }
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  border: 0.5px solid transparent;
  transition: all 0.3s;
}
.process-step:hover, .process-step.active {
  background: var(--card);
  border-color: var(--border);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  padding-top: 2px;
  letter-spacing: 0.05em;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.process-visual {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.process-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--accent-glow);
  filter: blur(60px);
  border-radius: 50%;
}
.rank-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, var(--accent-light) 0%, rgba(124,92,252,0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.rank-label { font-size: 14px; color: var(--text-secondary); position: relative; z-index: 2; }
.rank-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.rank-stat {
  background: var(--dark);
  border-radius: 10px;
  padding: 16px 12px;
  border: 0.5px solid var(--border);
}
.rank-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.rank-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ======= RESULTS ======= */
.results-section { background: var(--off-black); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.result-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.result-card.featured {
  border-color: rgba(124,92,252,0.3);
  background: linear-gradient(135deg, var(--card) 0%, rgba(124,92,252,0.05) 100%);
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.result-card.featured::before, .result-card:hover::before { opacity: 1; }
.result-company {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 20px;
}
.result-metric {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.result-metric.green { color: var(--accent-2); }
.result-metric.purple { color: var(--accent-light); }
.result-desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; }
.result-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px;
  background: rgba(124,92,252,0.1);
  border: 0.5px solid rgba(124,92,252,0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent-light);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial:hover { border-color: var(--border-hover); }
.testimonial-stars { color: #F0A30A; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ======= PRICING ======= */
.pricing-section { background: var(--off-black); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(124,92,252,0.08) 0%, var(--card) 60%);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price-amount { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.04em; }
.price-currency { font-size: 20px; color: var(--text-muted); margin-bottom: 4px; }
.price-period { font-size: 14px; color: var(--text-muted); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,217,181,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  color: var(--accent-2);
  font-size: 11px;
}

/* ======= FAQ ======= */
.faq-section { background: var(--black); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 24px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.2s;
  gap: 20px;
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0.5px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-top: 16px; }
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ======= CTA SECTION ======= */
.cta-section {
  background: var(--off-black);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section .orb-1 { left: -100px; top: 50%; transform: translateY(-50%); }
.cta-section .orb-2 { right: -100px; bottom: 50%; transform: translateY(50%); }
.cta-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.cta-section > .container > p { font-size: 17px; color: var(--text-secondary); margin-bottom: 48px; position: relative; z-index: 2; }
.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-input {
  padding: 16px 20px;
  background: var(--card);
  border: 0.5px solid var(--border-hover);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  width: 300px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--accent); }

/* ======= FOOTER ======= */
.site-footer {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent-light); background: rgba(124,92,252,0.08); }

/* ======= WORDPRESS SPECIFIC ======= */
.wp-block-image img { border-radius: 12px; }
.alignwide { max-width: 1200px; }
.entry-content a { color: var(--accent-light); border-bottom: 1px solid rgba(155,125,255,0.3); transition: border-color 0.2s; }
.entry-content a:hover { border-color: var(--accent-light); }

/* ======= SCROLL ANIMATIONS ======= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .services-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-navigation { display: none; }
  .menu-toggle { display: block; }
  .hero-section h1 { font-size: 48px; }
  section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
