/* ==========================================================================
   MARCOS STAUB | ADVOCACIA CRIMINAL (OAB/SC 79.523)
   Design System & Stylesheet
   Palette extracted from brand PDF:
   - Deep Midnight Navy: #060324, #0A0733, #0D093F
   - Premium Champagne Gold: #E3D082, #C7AD59, #8E7432
   - High Conversion Emerald: #25D366, #1EBE5D, #128C7E
   ========================================================================== */

:root {
  /* Colors from PDF */
  --bg-primary: #060324;
  --bg-secondary: #0A0733;
  --bg-card: rgba(14, 10, 52, 0.72);
  --bg-card-hover: rgba(22, 16, 75, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.035);

  /* Gold Accents from PDF */
  --gold-highlight: #E3D082;
  --gold-primary: #C7AD59;
  --gold-dark: #8E7432;
  --gold-subtle: rgba(227, 208, 130, 0.16);
  --gold-glow: rgba(227, 208, 130, 0.28);
  --gold-border: rgba(227, 208, 130, 0.22);

  /* Typography & Neutrals */
  --text-white: #FFFFFF;
  --text-light: #F4F6FB;
  --text-muted: #B4BEDA;
  --text-dim: #7E8AA8;
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* WhatsApp Conversion */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #22bf5b;
  --whatsapp-dark: #128C7E;
  --whatsapp-shadow: rgba(37, 211, 102, 0.35);

  /* Fonts */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif-body: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 84px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 50% 0%, #0F0A47 0%, var(--bg-primary) 70%);
  min-height: 100vh;
  line-height: 1.65;
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

/* Subtle background illumination texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 85% 15%, rgba(199, 173, 89, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 60%, rgba(22, 16, 75, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Links & Media */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 3, 36, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 10px 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
}

.brand-oab {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold-highlight);
  font-weight: 600;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-highlight);
  border: 1px solid var(--gold-primary);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.header-cta-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 18px var(--gold-glow);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION (DOBRA 1)
   Full Banner, Left-aligned on Desktop, Centered on Mobile
   ========================================================================== */
.hero-banner-full {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 85px 0 95px 0;
  background-color: var(--bg-primary);
}

.hero-banner-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center; /* Manter o Dr. Marcos Staub em evidência à direita */
}

/* Gradient Overlay: legibilidade absoluta à esquerda e integração suave com a foto à direita */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      #060324 0%, 
      rgba(6, 3, 36, 0.98) 32%, 
      rgba(6, 3, 36, 0.88) 48%, 
      rgba(6, 3, 36, 0.28) 72%, 
      rgba(6, 3, 36, 0.45) 100%
    ),
    linear-gradient(180deg, 
      rgba(6, 3, 36, 0.7) 0%, 
      transparent 22%, 
      transparent 70%, 
      #060324 100%
    );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Left-aligned text on Desktop */
.hero-content {
  max-width: 660px;
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-highlight);
  background: rgba(227, 208, 130, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid var(--gold-border);
  margin-bottom: 22px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-tag-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  box-shadow: 0 0 10px var(--whatsapp-green);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 580px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-direct-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-highlight);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-direct-info svg {
  color: var(--whatsapp-green);
  flex-shrink: 0;
}

/* Primary CTA Button */
.cta-button-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #FFFFFF;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 8px;
  box-shadow: 0 8px 28px var(--whatsapp-shadow), 0 2px 6px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cta-button-main:hover {
  background: linear-gradient(135deg, #2ae36e 0%, #20b859 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.48), 0 3px 8px rgba(0,0,0,0.5);
}

.cta-button-main:hover::before {
  opacity: 1;
  transform: scale(1);
}

.cta-button-main svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-support-text {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-support-text .bullet {
  color: var(--gold-primary);
  opacity: 0.7;
}

/* ==========================================================================
   DOBRA 2 — ÁREAS DE ATUAÇÃO
   Clean, Breathy, Direct Lead Focus
   ========================================================================== */
.section-wrapper {
  padding: 90px 0;
  position: relative;
  border-top: 1px solid rgba(227, 208, 130, 0.1);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px auto;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-highlight);
  display: inline-block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.7vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid of 6 Criminal Law Services */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(227, 208, 130, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(227, 208, 130, 0.1);
}

.area-card:hover::before {
  opacity: 1;
}

.area-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(227, 208, 130, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-highlight);
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.area-card:hover .area-icon-box {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-highlight);
}

.area-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
  line-height: 1.35;
}

.area-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-highlight);
  letter-spacing: 0.04em;
}

