/* =============================================
   DLE LAWYERS — HIGH-CONVERTING LANDING PAGE
   Art Direction: Authoritative, Navy + Gold, Legal
   ============================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* JDLE Brand Colors — Navy + Champagne + Coral CTA */
  --color-navy:         #061638; /* primary navy */
  --color-navy-light:   #0a1f4a;
  --color-navy-dark:    #04102a;
  --color-gold-accent:  #E5D3BB; /* champagne gold — accents only */
  --color-gold-light:   #F2E5D3;
  --color-gold-dark:    #C7B59A;

  --color-bg:           #fafaf8;
  --color-surface:      #ffffff;
  --color-surface-2:    #f5f4f0;
  --color-surface-offset: #edecea;
  --color-divider:      #e0ddd8;
  --color-border:       #d4d1ca;

  --color-text:         #1a1a18;
  --color-text-muted:   #5c5b57;
  --color-text-faint:   #9a9892;
  --color-text-inverse: #ffffff;

  --color-primary:      #061638;
  --color-primary-hover: #0a1f4a;
  --color-cta:          #E04E3D; /* JDLE design system red — buttons */
  --color-cta-hover:    #C53D2E;
  --color-cta-active:   #A93628;

  --color-success:      #2d7a3a;
  --color-error:        #c0392b;

  /* Radius — JDLE design system uses sharp corners */
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --radius-full: 999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(12,30,58,0.06);
  --shadow-md: 0 4px 16px rgba(12,30,58,0.08);
  --shadow-lg: 0 12px 40px rgba(12,30,58,0.12);
  --shadow-xl: 0 20px 60px rgba(12,30,58,0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts — JDLE design system: Montserrat (display) + Work Sans (body in dark cards) */
  --font-display: 'Montserrat', -apple-system, system-ui, sans-serif;
  --font-body: 'Montserrat', 'Work Sans', system-ui, sans-serif;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .header-inner { padding: var(--space-3) var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-navy);
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-img { height: 48px; }
}

.header-nav {
  display: none;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-navy);
}

.header-cta-group {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .header-cta-group { display: flex; }
}

/* Header phone CTA — merged phone number + click-to-call into single red button.
   Inherits .btn .btn-primary .btn-sm base styles; this hook overrides letter-spacing
   so the phone number digits stay readable (default .btn has 0.08em tracking which
   spaces digits unnaturally) and removes the lowercase transform that would render
   "305-697-0878" with a tracked appearance. */
.header-phone-cta {
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  gap: var(--space-2);
}

.header-phone-cta svg {
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: flex;
  color: var(--color-navy);
  padding: var(--space-2);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.menu-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: white;
  padding: var(--space-16) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
}

.mobile-phone-link { color: var(--color-gold-dark) !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px; /* JDLE design system: sharp rectangles */
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition-interactive);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.btn-sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

.btn-lg {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
}

@media (min-width: 768px) {
  .btn-lg { padding: var(--space-4) var(--space-8); }
}

.btn-primary {
  background: var(--color-cta);
  color: var(--color-text-inverse);
  border-color: var(--color-cta);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,78,61,0.35);
}

.btn-primary:active {
  background: var(--color-cta-active);
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

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

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-full { width: 100%; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  /* Smaller hero per Jimmy feedback — was 100vh */
  min-height: 620px;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero { min-height: 680px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Photo takes over hero — gradient overlay protects copy on left, lifts toward right where form sits */
  background:
    linear-gradient(90deg, rgba(6,22,56,0.88) 0%, rgba(6,22,56,0.72) 35%, rgba(6,22,56,0.45) 60%, rgba(6,22,56,0.30) 80%, rgba(6,22,56,0.20) 100%);
  z-index: 1;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-photo-pos, center center);
  opacity: 0.95;
  filter: grayscale(8%);
}

@media (min-width: 1024px) {
  .hero-bg-photo {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  /* Reduced vertical padding for shorter hero */
  padding: var(--space-12) var(--space-4) var(--space-10);
  display: grid;
  gap: var(--space-6);
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: var(--space-12) var(--space-8) var(--space-10);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: var(--space-12);
    padding: var(--space-12) var(--space-8);
  }
}

.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,168,76,0.15);
  color: var(--color-gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(201,168,76,0.25);
}

