@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
  --navy:       #103454;
  --navy-dark:  #0b2338;
  --navy-mid:   #164668;
  --gold:       #E8D2B5;
  --gold-light: #F0E4CC;
  --gold-dark:  #C4A882;
  --white:      #FFFFFF;
  --off-white:  #EEF7FF;
  --gray-light: #EEECE8;
  --gray:       #7A7A7A;
  --gray-dark:  #3D3D3D;
  --text:       #1A1A1A;
  --font:       'Mulish', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }

/* ══════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════ */
.announce-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 9px 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.announce-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.announce-bar .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.announce-bar a {
  color: var(--gold-light);
  font-weight: 700;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { height: 48px; width: auto; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone-wrap {
  text-align: right;
}

.header-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.header-phone-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  display: block;
  line-height: 1;
}

.header-phone-num:hover { color: var(--gold-light); transition: color 0.2s; }

.btn-header {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 3px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-header:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  background: linear-gradient(118deg, var(--navy-dark) 0%, var(--navy) 55%, #1a5580 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 32px 80px;
}

/* Subtle diagonal lines pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(200,169,74,0.04) 60px,
    rgba(200,169,74,0.04) 61px
  );
  pointer-events: none;
}

/* Gold accent bar top */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow-line {
  display: none;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-pill svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ══════════════════════════════
   LEAD FORM CARD
══════════════════════════════ */
.form-card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
  overflow: hidden;
}

.form-card-header {
  background: var(--navy);
  padding: 22px 28px;
  position: relative;
}

.form-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 1px;
  background: rgba(200,169,74,0.3);
}

.form-card-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.form-card-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.form-card-body { padding: 24px 28px 28px; }

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

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DDD;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23103454' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16,52,84,0.08);
}

.form-group textarea { resize: vertical; min-height: 72px; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: ' →';
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,74,0.4);
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}

.form-guarantee svg { flex-shrink: 0; color: var(--navy); opacity: 0.5; }

.form-guarantee p {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
}

/* ══════════════════════════════
   TRUST STRIP
══════════════════════════════ */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  position: relative;
}

.trust-item:last-child { border-right: none; }

.trust-item-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}

.trust-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ══════════════════════════════
   FOUNDERS SECTION
══════════════════════════════ */
.founders {
  padding: 80px 32px;
  background: var(--white);
}

.founders-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-tag-line {
  display: none;
}

.section-tag-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.founders h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.founders p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 14px;
}

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

.attorney-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 36px 24px 28px;
  border-top: 3px solid var(--gold);
  text-align: center;
}

.attorney-name { font-size: 22px !important; }
.attorney-title { font-size: 14px; }

.attorney-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  overflow: hidden;
  border: 4px solid var(--gold);
}

.attorney-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.attorney-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.attorney-title {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.attorney-meet-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-dark);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.attorney-card[data-attorney] { cursor: pointer; }
.attorney-card[data-attorney]:hover .attorney-meet-btn { color: var(--navy); }

/* ══════════════════════════════
   ATTORNEY MODAL
══════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,28,48,0.72);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 6px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(10,28,48,0.3);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--off-white);
  border-radius: 6px 6px 0 0;
}

.modal-atty-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.modal-atty-photo[src=""] { visibility: hidden; }

.modal-atty-info h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.modal-atty-info p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.modal-body {
  padding: 22px 24px 26px;
}

.modal-body > h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.1px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  padding: 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.modal-close:hover { color: var(--navy); background: var(--gray-light); }

@media (max-width: 520px) {
  .modal-header { flex-direction: column; text-align: center; }
  .modal-body { padding: 18px 16px 22px; }
}

/* ══════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--navy-dark);
  padding: 12px 16px 16px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(10,28,48,0.25);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}
.sticky-cta-call {
  flex: 1;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 13px 10px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sticky-cta-form {
  flex: 1;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 13px 10px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
  padding: 80px 32px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(200,169,74,0.03) 80px,
    rgba(200,169,74,0.03) 81px
  );
}

.why-us-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us .section-tag-text { color: var(--gold); }

.why-us h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 48px;
  max-width: 640px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
  transition: background 0.2s;
}

.why-card:hover { background: rgba(255,255,255,0.07); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(200,169,74,0.12);
  border: 1px solid rgba(200,169,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ══════════════════════════════
   RESULTS
══════════════════════════════ */
.results {
  padding: 80px 32px;
  background: var(--off-white);
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.results h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.results-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 44px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.result-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.result-type {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.results-disclaimer {
  font-size: 12px;
  color: var(--gray);
  margin-top: 20px;
  font-style: italic;
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews {
  padding: 80px 32px;
  background: var(--white);
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 44px;
}

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

.review-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.review-location {
  font-size: 12px;
  color: var(--gray);
}

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band {
  background: var(--gold);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(16,52,84,0.05) 40px,
    rgba(16,52,84,0.05) 41px
  );
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 17px;
  color: rgba(16,52,84,0.75);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(16,52,84,0.08); transform: translateY(-2px); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

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

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { max-width: 500px; }
  .hero { padding: 48px 20px 56px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .founders-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 16px; height: 64px; }
  .logo img { height: 38px; }
  .header-phone-num { font-size: 18px; }
  .btn-header { display: none; }
  .announce-bar { font-size: 11px; gap: 14px; padding: 8px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .attorney-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-pill { font-size: 12px; }
  .founders, .why-us, .results, .reviews { padding: 56px 20px; }
  .cta-band { padding: 48px 20px; }
}