.area-card:hover .area-card-link {
  color: var(--text-white);
}

.area-card-link svg {
  transition: transform 0.2s ease;
}

.area-card:hover .area-card-link svg {
  transform: translateX(4px);
}

/* Mid Section Callout CTA */
.areas-cta-box {
  background: linear-gradient(180deg, rgba(16, 11, 58, 0.8) 0%, rgba(6, 3, 36, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.areas-cta-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 20px;
}

/* ==========================================================================
   DOBRA 3 — CREDIBILIDADE + GOOGLE REVIEWS
   ========================================================================== */
.credibility-section {
  background: radial-gradient(circle at 50% 30%, #0E0847 0%, var(--bg-primary) 70%);
}

.law-firm-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px auto;
}

.law-firm-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-highlight);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.law-firm-subtitle {
  font-size: 1.12rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}

.law-firm-oab-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-highlight);
  background: rgba(227, 208, 130, 0.09);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--gold-border);
}

/* Google Reviews Module */
.reviews-container {
  margin-bottom: 60px;
}

.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.google-logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

.google-stars {
  color: #FBBC05;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.rating-score {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-white);
}

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

.review-card {
  background: rgba(14, 10, 52, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--gold-border);
  background: rgba(18, 13, 64, 0.85);
  transform: translateY(-3px);
}

.review-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 208, 130, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
}

.author-verified {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-verified svg {
  color: #4285F4;
}

/* Final Lead CTA Block */
.final-cta-section {
  background: linear-gradient(135deg, rgba(17, 12, 60, 0.9) 0%, rgba(6, 3, 36, 0.98) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 56px 36px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(227, 208, 130, 0.08);
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.final-cta-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.final-signature {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--gold-highlight);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #040217;
  padding: 44px 0 60px 0;
  font-size: 0.84rem;
  color: var(--text-dim);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-white);
  font-weight: 600;
}

.footer-oab {
  color: var(--gold-highlight);
  font-weight: 600;
}

.footer-disclaimer {
  max-width: 650px;
  line-height: 1.6;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   PERSISTENT FLOATING WHATSAPP & MOBILE BOTTOM BAR
   ========================================================================== */

/* Floating WhatsApp button (Visible on Desktop / Tablet) */
.whatsapp-float-desktop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.whatsapp-float-desktop:hover {
  background: #20bf5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-desktop svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Mobile Fixed Bottom CTA Bar (Visible only on mobile screens) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 3, 36, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  padding: 12px 18px;
  z-index: 1000;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 14px var(--whatsapp-shadow);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-bottom-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN RULES
   Desktop: Left-aligned hero text, Photo on right
   Mobile: Centered hero text, full banner, fixed bottom bar
   ========================================================================== */

@media (max-width: 1024px) {
  .areas-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 36px;
  }
}

@media (max-width: 820px) {
  /* Switch Hero to Centered on Mobile/Tablet with Full-bleed Banner */
  .hero-banner-full {
    min-height: auto;
    padding: 0 0 55px 0;
    display: flex;
    flex-direction: column;
  }

  .hero-banner-media {
    position: relative;
    width: 100%;
    height: 380px;
    flex-shrink: 0;
    pointer-events: auto;
  }

  .hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
  }

  .hero-banner-overlay {
    background: linear-gradient(180deg, 
      rgba(6, 3, 36, 0.05) 0%, 
      rgba(6, 3, 36, 0.15) 55%, 
      rgba(6, 3, 36, 0.7) 85%, 
      #060324 100%
    );
  }

  .hero-container {
    margin-top: -30px; /* Sobrepor suavemente com a transição */
  }

  .hero-content {
    text-align: center; /* CENTRALIZADO NO MOBILE */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.2vw, 2.3rem);
  }

  .hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    max-width: 95%;
    text-align: center;
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-direct-info {
    justify-content: center;
  }

  .hero-support-text {
    justify-content: center;
  }

  .cta-button-main {
    width: 100%;
    max-width: 380px;
  }

  .areas-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .header-cta-btn {
    display: none; /* Keep header clean on mobile to prioritize main CTA */
  }

  /* Hide Desktop Float, Display Mobile Bottom Bar */
  .whatsapp-float-desktop {
    display: none;
  }

  .mobile-bottom-bar {
    display: block;
  }

  /* Padding at bottom of body so content doesn't get covered by mobile bottom bar */
  body {
    padding-bottom: 84px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-logo-img {
    height: 44px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .cta-button-main {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.98rem;
  }

  .lawyer-badge-floating {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .final-cta-section {
    padding: 36px 20px;
  }
}
