/* =========================
   ESTILOS GERAIS
   ========================= */
:root {
  --bg-dark: #020617;
  --bg-darker: #000814;
  --bg-section-alt: #030b1f;
  --card-bg: #0b1120;
  --accent: #22c55e;
  --accent-soft: #4ade80;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.25);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
  --radius-lg: 18px;
  --radius-full: 999px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 45%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   HEADER / NAVBAR
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: all 0.18s ease;
}

.nav-link:hover {
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.9);
}

.nav-link-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #022c22;
  font-weight: 600;
}

.nav-link-cta:hover {
  filter: brightness(1.06);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 18px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1560493676-04071c5f467b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(226, 232, 240, 0.16) 0, transparent 50%),
    radial-gradient(circle at 80% 0, rgba(16, 185, 129, 0.16) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(2, 6, 23, 0.85));
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: var(--accent-soft);
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.25;
}

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

.hero p {
  margin-top: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #022c22;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
}

.hero-info {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-card {
  background: radial-gradient(circle at top left, #1e293b, #020617);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
  max-width: 320px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.6), transparent, rgba(56, 189, 248, 0.6));
  opacity: 0.7;
  z-index: -1;
}

.hero-card-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.hero-card li {
  margin-bottom: 0.25rem;
}

.hero-card-footer {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--accent-soft);
}

/* =========================
   SEÇÕES
   ========================= */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #000814 50%);
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.section-subtitle.center {
  text-align: center;
  margin: 0.25rem auto 0;
}

.section-grid {
  display: grid;
  gap: 2.2rem;
}

.sobre-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: flex-start;
}

.pill {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
}

/* =========================
   CARDS SERVIÇOS
   ========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.7);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   COMO FUNCIONA - STEPS
   ========================= */
.steps-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.step {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem 1.2rem;
  border: 1px solid var(--border-soft);
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   BENEFÍCIOS
   ========================= */
.benefits-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.benefit {
  background: rgba(15, 23, 42, 0.95);
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.benefit h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.benefit p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   PORTFÓLIO / PROJETOS
   ========================= */
.portfolio-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.3);
}

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

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.95) 0%,
    rgba(2, 6, 23, 0.7) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #fff;
}

.portfolio-overlay p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #022c22;
  font-weight: 600;
}

.portfolio-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.portfolio-cta p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text-main);
}

/* =========================
   REGIÃO
   ========================= */
.regiao-box {
  background: var(--card-bg);
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}

.regiao-box h3 {
  margin-top: 0;
  font-size: 0.95rem;
}

.regiao-box ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   CONTATO
   ========================= */
.contato-grid {
  display: grid;
  gap: 2rem;
}

.contact-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.2rem 0;
}

.contact-list a {
  color: var(--accent-soft);
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

.form-group label {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--accent);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.full-width {
  width: 100%;
  margin-top: 0.4rem;
}

.btn-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

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

/* =========================
   FOOTER
   ========================= */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.4rem 0 1.6rem;
  background: radial-gradient(circle at top, #020617 0, #000814 50%);
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner p {
  margin: 0.15rem 0;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-content: flex-start;
  }

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

@media (max-width: 780px) {
  .nav {
    position: absolute;
    top: 64px;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.97);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    min-width: 190px;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* =========================
   ESTATÍSTICAS
   ========================= */
.stats-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: #022c22;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

/* =========================
   SERVIÇOS REDESENHADOS
   ========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #022c22;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
}

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

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* =========================
   SISTEMA DE AVALIAÇÕES
   ========================= */
.review-form-container {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.review-form h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rating-container {
  margin: 1rem 0;
}

.rating-container label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-weight: 500;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.star {
  color: #4b5563;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.star:hover,
.star.active {
  color: #fbbf24;
}

.reviews-container {
  margin-top: 3rem;
}

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

.reviews-summary {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.rating-stars {
  font-size: 1.5rem;
}

.total-reviews {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info strong {
  color: var(--text-main);
  font-weight: 600;
  display: block;
}

.reviewer-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-rating {
  font-size: 1.2rem;
}

.review-content {
  margin-bottom: 1rem;
}

.review-content p {
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.review-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.star.filled {
  color: #fbbf24;
}

/* =========================
   DEPOIMENTOS ANTIGOS (mantidos para compatibilidade)
   ========================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info strong {
  color: var(--text-main);
  font-weight: 600;
  display: block;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================
   FOOTER REDESENHADO
   ========================= */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.footer-logo-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact strong {
  color: var(--text-main);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #022c22;
  border-color: var(--accent);
}

.footer-schedule p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-schedule strong {
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .review-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
