:root {
  --background: #f9fafb;
  --foreground: #1a1f35;
  --primary: #5070c8;
  --primary-dark: #3d5ab0;
  --primary-foreground: #ffffff;
  --accent: #3badd4;
  --muted: #f1f3f9;
  --muted-foreground: #6b7393;
  --border: #e0e5f0;
  --card: #ffffff;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 0.5rem;
  --bg-slate-50: #f8fafc;
  --footer-bg: #0f1225;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

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

/* ── Utilities ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--muted-foreground); }

.gradient-text {
  background-image: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
.btn-xl { padding: 0.875rem 2.5rem; font-size: 1.0625rem; }

.btn-premium {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(80,112,200,0.35);
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(80,112,200,0.45);
}

.btn-outline {
  background-color: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background-color: var(--muted); }

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { background-color: #f0f4ff; }

/* ── Navbar ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(80,112,200,0.3);
}
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 800; font-size: 1.125rem; line-height: 1.1; color: var(--foreground); }
.logo-subtitle {
  font-size: 0.6rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 600;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.phone-number { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.phone-label  { font-size: 0.6rem; color: var(--muted-foreground); letter-spacing: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,18,37,0.6);
  backdrop-filter: blur(4px);
}
.mobile-nav.open { display: flex; }
.mobile-nav-panel {
  background: var(--card);
  width: min(320px, 90vw);
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 4px 0 40px rgba(0,0,0,0.2);
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-links a {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links a:hover { color: var(--primary); }

/* ── Hero Section ───────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 7rem 0 8rem;
  background-color: var(--bg-slate-50);
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%235070c8' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(80,112,200,0.25);
  background: rgba(80,112,200,0.06);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  max-width: 860px;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Section Base ───────────────────────────────────── */
.section { padding: 6rem 0; }
.section-slate {
  background-color: var(--bg-slate-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark { background-color: var(--footer-bg); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--foreground); margin-bottom: 0.75rem; }
.section-header p  { color: var(--muted-foreground); font-size: 1.0625rem; }

/* ── Cards Grid ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }

.card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(80,112,200,0), rgba(80,112,200,0.04));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius);
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.card:hover::after { opacity: 1; }

.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--foreground); }
.card p   { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.65; }

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}
.card-link svg { transition: transform 0.25s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ── B2B Benefits ───────────────────────────────────── */
.benefit-list { display: flex; flex-direction: column; gap: 1.75rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.benefit-text h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--foreground); }
.benefit-text p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.benefit-visual {
  position: relative;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  background: var(--muted);
}
.benefit-visual img { width: 100%; height: 100%; object-fit: cover; }
.benefit-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.12), transparent);
  pointer-events: none;
}

/* ── CTA Section ────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.cta-section p  {
  font-size: 1.125rem;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-about p {
  color: #8b92b0;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.625rem; }
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
}
.footer-logo-name { font-weight: 800; font-size: 1.125rem; }

.footer h4 { font-size: 0.9375rem; margin-bottom: 1.25rem; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #8b92b0; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-address { font-style: normal; }
.footer-address p { color: #8b92b0; font-size: 0.875rem; line-height: 1.7; }
.footer-address span { color: #fff; font-weight: 600; display: block; margin-top: 0.75rem; margin-bottom: 0.125rem; }
.footer-address span:first-child { margin-top: 0; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #5a607a;
}
.softuria-credit {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* ── WhatsApp ────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 6px rgba(37,211,102,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-bounce 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.06);
  animation: none;
  box-shadow: 0 14px 36px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.2);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Sobre / About Page ──────────────────────────────── */
.page-hero {
  background-color: var(--bg-slate-50);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%235070c8' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900; color: var(--foreground); margin-bottom: 1.25rem; }
.page-hero p  { font-size: 1.1875rem; color: var(--muted-foreground); line-height: 1.75; }
.page-hero strong { color: var(--foreground); }

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ── Servicos Page ──────────────────────────────────── */
.servicos-hero {
  background: var(--footer-bg);
  padding: 5rem 0;
  text-align: center;
}
.servicos-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.servicos-hero p  { color: #8b92b0; font-size: 1.0625rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.card-dark {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(59,173,212,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.card-dark h3 { font-size: 1.375rem; color: #fff; margin-bottom: 0.75rem; transition: color 0.2s; }
.card-dark:hover h3 { color: var(--accent); }
.card-dark p  { font-size: 0.875rem; color: #8b92b0; line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.card-dark-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
  margin-top: auto;
  justify-content: flex-end;
}
.card-dark-link svg { transition: transform 0.25s; }
.card-dark:hover .card-dark-link svg { transform: translateX(4px); }

.card-dark-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.card-dark-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-dark:hover .card-dark-thumb img { transform: scale(1.04); }

/* ── Servico Detail Page ────────────────────────────── */
.detail-hero {
  background: var(--footer-bg);
  padding: 5rem 0 4rem;
  position: relative;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(59,173,212,0.3);
  background: rgba(59,173,212,0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.detail-hero h1 { color: #fff; font-size: clamp(1.875rem, 4vw, 3rem); max-width: 760px; margin-bottom: 1rem; }
.detail-hero p  { color: #8b92b0; font-size: 1.125rem; max-width: 640px; line-height: 1.7; }
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #8b92b0;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.detail-back:hover { color: var(--accent); }

.detail-body { padding: 5rem 0; }
.detail-content { max-width: 720px; }
.detail-content p { font-size: 1.0625rem; color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1.25rem; }

.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.detail-list-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.detail-list-box h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--foreground); }
.detail-list-box ul { display: flex; flex-direction: column; gap: 0.6rem; }
.detail-list-box li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.detail-list-box li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ── Service Detail Image ───────────────────────────── */
.detail-hero-img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  background: #fff;
}
.detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Contato Page ───────────────────────────────────── */
.contato-section {
  padding: 5rem 0;
  background: var(--footer-bg);
  flex: 1;
  position: relative;
}
.contato-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(80,112,200,0.1), transparent 60%);
  pointer-events: none;
}
.contato-section .container { position: relative; z-index: 1; }

.contact-info h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.contact-info > p { color: #8b92b0; font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2.5rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-item h4 { color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
.contact-item p  { color: #8b92b0; font-size: 0.9375rem; line-height: 1.6; }

.contact-form-panel {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-form-panel h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-panel > p { color: #8b92b0; font-size: 0.9375rem; margin-bottom: 2rem; }

.form-coming-soon {
  position: relative;
}
.form-fields { pointer-events: none; opacity: 0.45; display: flex; flex-direction: column; gap: 1rem; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label  { display: block; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0; margin-bottom: 0.4rem; }
.form-input  {
  width: 100%;
  height: 48px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.form-overlay {
  text-align: center;
  padding: 1.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .header-phone,
  .btn-hide-mobile { display: none !important; }

  .menu-toggle { display: flex; }

  .hero { padding: 4.5rem 0 6rem; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  .section { padding: 4rem 0; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .benefit-visual { height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .cta-section { padding: 5rem 0; }
  .cta-section h2 { font-size: 1.875rem; }

  .detail-cols { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
