/* ═══════════════════════════════════════════════
   Brand-On — Diseño de Páginas Web
   Design System tokens from pencil-new.pen
   ═══════════════════════════════════════════════ */

:root {
  --bg-card: #FFFFFF;
  --bg-primary: #F6F6F1;
  --bg-secondary: #EBEBE6;
  --border-light: #DCDDDC;
  --border-medium: #C5C5C5;
  --font-primary: 'Outfit', sans-serif;
  --primary: #6B8E00;
  --primary-hover: #5A7800;
  --primary-light: rgba(107, 142, 0, 0.1);
  --radius-lg: 40px;
  --radius-md: 24px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 12px;
  --text-light: #838383;
  --text-main: #020101;
  --text-muted: #555555;
  --white: #FFFFFF;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  color: var(--text-main);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-light);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .separator { margin: 0 8px; }

/* ── Typography ── */
.text-primary { color: var(--primary); }
.italic { font-style: italic; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 16px;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255,255,255, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.pill { border-radius: var(--radius-pill); }
.dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(107, 142, 0, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(107, 142, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 142, 0, 0); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn.lg { padding: 16px 36px; font-size: 1.125rem; }
.btn.sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
  background-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--primary-light);
}
.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}
.btn-outline:hover {
  border-color: var(--text-main);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background-color: rgba(246, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { border-radius: var(--radius-sm); }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-main); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* ── Menu Toggle ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mob-link { font-size: 20px; font-weight: 600; }

/* ── Sections ── */
.section { padding: 100px 0; }
.bg-secondary { background: var(--bg-secondary); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 16px auto 0; }
.section-header .badge { margin-bottom: 20px; }

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-content .badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric-val { font-size: 1.75rem; font-weight: 800; color: var(--primary); line-height: 1; }
.metric-lbl { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }
.metric-divider { width: 1px; height: 40px; background-color: var(--border-light); }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border-light);
}
.main-card {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.chart-icon {
  width: 40px; height: 40px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.card-tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.card-body .big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.card-body .sub-text {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.mini-chart { display: flex; align-items: flex-end; gap: 12px; height: 100px; }
.bar {
  flex: 1;
  background-color: var(--bg-secondary);
  border-radius: 6px 6px 0 0;
  transition: height 1s ease-out;
}
.bar.highlight { background: var(--primary); }
.h-20 { height: 20%; } .h-40 { height: 40%; } .h-60 { height: 60%; }
.h-70 { height: 70%; } .h-90 { height: 90%; } .h-100 { height: 100%; }

.floating-card {
  position: absolute;
  top: 10%; right: -5%;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -15px); }
}
.icon-circle {
  width: 32px; height: 32px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.float-text strong { display: block; font-size: 0.875rem; }
.float-text span { font-size: 0.75rem; color: var(--text-light); }

/* ── IA Section ── */
.ia-content { max-width: 900px; margin: 0 auto; }
.ia-block { margin-bottom: 48px; }
.ia-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.ia-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparison-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--text-main);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.comparison-header > div { padding: 16px 20px; }
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row > div { padding: 14px 20px; }
.col-label { font-weight: 600; color: var(--text-main); }
.col-trad { color: var(--text-light); }
.col-us { color: var(--text-main); }
.highlight-cell { background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(107,142,0,0.08);
  transform: translateY(-2px);
}
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Process Grid ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}
.process-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.process-card.highlight-card {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.process-card.highlight-card .step-num { color: rgba(255,255,255,0.4); }
.process-card.highlight-card p { color: rgba(255,255,255,0.85); }
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 16px;
}
.process-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.process-note {
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-main);
  border-left: 4px solid var(--primary);
}

/* ── Timeline Grid ── */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
}
.timeline-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.timeline-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(107,142,0,0.1);
}
.timeline-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.timeline-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.timeline-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.note-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 24px;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-item:hover { transform: translateY(-2px); border-color: var(--primary); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(107,142,0,0.12);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-header h3 { font-size: 22px; font-weight: 700; }
.pricing-type { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.pricing-body { padding: 28px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.included::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}
.pricing-body .btn { width: 100%; }

/* ── Projects Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.project-preview {
  aspect-ratio: 3/2;
  background: var(--bg-secondary);
  overflow: hidden;
}
.project-preview img { width: 100%; height: 100%; object-fit: cover; }
.project-preview.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
  border: 2px dashed var(--border-medium);
  border-radius: 0;
}
.project-info { padding: 24px; }
.project-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.project-meta { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Contact Section ── */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.c-detail { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.c-icon { font-size: 20px; }

/* ── Form ── */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-primary);
  font-size: 15px;
  color: var(--text-main);
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--primary); }
.form-control.pill { border-radius: var(--radius-pill); }
textarea.form-control { border-radius: var(--radius-sm); resize: vertical; min-height: 100px; }
select.form-control { appearance: none; cursor: pointer; }

.checkbox-group { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input { margin-top: 2px; accent-color: var(--primary); }
.checkbox-label a { color: var(--primary); text-decoration: underline; }
.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: #FEE2E2;
  color: #B91C1C;
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.submit-btn.loading { opacity: 0.6; cursor: not-allowed; }

/* ── Thank You Overlay ── */
.thank-you-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(2,1,1,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.thank-you-overlay.visible { opacity: 1; pointer-events: all; }
.thank-you-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}
.ty-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 24px;
  background: rgba(246,246,241,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  display: none;
  justify-content: center;
}
.sticky-cta .btn { width: 100%; max-width: 400px; }

/* ── Footer ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.coming-soon { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .sticky-cta { display: flex; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-metrics { flex-direction: column; gap: 20px; align-items: center; }
  .metric { align-items: center; text-align: center; }
  .metric-divider { width: 60px; height: 1px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  .comparison-table { font-size: 12px; overflow-x: auto; }
  .comparison-header, .comparison-row { grid-template-columns: 1fr 1fr 1fr; }
  .comparison-header > div, .comparison-row > div { padding: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-container { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* Extra bottom padding for sticky CTA */
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}
