/* ===================================================================
   METCON NUTRITION — Mobile-First CSS (vaciadospro structure)
   Base: mobile | Breakpoints: 768px, 992px, 1024px
   Fonts: Outfit (headings), Inter (body)
   Brand: #0C71C3
   =================================================================== */

/* ===== VARIABLES & RESET ===== */
:root {
  --primary: #0C71C3;
  --primary-hover: #0a5fa3;
  --primary-rgb: 12, 113, 195;
  --success: #10b981;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --card-bg: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --header-bg: rgba(255, 255, 255, 0.88);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-shrink {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: var(--transition);
}

.header-shrink .nav-container {
  height: 58px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  display: block;
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.header-shrink .logo-icon {
  height: 42px;
  width: 42px;
}

/* Desktop nav: hidden on mobile */
.nav-menu {
  display: none;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Nav actions (right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone-btn {
  padding: 10px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
}

.phone-text {
  display: none;
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1;
}

.menu-toggle:hover {
  background-color: var(--bg-alt);
}

/* ===== DRAWER (left sidebar) ===== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: #ffffff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer__logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.drawer__close {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.drawer__close:hover {
  background: var(--primary-hover);
}

.drawer__close svg {
  stroke: #fff;
}

.drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.drawer__menu li {
  border-bottom: 1px solid var(--border);
}

.drawer__link {
  display: block;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.drawer__link:hover {
  color: var(--primary);
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.drawer__btn {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 60px;
  background: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.06), transparent 50%);
}

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

.hero-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
}

.hero-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-2px);
}

.trust-icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.trust-card:hover .trust-icon-wrapper {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.05) rotate(-3deg);
}

.trust-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-4px) scale(1.05) rotate(3deg);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link svg {
  transition: var(--transition);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ===== RESULTS ===== */
.results-section {
  padding: 60px 0;
  background-color: var(--bg-alt);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.result-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.result-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.result-item:hover img {
  transform: scale(1.05);
}

.result-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.result-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.result-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.result-item figcaption h3 {
  color: #fff;
  font-size: 16px;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 60px 0;
  background-color: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-headings);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  padding-left: 28px;
  position: relative;
  color: var(--text);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 18px;
  height: 18px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 18px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.pricing-btn {
  width: 100%;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  fill: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== BLOG ===== */
.blog-section {
  padding: 60px 0;
  background-color: var(--bg-alt);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card__content {
  padding: 20px;
}

.blog-card__content time {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.blog-card__content h3 {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.4;
}

.blog-more {
  text-align: center;
  margin-top: 32px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-card {
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: left;
}

.contact-method:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-method-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-method-value {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-detail-item svg {
  flex-shrink: 0;
  stroke: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand .logo-icon {
  border: none;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-links a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* ===== RESPONSIVE: 768px+ (Tablet) ===== */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-image img {
    height: 360px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .section-title {
    font-size: 34px;
  }

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

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

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-methods {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .contact-method {
    flex: 1;
    min-width: 220px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .phone-text {
    display: inline;
  }
}

/* ===== RESPONSIVE: 992px+ (Desktop) ===== */
@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-image img {
    height: 420px;
  }

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

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

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

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

  .services-section,
  .results-section,
  .steps-section,
  .pricing-section,
  .faq-section,
  .blog-section,
  .contact-section {
    padding: 80px 0;
  }
}

/* ===== RESPONSIVE: 1024px+ ===== */
@media (min-width: 1024px) {
  .nav-container {
    height: 80px;
  }

  .header-shrink .nav-container {
    height: 64px;
  }
}

/* ===== RESPONSIVE: small mobile ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .nav-phone-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .drawer {
    width: 85%;
  }
}
