:root {
  --primary: #0A2540;
  --primary-hover: #0D2E50;
  --primary-2: #0D3060;
  --accent: #B8986F;
  --accent-hover: #a07e58;
  --accent-2: #9A7D58;
  --bg-light: #F8F9FA;
  --bg-card-hover: #F0F2F5;
  --text-main: #0A2540;
  --text-secondary: #4A5568;
  --text-muted: #6B7280;
  --text-soft: #9CA3AF;
  --border: #E2E8F0;
  --border-soft: #F0F2F5;
  --whatsapp: #25D366;
  --shadow-sm: 0 8px 24px rgba(10, 37, 64, .08);
  --shadow-md: 0 18px 42px rgba(10, 37, 64, .12);
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--primary); color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--accent);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.title {
  margin: 18px 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.75rem);
  line-height: 1.12;
  font-weight: 700;
}
.subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 300;
}
.lead {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 300;
}
.muted { color: var(--text-muted); }
.white-70 { color: rgba(255,255,255,.7); }
.white-75 { color: rgba(255,255,255,.75); }
.white-85 { color: rgba(255,255,255,.85); }
.white-50 { color: rgba(255,255,255,.5); }

.top-strip {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  padding: 10px 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  transition: all .3s ease;
  border-bottom: 1px solid rgba(226,232,240,.7);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: #fff; }
.navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--primary);
  border-radius: 12px;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 16px 32px;
}
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline-light {
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.10); }
.btn-glass { background: rgba(255,255,255,.10); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,.20); }
.btn-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}
.btn-link:hover { color: var(--accent); }

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
}
.mobile-panel.open { display: block; }
.mobile-links { display: flex; flex-direction: column; gap: 14px; }
.mobile-links a {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  font-size: 15px;
  font-weight: 500;
}
.mobile-links a.active { background: rgba(184,152,111,.12); color: var(--primary); }
.mobile-links .btn { margin-top: 6px; }

.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,37,64,.92) 0%, rgba(10,37,64,.75) 50%, rgba(10,37,64,.3) 100%),
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 28%),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-inner {
  position: relative;
  padding: 110px 0 96px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: 32px;
  align-items: end;
}
.hero h1 {
  margin: 18px 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: .95;
  font-weight: 700;
}
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 640px; color: rgba(255,255,255,.85); font-size: 20px; }
.hero p { max-width: 640px; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  letter-spacing: 1px;
}
.scroll-indicator span:last-child {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% {opacity:.3;} 50% {opacity:1;} }

.stats-grid, .cards-grid, .coverage-grid, .footer-grid, .values-grid, .team-grid {
  display: grid;
  gap: 28px;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat {
  text-align: center;
  padding: 10px 16px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(184,152,111,.4);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: var(--accent);
  transition: border-color .25s ease, transform .25s ease;
}
.stat:hover .stat-icon { border-color: var(--accent); transform: translateY(-3px); }
.stat-value {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 3vw, 3rem);
  color: #fff;
}
.stat-label {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-desc { margin: 0 auto; max-width: 200px; font-size: 12px; color: rgba(255,255,255,.52); }

.authority-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
.separator {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 24px auto 0;
}

.cards-grid.practice { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.card:hover { transform: translateY(-4px); background: var(--bg-card-hover); box-shadow: var(--shadow-sm); }
.card.featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
}
.card.featured:hover { background: linear-gradient(160deg, var(--primary-hover) 0%, #123d76 100%); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 22px;
}
.card.featured .card-icon { background: rgba(184,152,111,.2); color: var(--accent); }
.card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.card.featured .bullet-list li { color: rgba(255,255,255,.78); }
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease;
}
.inline-link:hover { color: var(--accent); }
.inline-link:hover i { transform: translateX(4px); }
.inline-link i { transition: transform .25s ease; }
.card.featured .inline-link { color: #fff; }
.card.featured .inline-link:hover { color: #fff; opacity: .9; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; position: relative; }
.step {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(184,152,111,.16);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { margin: 0 0 10px; font-size: 20px; }
.step p { margin: 0; color: var(--text-secondary); font-size: 14px; }

.why-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.why-card h3 { margin: 0 0 10px; font-size: 20px; }
.why-card p { margin: 0; color: var(--text-secondary); }

.coverage-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.coverage-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 30px;
  transition: all .3s ease;
}
.coverage-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.coverage-flag { font-size: 30px; margin-bottom: 16px; }
.coverage-card h3 { margin: 0 0 8px; font-size: 24px; }
.coverage-card p { margin: 0 0 6px; color: rgba(255,255,255,.75); }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: background .2s ease;
}
.faq-item:hover { background: #fbfcfd; }
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}
.faq-icon { font-size: 22px; transition: transform .25s ease; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-box h2 { margin: 0 0 10px; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); }
.cta-box p { margin: 0; color: rgba(255,255,255,.78); max-width: 700px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 18px; margin-top: 26px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-light);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}
.contact-card h3 { margin: 0 0 4px; font-size: 16px; }
.contact-card p { margin: 0; color: var(--text-secondary); }

.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 32px;
  border: 1px solid var(--border);
}
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  color: var(--text-main);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder { color: var(--text-soft); }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(184,152,111,.12); }
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); margin: 12px 0 0; }