.hero-headline {
  font-family: var(--font-display);
  /* Smaller H1 per Jimmy feedback — was clamp(2rem, ..., 3.5rem) */
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  /* Subtle text-shadow improves readability over photo */
  text-shadow: 0 2px 12px rgba(6,22,56,0.4);
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: clamp(2.25rem, 1rem + 2.4vw, 3rem);
  }
}

.hero-subhead {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin-bottom: var(--space-5);
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(6,22,56,0.4);
}

@media (min-width: 768px) {
  .hero-subhead { font-size: var(--text-base); }
}

.hero-subhead strong {
  color: var(--color-gold-light);
  font-weight: 700;
}

.hero-promise {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.promise-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(6,22,56,0.4);
}

.promise-item svg { color: var(--color-gold-accent); flex-shrink: 0; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.hero-micro-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  text-shadow: 0 1px 6px rgba(6,22,56,0.4);
}

/* Hero Form Card */
.hero-form-wrapper {
  display: flex;
  justify-content: center;
}

.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
}

@media (min-width: 768px) {
  .hero-form-card { padding: var(--space-8); }
}

.form-card-header { margin-bottom: var(--space-6); }

.form-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.form-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(12,30,58,0.1);
}

.form-field input::placeholder {
  color: var(--color-text-faint);
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.form-disclaimer svg {
  flex-shrink: 0;
  color: var(--color-text-faint);
}

.form-success {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.form-success svg { margin: 0 auto var(--space-4); }

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--color-navy);
  border-top: 3px solid var(--color-gold-accent);
  padding: var(--space-6) var(--space-4);
}

.trust-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .trust-inner { gap: var(--space-8); }
}

.trust-item {
  text-align: center;
  flex: 1 1 auto;
  min-width: 120px;
}

.trust-number,
.trust-number-static {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold-accent);
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  display: none;
}

@media (min-width: 768px) {
  .trust-divider { display: block; }
}

/* ---- SECTION SHARED ---- */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title { font-size: var(--text-2xl); }
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-2);
}

.problem-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.problem-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius-md);
  color: var(--color-error);
}

.problem-item h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.problem-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.problem-image-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.problem-photo-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
}

.problem-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
}

.problem-quote-card {
  background: var(--color-navy);
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  position: relative;
  max-width: 400px;
}

.problem-quote-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-gold-accent);
  position: absolute;
  top: -8px;
  left: var(--space-6);
  line-height: 1;
  opacity: 0.4;
}

.problem-quote-card blockquote {
  font-size: var(--text-sm);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}

.problem-quote-card cite {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--color-gold-light);
  font-weight: 600;
}

/* ---- GUIDE SECTION ---- */
.guide-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.guide-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .guide-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-12); }
}

.guide-image-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.guide-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--color-divider);
  box-shadow: var(--shadow-lg);
}

.guide-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 20%;
}

.guide-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-surface-2);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
}

.credential svg { color: var(--color-gold-accent); flex-shrink: 0; }

.guide-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.title-accent {
  color: var(--color-gold-dark);
  font-size: 0.65em;
  font-weight: 500;
}

.guide-philosophy {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .guide-philosophy { grid-template-columns: 1fr 1fr; }
}

.philosophy-card {
  background: var(--color-surface-2);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-gold-accent);
}

.philosophy-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.philosophy-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- RESULTS SECTION ---- */
.results-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-navy);
  color: white;
}

.results-section .section-label { color: var(--color-gold-accent); }
.results-section .section-title { color: white; }
.results-section .section-desc { color: rgba(255,255,255,0.6); }

.results-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.results-header .section-desc { margin-inline: auto; }

.results-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}

.result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.result-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.3);
  padding: var(--space-8);
}

@media (min-width: 1024px) {
  .result-featured { grid-column: 1 / -1; }
}

.result-amount {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold-accent);
  margin-bottom: var(--space-2);
}

.result-featured .result-amount {
  font-size: var(--text-3xl);
}

.result-type {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.result-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-3);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.6;
}

