/*
Theme Name: Scout Growth Co.
Theme URI: https://scoutgrowth.co
Author: Scout Growth Co.
Author URI: https://scoutgrowth.co
Description: Custom WordPress theme for Scout Growth Co. — a digital marketing agency specializing in SEO, lead generation, and web design.
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: scout-growth
*/

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

:root {
  --navy: #151D2F;
  --navy-light: #1C2740;
  --navy-mid: #243351;
  --white: #FFFFFF;
  --off-white: #F0F2F5;
  --gray: #8A95A8;
  --accent: #4AE8C1;
  --accent-dim: #3BC5A3;
  --accent-glow: rgba(74, 232, 193, 0.15);
  --gold: #E8C94A;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.accent { color: var(--accent); }
.gold { color: var(--gold); }

/* ========== ANIMATED ELEMENTS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 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; }

/* ========== NAVIGATION ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: rgba(21, 29, 47, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-nav.scrolled {
  background: rgba(21, 29, 47, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.nav-logo svg { flex-shrink: 0; filter: drop-shadow(0 0 12px rgba(74, 232, 193, 0.25)); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(74, 232, 193, 0.3);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 6px 0; transition: all 0.3s ease; border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.show {
    display: flex !important;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--white) !important;
  }
  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    display: block;
    padding: 14px 24px;
  }
  .nav-toggle { display: block; }
}

/* ========== HERO LOGO MARK ========== */
.hero-logo-mark {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-logo-mark.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-logo-mark svg {
  filter: drop-shadow(0 0 30px rgba(74, 232, 193, 0.3)) drop-shadow(0 0 60px rgba(74, 232, 193, 0.1));
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 232, 193, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 201, 74, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(74, 232, 193, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 232, 193, 0.25);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* ========== HERO RANK CARD ========== */
.hero-visual { position: relative; }
.rank-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.rank-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.rank-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.rank-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}
.rank-card-badge {
  background: rgba(74, 232, 193, 0.1);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rank-item:last-child { border: none; }
.rank-pos {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  min-width: 40px;
}
.rank-pos.gold { color: var(--gold); }
.rank-info { flex: 1; }
.rank-keyword { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.rank-domain { font-size: 12px; color: var(--gray); }
.rank-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.rank-change svg { width: 14px; height: 14px; }

/* Floating stats */
.float-stat {
  position: absolute;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-stat-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-stat-2 { bottom: 60px; left: -40px; animation-delay: 2s; }
.float-stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.float-stat-label { font-size: 11px; color: var(--gray); margin-top: 2px; letter-spacing: 0.5px; }

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.proof-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ========== SECTION SHARED ========== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 60px;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 0;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 232, 193, 0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ========== PROCESS ========== */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  opacity: 0.2;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ========== RESULTS ========== */
.results { padding: 120px 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.result-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.result-industry {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.result-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}
.result-stats { display: flex; gap: 32px; }
.result-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.result-stat-label { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars { margin-bottom: 28px; font-size: 24px; color: var(--gold); letter-spacing: 4px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}
.testimonial-author { font-size: 14px; color: var(--gray); }
.testimonial-author strong { color: var(--white); font-weight: 600; }

/* ========== CTA ========== */
.cta-section { padding: 120px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(74, 232, 193, 0.1);
  border-radius: 28px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 232, 193, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}
.cta-box p {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-box .btn-primary { font-size: 16px; padding: 18px 40px; position: relative; }

/* ========== FOOTER ========== */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--gray);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}
.footer-social a:hover { background: var(--accent); color: var(--navy); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .services-grid, .results-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .proof-inner { justify-content: center; }
  .cta-box { padding: 50px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .float-stat { display: none; }
  .result-stats { gap: 20px; }
}

/* ========== GRAIN OVERLAY ========== */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ========== FORMS ========== */
.scout-form { max-width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138, 149, 168, 0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 232, 193, 0.1);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A95A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }
.form-message {
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-message.success { background: rgba(74, 232, 193, 0.1); color: var(--accent); border: 1px solid rgba(74, 232, 193, 0.2); display: block; }
.form-message.error { background: rgba(232, 74, 74, 0.1); color: #E84A4A; border: 1px solid rgba(232, 74, 74, 0.2); display: block; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(74, 232, 193, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== ABOUT PAGE ========== */
.about-content { padding: 80px 0 120px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.about-text p:first-child { color: var(--white); font-size: 18px; }
.about-values { padding: 120px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}
.value-icon { font-size: 40px; margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.team-section { padding: 120px 0; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 700px; }
.team-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}
.team-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 0 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 28px;
  display: flex; align-items: center; gap: 20px;
}
.contact-icon {
  width: 50px; height: 50px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray); }
.contact-info-card a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.contact-info-card a:hover { color: var(--accent); }
.contact-form-box {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
}

/* ========== FREE AUDIT PAGE ========== */
.audit-section { padding: 0 0 120px; }
.audit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.audit-benefits { display: flex; flex-direction: column; gap: 24px; }
.audit-benefit {
  display: flex; align-items: start; gap: 16px;
}
.audit-check {
  width: 32px; height: 32px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 16px;
}
.audit-benefit h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.audit-benefit p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.audit-form-box {
  background: var(--navy-light);
  border: 1px solid rgba(74, 232, 193, 0.1);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.audit-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

/* ========== SERVICES PAGE ========== */
.services-detail { padding: 0 0 120px; }
.service-detail-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }
.service-detail-icon { font-size: 64px; text-align: center; }
.service-detail-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.service-detail-card p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.service-features { list-style: none; padding: 0; }
.service-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray);
  display: flex; align-items: center; gap: 10px;
}
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 800; }

/* ========== BLOG ========== */
.blog-section { padding: 0 0 120px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(74, 232, 193, 0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.blog-card-img {
  height: 200px;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 28px; }
.blog-card-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.blog-card h3 a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ========== 404 PAGE ========== */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 0; }
.page-404 h1 { font-family: var(--font-display); font-size: 120px; font-weight: 900; color: var(--accent); letter-spacing: -4px; margin-bottom: 16px; }
.page-404 h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.page-404 p { font-size: 17px; color: var(--gray); margin-bottom: 40px; }

/* ========== PRIVACY / TERMS ========== */
.legal-content { padding: 0 0 120px; }
.legal-content .entry-content { max-width: 800px; }
.legal-content h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 40px 0 16px; }
.legal-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

@media (max-width: 1024px) {
  .about-grid, .contact-grid, .audit-grid, .service-detail-card { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .values-grid, .blog-grid { grid-template-columns: 1fr; }
  .contact-form-box, .audit-form-box { padding: 32px 24px; }
  .service-detail-card { padding: 36px 28px; }
}

/* ========== WORDPRESS OVERRIDES ========== */
.wp-block-image img { max-width: 100%; height: auto; }
.entry-content { max-width: 800px; margin: 0 auto; }
.page-template-default .entry-content { padding: 120px 40px; }
