/* === LEAN BODIES — RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --accent: #4A9EFF;
  --border: #222222;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

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

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

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #6ab3ff;
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--bg);
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 158, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-seo {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

/* === SOCIAL PROOF BAR === */
.social-proof {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.proof-item span {
  color: var(--accent);
  font-weight: 800;
}

/* === AEO PARAGRAPH === */
.aeo {
  padding: 60px 0 40px;
}

.aeo p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.7;
}

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

.section-alt {
  background: var(--bg-alt);
}

/* === ABOUT TEASER === */
.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser .about-image {
  aspect-ratio: 3/4;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.about-teaser .about-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* === SERVICES CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

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

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card .subtitle {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.pricing-block strong {
  color: var(--text);
  font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card .goal {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === SOCIAL CHANNELS === */
.social-channels {
  padding: 60px 0;
  background: var(--bg-alt);
  text-align: center;
}

.social-channels h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

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

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

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

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

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.bio-section .container {
  max-width: 800px;
}

.bio-section p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 60px 0;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.philosophy {
  padding: 60px 0;
  background: var(--bg-alt);
}

.philosophy .container {
  max-width: 800px;
  text-align: center;
}

.philosophy h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.philosophy p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.rates-section {
  padding: 80px 0;
  text-align: center;
}

.rates-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.rate-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  text-align: left;
}

.rate-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.rate-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* === SERVICES PAGE === */
.services-page .service-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.services-page .service-section:last-child {
  border-bottom: none;
}

.services-page .service-section h1,
.services-page .service-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.services-page .service-section .subheadline {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.services-page .service-section p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 28px;
}

.services-page .service-section ul {
  list-style: none;
  margin-bottom: 32px;
}

.services-page .service-section ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-page .service-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.faq-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === TESTIMONIALS PAGE === */
.feature-testimonial {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.feature-testimonial .quote {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

.feature-testimonial .author {
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-testimonial .goal {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.feature-testimonial .stars {
  color: var(--accent);
  font-size: 1.2rem;
}

.testimonial-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.google-reviews-banner {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-alt);
}

.google-reviews-banner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* === APPLY PAGE === */
.apply-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.apply-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.apply-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.apply-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.apply-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.apply-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

.calendly-note {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.calendly-note a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 80px;
}

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

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

.form-group label .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.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 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.secondary-contact {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.secondary-contact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-links a:hover { color: var(--accent); }

/* === PRIVACY PAGE === */
.privacy-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}

.privacy-content p,
.privacy-content ul {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
}

.privacy-content strong {
  color: var(--text);
}

/* === BLOG INDEX === */
.blog-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.blog-list {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.blog-card:first-child { padding-top: 0; }

.blog-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card h2 a:hover { color: var(--accent); }

.blog-card .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

/* === BLOG POST === */
.blog-post-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-post-content .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 48px 0 20px;
  color: var(--text);
}

.blog-post-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.blog-post-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post-content ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.blog-post-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-post-content a {
  color: var(--accent);
  text-decoration: underline;
}

.blog-post-content .cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.blog-post-content .cta-box p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.blog-post-content .author {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image-placeholder { aspect-ratio: 16/9; }

  .about-teaser .container { grid-template-columns: 1fr; }
  .about-teaser .about-image { aspect-ratio: 16/9; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-grid-2x3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: 1fr; }
  .apply-options { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-links { text-align: center; }

  .services-page .service-section { padding: 60px 0; }
  .feature-testimonial { padding: 60px 0; }
  .section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }
  .about-hero { padding: 120px 0 60px; }
  .apply-hero { padding: 120px 0 40px; }
  .blog-hero { padding: 120px 0 40px; }
}
