:root {
  --black: #0a0a0a;
  --dark: #0d1117;
  --dark2: #141b27;
  --dark3: #1a2333;
  --white: #f5f5f0;
  --cream: #e0e4ed;
  --blue: #2255a0;
  --blue-bright: #3070c8;
  --blue-dark: #1a3a6b;
  --gold: #c9a227;
  --gold-bright: #e8bc2e;
  --gray: #666;
  --gray-light: #999;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34,85,160,0.2);
  padding: 0 24px;
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 95px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 75px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 14px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; }
.mobile-menu { display: none; cursor: pointer; }
.mobile-menu span {
  display: block; width: 28px; height: 2px;
  background: var(--gold); margin: 6px 0;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: url('/img/sean-and-bob.jpg') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,14,20,0.92) 0%, rgba(10,14,20,0.85) 50%, rgba(10,14,20,0.75) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(34,85,160,0.15) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 40px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .blue-accent { color: var(--blue-bright); }
.hero-sub {
  font-size: 18px;
  color: var(--cream);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue);
  color: white;
  padding: 18px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold);
  padding: 18px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hero Form */
.hero-form {
  background: var(--dark2);
  border: 1px solid rgba(34,85,160,0.25);
  padding: 36px;
  position: relative;
}
.hero-form::before {
  content: 'FREE CASE REVIEW';
  position: absolute; top: -14px; left: 24px;
  background: var(--blue);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 4px 16px;
}
.hero-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.hero-form p {
  color: var(--gray-light);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-field {
  margin-bottom: 12px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid #333;
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}
.form-submit:hover { background: var(--gold-bright); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(34,85,160,0.2);
  border-bottom: 1px solid rgba(34,85,160,0.2);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── SECTION STYLES ─── */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; display: block;
  width: 30px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--cream);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── DATA SECTION ─── */
.data-section { background: var(--dark); }
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.data-card {
  background: var(--dark2);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.data-card:hover {
  background: var(--dark3);
}
.data-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.data-card:hover::after { transform: scaleX(1); }
.data-card .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.data-card .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.data-card .desc {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ─── PRACTICE AREAS ─── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.practice-card {
  background: var(--dark2);
  padding: 40px 28px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.practice-card:hover {
  background: var(--dark3);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.practice-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.practice-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.practice-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
}
.practice-card .arrow {
  position: absolute; bottom: 20px; right: 20px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
.practice-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESULTS ─── */
.results-section { background: var(--black); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.result-card {
  background: var(--dark2);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.result-card:hover { background: var(--dark3); }
.result-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-type {
  font-size: 14px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── TEAM ─── */
.team-section { background: var(--dark); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.team-card {
  background: var(--dark2);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.team-photo {
  width: 160px; height: 160px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(34,85,160,0.35);
  border-radius: 4px;
}
.team-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.team-info .role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-info p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--black); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--dark2);
  padding: 40px 32px;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--blue);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px
  );
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}
.cta-banner .phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
  letter-spacing: 3px;
}
.cta-banner .phone:hover { color: var(--gold-bright); }
.cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(34,85,160,0.2);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--white); }
.footer-brand p {
  font-size: 14px; color: var(--gray-light);
  line-height: 1.6; margin-bottom: 16px;
}
.footer-brand .address {
  font-size: 13px; color: var(--gray-light);
  line-height: 1.8;
}
footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
footer a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #222;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray-light);
}

/* ─── STICKY MOBILE CTA ─── */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--blue);
  padding: 12px 24px;
  text-align: center;
}
.mobile-cta a {
  color: white; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { max-width: 500px; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .nav-logo img { height: 50px; }
  .nav-inner { height: 70px; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero h1 { font-size: 48px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .data-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .meet-band-grid { grid-template-columns: 1fr !important; }
  .meet-band-photo { min-height: 250px !important; }
  .meet-band-text { padding: 40px 24px !important; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.hero h1 { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }
.hero-sub { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.hero-actions { animation: fadeUp 0.6s ease both; animation-delay: 0.65s; }
.hero-form { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }

/* ─── BLOG ─── */
.blog-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.blog-list h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--dark2);
  border: 1px solid rgba(34,85,160,0.15);
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.blog-card:hover {
  border-color: var(--blue);
}
.blog-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-card h2 a {
  color: var(--white);
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--gold);
}
.blog-card .meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card .excerpt {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.6;
}
.blog-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── BLOG SINGLE ─── */
.blog-single {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.blog-single h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.blog-single .meta {
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.blog-single .content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cream);
}
.blog-single .content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin: 48px 0 16px;
  color: var(--white);
}
.blog-single .content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--white);
}
.blog-single .content p {
  margin-bottom: 20px;
}
.blog-single .content a {
  color: var(--gold);
  text-decoration: underline;
}
.blog-single .content ul, .blog-single .content ol {
  margin: 16px 0 20px 24px;
  color: var(--cream);
}
.blog-single .content li {
  margin-bottom: 8px;
}
.blog-single .content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
  border: 1px solid rgba(34,85,160,0.2);
}
.featured-image {
  margin: 24px 0 36px;
}
.featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(34,85,160,0.2);
}
.category-hero {
  margin: 20px 0 32px;
}
.category-hero img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(34,85,160,0.15);
}
.blog-single .content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(201,162,39,0.05);
  font-style: italic;
  color: var(--gray-light);
}
.blog-single .cta-box {
  background: var(--dark2);
  border: 1px solid rgba(34,85,160,0.3);
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
.blog-single .cta-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.blog-single .cta-box p {
  color: var(--gray-light);
  margin-bottom: 20px;
}
.blog-back {
  display: inline-block;
  margin-top: 32px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── CONTENT PAGES ─── */
.content-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.content-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.content-page .content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cream);
}
.content-page .content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin: 48px 0 16px;
  color: var(--white);
}
.content-page .content p {
  margin-bottom: 20px;
}
.content-page .content a {
  color: var(--gold);
}
