/* === LEAN BODIES — REDESIGNED PREMIUM STYLES === */

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

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-elevated: #1a1a1a;
  --text: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #8a8a8a;
  --accent: #C8262C;
  --accent-hover: #E0393F;
  --accent-dark: #5C1015;
  --border: #1f1f1f;
  --border-light: #2a2a2a;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-ui: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  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.25s ease;
}

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

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

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--text);
}

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

.logo img { height: 40px; width: auto; }

.logo-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

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

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.nav-desktop .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.mobile-toggle { display: none; }

.mobile-nav { display: none; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--accent-hover);
  color: var(--text);
  transform: translateY(-1px);
}

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

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

.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* === TYPOGRAPHY === */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

/* === 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); }

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

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200,38,44,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-content .label { margin-bottom: 24px; }

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-content h1 span { color: var(--accent); }

.hero-seo {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-image {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.4s ease;
}

.hero-image img:hover {
  filter: grayscale(0%) contrast(1);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  border: 1px dashed var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

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

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

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-item span {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.proof-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* === AEO SECTION === */
.aeo { padding: 60px 0; background: var(--bg-alt); }
.aeo p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; max-width: 800px; }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  margin-bottom: 60px;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

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

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-image .hero-image-placeholder { height: 500px; }

.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; }

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

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card .subtitle {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

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

.pricing-block {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  transition: border-color 0.3s ease;
}

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

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

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

.testimonial-card .author {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-card .goal {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === FEATURE TESTIMONIAL === */
.feature-testimonial {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-testimonial .goal {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-testimonial .author {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.feature-testimonial .author .stars { color: var(--accent); letter-spacing: 2px; font-size: 0.95rem; }

.feature-testimonial .quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 800px;
}

/* === SOCIAL CHANNELS === */
.social-channels { text-align: center; padding: 80px 0; }
.social-channels h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,38,44,0.07);
}

/* === GOOGLE REVIEWS BANNER === */
.google-reviews-banner {
  text-align: center;
  padding: 60px 0;
  background: var(--bg-alt);
}

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

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

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

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

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* === ABOUT HERO === */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200,38,44,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* === BIO SECTION === */
.bio-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
}

/* === STATS ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--bg-alt);
  padding: 100px 0;
  text-align: center;
}

.philosophy h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.philosophy p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

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

.rate-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  transition: border-color 0.3s ease;
}

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

.rate-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.rate-card p { color: var(--text-muted); font-size: 0.95rem; 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-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.services-page .subheadline {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

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

.services-page .service-section ul {
  list-style: none;
  margin: 32px 0;
  max-width: 600px;
}

.services-page .service-section ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  padding-left: 28px;
}

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

/* === FAQ === */
.faq-section { padding: 80px 0; }
.faq-section h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

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

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

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

.faq-item[open] summary::after { content: '\\2013'; }

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

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

/* === APPLY PAGE === */
.apply-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  text-align: center;
}

.apply-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.apply-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
  text-align: center;
  transition: border-color 0.3s ease;
}

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

.apply-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* === FORM === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

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

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

.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-success {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 4px;
}

.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text-muted); }

.calendly-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

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

.secondary-contact { text-align: center; padding: 80px 0; background: var(--bg-alt); }
.secondary-contact h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.contact-links a { color: var(--text-muted); font-size: 0.9rem; }
.contact-links a:hover { color: var(--accent); }

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

@media (max-width: 768px) {
  .testimonial-grid-2x3 { grid-template-columns: 1fr; }
}

/* === BLOG === */
.blog-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-list { padding: 60px 0; }

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

.blog-card:last-child { border-bottom: none; }

.blog-card h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.blog-card .meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

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

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.read-more:hover { color: var(--accent-hover); }

/* === PRIVACY === */
.privacy-content { padding: 60px 0; }
.privacy-content h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-secondary);
}

.privacy-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.privacy-content ul { list-style: disc; margin-left: 24px; margin-bottom: 20px; }
.privacy-content ul li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { height: 400px; order: -1; }
  .about-teaser .container { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-image .hero-image-placeholder { height: 350px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .container:first-child { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    padding: 80px 32px 32px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .mobile-nav.active { transform: translateX(0); }
  .mobile-nav .close-btn {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
  }
  .mobile-nav a {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .social-proof .container { justify-content: center; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .rates-section .rates-grid { grid-template-columns: 1fr; }
  .apply-options { grid-template-columns: 1fr; }
  .footer .container:first-child { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-content .hero-seo { margin: 0 auto 36px; }
  .about-content { text-align: center; }
  .about-content p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero-image { height: 300px; }
  .section { padding: 60px 0; }
  .testimonial-card { padding: 24px; }
  .service-card { padding: 32px; }
  .proof-item span { font-size: 1.4rem; }
}