.page-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,37,64,.96), rgba(13,48,96,.92)),
    radial-gradient(circle at top right, rgba(184,152,111,.18), transparent 25%);
  color: #fff;
}
.page-hero .container { padding: 110px 0 96px; }
.page-hero h1 {
  margin: 18px 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 3.75rem);
  line-height: 1.05;
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,.75); }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.visual-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, rgba(10,37,64,.18), rgba(10,37,64,.45)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  position: relative;
}
.visual-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  border-radius: var(--radius-full);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.values-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.value-card, .team-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.value-card h3, .team-card h3 { margin: 0 0 12px; font-size: 20px; }
.value-card p, .team-card p { margin: 0; color: var(--text-secondary); }
.team-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.team-photo {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(10,37,64,.94), rgba(13,48,96,.88));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: .5px;
}
.team-role { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.timeline-wrap {
  background: linear-gradient(135deg, rgba(10,37,64,.98), rgba(13,48,96,.95));
  color: #fff;
  border-radius: 24px;
  padding: 40px;
}
.timeline-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.timeline-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px;
}
.timeline-item h3 { margin: 0 0 10px; font-size: 24px; }
.timeline-item p { margin: 0 0 6px; color: rgba(255,255,255,.75); }

.service-list { display: grid; gap: 24px; }
.service-block {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-block:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.service-block:nth-child(even) .service-side:first-child { order: 2; }
.service-block:nth-child(even) .service-side:last-child { order: 1; }
.service-copy { padding: 34px; }
.service-copy h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
}
.service-copy p { margin: 0 0 22px; color: var(--text-secondary); }
.service-meta {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(184,152,111,.12);
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.service-side {
  min-height: 100%;
  display: flex;
}
.service-panel {
  width: 100%;
  padding: 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-panel h3 { margin: 0 0 16px; font-size: 22px; }
.service-panel .bullet-list li { color: rgba(255,255,255,.82); }
.service-panel .bullet-list li::before { background: #fff; }
.agenda-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.agenda-info {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  padding: 42px;
}
.agenda-info h2 { margin: 0 0 16px; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.6rem); }
.agenda-info ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.agenda-info li { padding-left: 26px; position: relative; color: rgba(255,255,255,.82); }
.agenda-info li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

.site-footer {
  background: #060E1C;
  color: #fff;
  padding: 72px 0 28px;
}
.footer-grid {
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 32px;
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 20px; }
.footer-brand p, .footer-col a, .footer-col p { color: rgba(255,255,255,.65); }
.footer-brand p { max-width: 360px; }
.footer-col h3 { font-size: 16px; margin: 0 0 18px; color: #fff; }
.footer-links { display: grid; gap: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.legal-links { display: flex; gap: 10px; flex-wrap: wrap; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 16px 32px rgba(37,211,102,.3);
  z-index: 60;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 34px rgba(37,211,102,.38); }

.legal-page .content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.legal-page h1, .legal-page h2 { font-family: 'Playfair Display', serif; color: var(--primary); }
.legal-page h1 { font-size: clamp(2.6rem, 4vw, 3.6rem); margin: 0 0 8px; }
.legal-page h2 { font-size: 1.7rem; margin: 24px 0 8px; }
.legal-page p, .legal-page li { color: var(--text-secondary); }

@media (max-width: 1100px) {
  .cards-grid.practice, .why-grid, .values-grid, .team-grid, .coverage-grid, .steps-grid, .stats-grid, .footer-grid, .timeline-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-grid, .split, .agenda-box, .service-block, .service-block:nth-child(even) { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-side:first-child,
  .service-block:nth-child(even) .service-side:last-child { order: initial; }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .header-actions .btn-primary { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .top-strip { display: none; }
  .section { padding: 72px 0; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .cta-box { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .hero-inner { padding-top: 86px; padding-bottom: 90px; }
  .hero h1 { line-height: 1; }
}
@media (max-width: 640px) {
  .cards-grid.practice, .why-grid, .values-grid, .team-grid, .coverage-grid, .steps-grid, .stats-grid, .footer-grid, .timeline-grid, .form-row { grid-template-columns: 1fr; }
  .card, .why-card, .value-card, .team-card, .contact-card, .form-card, .service-copy, .service-panel, .agenda-info { padding: 24px; }
  .page-hero .container { padding-top: 92px; padding-bottom: 70px; }
  .hero { min-height: auto; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn, .btn-sm { width: 100%; }
  .scroll-indicator { display: none; }
}
