/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0F1E3C;
  --navy-mid:   #1B2B4B;
  --navy-light: #243556;
  --gold:       #C9A84C;
  --gold-dark:  #A8893A;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray:       #6B7280;
  --light-gray: #E8ECF0;
  --text:       #1A1A2E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Merriweather', serif;
}

h3 {
  font-family: 'Merriweather', serif;
}

em { font-style: italic; color: var(--gold); }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== LABEL ===== */
.label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-full { width: 100%; text-align: center; padding: 17px; }

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.topbar-sep { color: rgba(255,255,255,0.2); }
.topbar-phone {
  margin-left: auto;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.topbar-phone:hover { color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 0.8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all 0.3s; }

.nav-drawer {
  display: none;
  background: var(--navy);
  padding: 16px 40px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-drawer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-drawer .btn { display: inline-block; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,30,60,0.93) 0%,
    rgba(15,30,60,0.80) 50%,
    rgba(15,30,60,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 120px 40px 80px 10%;
  animation: fadeUp 0.9s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 20px 32px;
  max-width: 480px;
}

.ht-item {
  flex: 1;
  text-align: center;
}

.ht-num {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.ht-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.ht-div {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.25);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gold);
  padding: 18px 0;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 40px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.trust-icon { display:flex; align-items:center; color: var(--navy); }

.trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(15,30,60,0.2);
}

/* ===== PRACTICE AREAS ===== */
.practice {
  background: var(--off-white);
  padding: 100px 0;
}

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

.practice-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 4px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.practice-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.pc-icon { margin-bottom: 20px; color: var(--gold); display:flex; }

.practice-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.practice-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.practice-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.practice-card li {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 5px 0;
  border-bottom: 1px solid var(--light-gray);
  padding-left: 14px;
  position: relative;
}
.practice-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.pc-link:hover { color: var(--gold-dark); }

/* ===== WHY CHOOSE US ===== */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.why-img {
  position: relative;
  overflow: hidden;
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why-us:hover .why-img img { transform: scale(1.03); }

.why-badge {
  position: absolute;
  bottom: 36px;
  right: -1px;
  background: var(--gold);
  padding: 18px 28px;
  text-align: center;
}
.why-badge strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}
.why-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

.why-text {
  background: var(--white);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-lead {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-points { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wp-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.why-point p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== CASE RESULTS ===== */
.cases {
  background: var(--navy);
  padding: 100px 0 80px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.case-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.case-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.case-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  position: relative;
}
.case-card.featured::before {
  content: 'LARGEST VERDICT';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 4px 12px;
  white-space: nowrap;
}

.case-amount {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.case-type {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.case-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.cases-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.t-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: border-color 0.25s;
}
.t-card:hover { border-left-color: var(--gold); }

.t-card.featured {
  border-left-color: var(--gold);
  background: var(--navy);
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(15,30,60,0.2);
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.t-card blockquote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}
.t-card.featured blockquote { color: rgba(255,255,255,0.8); }

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

.t-avatar {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.t-card.featured .t-avatar { background: rgba(201,168,76,0.2); color: var(--gold); }

.t-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}
.t-card.featured .t-author strong { color: #fff; }

.t-author span {
  font-size: 0.75rem;
  color: var(--gray);
}
.t-card.featured .t-author span { color: rgba(255,255,255,0.45); }

/* ===== CREDENTIALS BAR ===== */
.credentials-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 18px 0;
  overflow: hidden;
}

.credentials-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.credentials-inner span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 6px 24px;
}
.cr-sep { color: rgba(201,168,76,0.4) !important; padding: 0 !important; font-size: 1rem !important; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=60') center/cover no-repeat;
  opacity: 0.06;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ===== CONTACT ===== */
.contact-section {
  background: var(--off-white);
  padding: 100px 0;
}

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}

.ci-items { display: flex; flex-direction: column; gap: 0; }

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.ci-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}
.ci-item a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.ci-item a:hover { color: var(--navy); }
.ci-svg { display:flex; align-items:center; color: var(--gold); flex-shrink:0; margin-top:3px; }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  background: var(--off-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-main { font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-disclaimer {
  font-size: 0.72rem !important;
  font-style: italic;
  max-width: 700px;
}

/* ===== STICKY CALL BUTTON ===== */
.sticky-call {
  display: none;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  z-index: 998;
  transition: background 0.2s, transform 0.2s;
}
.sticky-call:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .why-us { grid-template-columns: 1fr; }
  .why-img { height: 360px; }
  .why-text { padding: 60px 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .contact-form { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 24px 60px; }
  .sticky-call { display: flex; }
}

@media (max-width: 600px) {
  .practice-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; padding: 20px; max-width: 100%; }
  .ht-div { width: 80px; height: 1px; }
  .trust-inner { flex-direction: column; gap: 4px; }
  .trust-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; }
  .credentials-inner { flex-direction: column; }
  .cr-sep { display: none; }
}