.results-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ---- PRACTICE AREAS ---- */
.practice-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.practice-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.practice-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(4, 1fr); }
}

.practice-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.practice-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.practice-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,30,58,0.05);
  border-radius: var(--radius-md);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.practice-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.practice-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- PROCESS SECTION ---- */
.process-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-2);
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.process-header .section-desc { margin-inline: auto; }

.process-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .process-grid {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

.process-step {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  flex: 1;
  max-width: 320px;
  border: 1px solid var(--color-divider);
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-gold-accent);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-connector {
  display: none;
  align-items: center;
  padding-top: var(--space-8);
}

@media (min-width: 768px) {
  .process-connector { display: flex; }
}

.process-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.testimonials-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.testimonial-featured {
  border-color: var(--color-gold-accent);
  border-width: 2px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-card blockquote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: var(--color-gold-accent);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.testimonial-author cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-navy);
}

.author-verified {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ---- STAKES SECTION ---- */
.stakes-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface-2);
}

.stakes-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .stakes-grid { grid-template-columns: 1fr 1fr; }
}

.stakes-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.stakes-failure {
  background: rgba(192,57,43,0.04);
  border: 1px solid rgba(192,57,43,0.15);
}

.stakes-success {
  background: rgba(45,122,58,0.04);
  border: 1px solid rgba(45,122,58,0.15);
}

.stakes-icon {
  margin-bottom: var(--space-4);
}

.stakes-failure .stakes-icon { color: var(--color-error); }
.stakes-success .stakes-icon { color: var(--color-success); }

.stakes-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.stakes-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.stakes-card li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.5;
}

.stakes-failure li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--color-error);
  font-weight: 700;
  font-size: var(--text-xs);
}

.stakes-success li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: var(--text-xs);
}

/* ---- FAQ ---- */
.faq-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq-grid {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-gold-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- TEAM SECTION ---- */
.team-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.team-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-12); }
}

.team-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 70%;
}

.team-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.team-stats {
  display: flex;
  gap: var(--space-6);
}

.team-stat {
  text-align: center;
}

.team-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.team-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ---- FINAL CTA ---- */
.final-cta-section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-navy);
  color: white;
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
  margin-inline: auto;
}

.final-cta-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center 20%;
  margin: 0 auto var(--space-6);
  border: 3px solid rgba(201,168,76,0.4);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.1);
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .final-cta-title { font-size: var(--text-2xl); }
}

.final-cta-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .final-cta-trust { gap: var(--space-6); }
}

.final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.final-cta-trust svg { color: var(--color-gold-accent); }

/* ---- FOOTER ---- */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  max-width: 300px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer address {
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.footer address a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.footer address a:hover { text-decoration: underline; }

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  margin-bottom: var(--space-3);
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

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

.footer-legal span {
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  display: block;
  margin-top: var(--space-1);
}

@media (min-width: 768px) {
  .footer-disclaimer { display: inline; }
}

.attribution-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

.attribution-link:hover { color: rgba(255,255,255,0.5); }

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-navy);
  padding: var(--space-3);
  gap: var(--space-2);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .mobile-sticky-cta { display: none; }
}

.mobile-cta-call,
.mobile-cta-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
}

.mobile-cta-call {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.mobile-cta-form {
  background: var(--color-cta);
  color: var(--color-navy);
}

/* Bottom padding for mobile sticky CTA */
@media (max-width: 767px) {
  .footer { padding-bottom: calc(var(--space-6) + 60px); }
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger-children > .reveal:nth-child(7) { transition-delay: 480ms; }
.stagger-children > .reveal:nth-child(8) { transition-delay: 560ms; }

/* ---- PRACTICE AREAS CATCH-ALL SECTION ---- */
.practice-areas {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-bone);
}

.practice-areas .practice-header {
  text-align: center;
  margin-bottom: var(--space-2);
}

.practice-areas .section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-10);
  color: var(--color-text-muted);
}

.practice-areas .practice-icon {
  color: var(--color-gold-accent);
  background: rgba(197,162,88,0.12);
}

.practice-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.practice-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.practice-card-linked {
  display: block;
  text-decoration: none;
  color: inherit;
}

.practice-card-linked:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-accent);
}
