/* ============================================
   Lucas Fuentes — Performance Marketing Consultant
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --background: hsl(0, 0%, 99%);
  --foreground: hsl(215, 35%, 12%);

  --card: hsl(0, 0%, 100%);

  --primary: hsl(215, 62%, 20%);
  --primary-mid: hsl(215, 58%, 28%);
  --primary-light: hsl(215, 50%, 38%);
  --primary-foreground: hsl(0, 0%, 100%);

  --surface: hsl(215, 22%, 96%);
  --surface-2: hsl(215, 18%, 91%);

  --muted: hsl(215, 14%, 48%);
  --muted-light: hsl(215, 12%, 62%);

  --accent: hsl(25, 95%, 55%);
  --accent-hover: hsl(25, 95%, 48%);
  --accent-foreground: hsl(0, 0%, 100%);

  --border: hsl(215, 18%, 88%);
  --border-strong: hsl(215, 18%, 78%);

  --shadow-sm: 0 1px 3px rgba(10, 22, 45, 0.06), 0 1px 2px rgba(10, 22, 45, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 22, 45, 0.08), 0 2px 6px rgba(10, 22, 45, 0.05);
  --shadow-lg: 0 12px 40px rgba(10, 22, 45, 0.12), 0 4px 12px rgba(10, 22, 45, 0.06);
  --shadow-xl: 0 20px 60px rgba(10, 22, 45, 0.18);

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 0.5rem;
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-slow);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

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

.logo img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--surface);
}

.mobile-menu-button {
  display: block;
  color: var(--foreground);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-button:hover { background-color: var(--surface); }

.nav-mobile {
  display: none;
  padding: 1rem 0 1.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

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

.nav-mobile .nav-link {
  display: block;
  text-align: left;
  padding: 0.75rem 0;
  width: 100%;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(32, 95%, 60%) 100%);
  color: white;
  box-shadow: 0 2px 10px rgba(220, 110, 20, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 110, 20, 0.38);
}

.btn-primary:active { transform: translateY(0); }

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Ghost button — for use on dark hero background */
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  background-color: var(--primary);
  /* Subtle data-grid dot pattern */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.04;
}

/* Edge vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 65% 40%, transparent 25%, rgba(8, 18, 40, 0.55) 100%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0 3.5rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1.125rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(40, 95%, 65%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.hero-stat-divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ============================================
   Brand Logos
   ============================================ */
.brand-logos {
  padding: 2.75rem 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand-logos-label {
  text-align: center;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.brand-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.brand-logo {
  color: var(--muted-light);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

.brand-logo:hover {
  color: var(--primary);
  background-color: var(--surface-2);
}

/* ============================================
   Card Component
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ============================================
   Section Shared
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--foreground);
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   Services Overview
   ============================================ */
.services-overview {
  padding: 6rem 0;
  background-color: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  position: relative;
}

.service-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-light);
  letter-spacing: 0.06em;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--accent) 0%, hsl(32, 95%, 62%) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(220, 110, 20, 0.22);
}

.card-icon svg { color: white; }

.card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--foreground);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.card-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 6rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 2rem;
}

.about-subtitle {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.625rem;
  letter-spacing: -0.01em;
}

.about-text {
  margin-bottom: 1.125rem;
  font-size: 0.9375rem;
  color: hsl(215, 20%, 32%);
  line-height: 1.85;
}

.about-highlight {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.75rem;
}

.about-highlight p {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* About Stats */
.about-stats-col { flex-shrink: 0; }

.about-credential {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.about-credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.125rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.about-credential-number {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-credential-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   Detailed Services
   ============================================ */
.detailed-services {
  padding: 6rem 0;
  background-color: var(--background);
}

.detailed-services-content {
  max-width: 72rem;
  margin: 0 auto;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-item { padding: 2.25rem; }

.service-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.service-item-description {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features { padding: 0; }

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-feature:last-child { border-bottom: none; }

.service-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-feature span {
  color: var(--foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Methodology */
.methodology-card {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border: none;
  color: white;
  box-shadow: var(--shadow-xl);
}

.methodology-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.methodology-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.methodology-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.methodology-step h4 {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.methodology-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ============================================
   Results Section
   ============================================ */
.results-section {
  padding: 6rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.case-study-card { padding: 2rem; }

/* Big metric at top */
.case-study-metric-hero {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--surface-2);
}

.case-study-big-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-study-big-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, hsl(32, 95%, 62%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(220, 110, 20, 0.22);
}

.case-study-icon svg { color: white; }

.case-study-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.case-study-section { margin-bottom: 0.875rem; }

.case-study-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.case-study-text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.case-study-results { padding: 0; }

.case-study-result {
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  line-height: 1.5;
}

.case-study-result::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.contact-content {
  max-width: 72rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form { padding: 2rem; }

.form-group { margin-bottom: 1.125rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--surface);
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: var(--transition);
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(26, 55, 95, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-light); }

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

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.contact-card { padding: 1.5rem; }

.contact-card-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border: none;
  color: white;
}

.contact-card-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.contact-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  width: 2.625rem;
  height: 2.625rem;
  background-color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(220, 110, 20, 0.28);
}

.contact-card-icon svg { color: white; }

.contact-card-icon-secondary {
  background-color: var(--surface-2);
  box-shadow: none;
}

.contact-card-icon-secondary svg { color: var(--primary); }

.contact-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.contact-card-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.75;
  line-height: 1.6;
}

.expect-list { padding: 0; }

.expect-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.5;
}

.expect-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.contact-link:hover { color: var(--primary-light); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.footer-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.footer-links { padding: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links button {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0;
}

.footer-links button:hover { color: white; }

.footer-email {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-block;
  margin-top: 0.75rem;
  transition: var(--transition);
}

.footer-email:hover { color: hsl(35, 95%, 65%); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.hidden { display: none; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 576px) {
  .hero-buttons { flex-direction: row; }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .hero-stat-divider { display: block; }

  .hero-stat { align-items: center; }
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }

  .nav-desktop { display: flex; }
  .mobile-menu-button { display: none; }

  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.125rem; }

  .section-title { font-size: 2.625rem; }

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

  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .about-text-col { flex: 1; min-width: 0; }

  .about-stats-col {
    flex-shrink: 0;
    width: 280px;
  }

  .methodology-grid { grid-template-columns: repeat(4, 1fr); }

  .results-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }
}

@media (min-width: 992px) {
  .hero-title { font-size: 4.25rem; }

  .hero-stats { gap: 3rem; }

  .hero-stat-number { font-size: 2rem; }

  .section-title { font-size: 2.875rem; }
}

@media (min-width: 1200px) {
  .container { padding: 0 3rem; }

  .hero-title { font-size: 4.625rem; }
}

/* ============================================
   Print
   ============================================ */
@media print {
  .header, .footer, .contact-section { display: none; }
}
