/* Mesothelioma.me | Ledger Law Firm Theme Stylesheet */

    :root {
      --red:       #c0161a;
      --red-bright:#e01e23;
      --red-dark:  #8b0f12;
      --navy:      #050d1a;
      --navy-mid:  #0a1628;
      --navy-light:#0f2040;
      --gold:      #c8922a;
      --gold-light:#e8aa3a;
      --white:     #ffffff;
      --off-white: #f5f3ef;
      --gray:      #8a8880;
      --gray-light:#e8e6e2;
      --text:      #1a1815;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--navy);
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── HEADER ── */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 76px;
      background: rgba(5,13,26,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(192,22,26,0.3);
      transition: all 0.3s ease;
    }
    .header.scrolled { height: 64px; border-bottom-color: rgba(192,22,26,0.5); }
    .logo {
      display: flex; align-items: center; gap: 14px;
    }
    .logo-icon {
      width: 42px; height: 42px;
      background: var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }
    .logo-words { line-height: 1.1; }
    .logo-main {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; letter-spacing: 3px; color: var(--white);
      display: block;
    }
    .logo-sub {
      font-size: 10px; letter-spacing: 2px; color: var(--red);
      text-transform: uppercase; font-weight: 600;
    }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
      color: rgba(255,255,255,0.6); padding: 8px 16px; border-radius: 4px;
      transition: all 0.2s;
    }
    nav a:hover, nav a.active { color: var(--white); background: rgba(192,22,26,0.15); }
    nav a.active { color: var(--red); }
    .header-cta {
      display: flex; align-items: center; gap: 10px;
      background: var(--red); color: var(--white);
      font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
      padding: 11px 22px; border-radius: 4px;
      transition: all 0.2s; border: 2px solid var(--red);
      white-space: nowrap;
    }
    .header-cta:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(192,22,26,0.5); }
    .header-cta svg { flex-shrink: 0; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      padding-top: 76px; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #020710 0%, #050d1a 50%, #0a0508 100%);
    }
    .hero-photo {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?w=1800&q=80') center/cover no-repeat;
      opacity: 0.12;
      mix-blend-mode: luminosity;
    }
    .hero-vignette {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, transparent 20%, rgba(5,13,26,0.85) 70%);
    }
    /* Diagonal red slash accent */
    .hero-slash {
      position: absolute; top: 0; right: 25%;
      width: 3px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--red) 20%, var(--red-bright) 50%, var(--red) 80%, transparent);
      opacity: 0.6;
    }
    .hero-slash-2 {
      position: absolute; top: 0; right: calc(25% + 12px);
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(192,22,26,0.3) 30%, rgba(192,22,26,0.3) 70%, transparent);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1280px; margin: 0 auto; padding: 80px 48px 80px;
      display: grid; grid-template-columns: 1fr 440px; gap: 80px;
      align-items: center; width: 100%;
    }
    .hero-left {}
    .hero-eyebrow {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 28px;
    }
    .eyebrow-line { width: 40px; height: 2px; background: var(--red); }
    .eyebrow-text {
      font-size: 11px; font-weight: 700; letter-spacing: 4px;
      text-transform: uppercase; color: var(--red);
    }
    .hero-h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 9vw, 130px);
      line-height: 0.92; letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .hero-h1 .red { color: var(--red); display: block; }
    .hero-h1 .outline {
      -webkit-text-stroke: 2px rgba(255,255,255,0.2);
      color: transparent; display: block;
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 600; font-style: italic;
      color: rgba(255,255,255,0.55); line-height: 1.5;
      max-width: 520px; margin: 24px 0 40px;
    }
    .hero-sub strong { color: var(--gold-light); font-style: normal; }
    .hero-stats-row {
      display: flex; gap: 0; align-items: stretch;
      border: 1px solid rgba(192,22,26,0.3);
      border-radius: 4px; overflow: hidden;
      max-width: 520px;
    }
    .hero-stat {
      flex: 1; padding: 20px 24px; text-align: center;
      border-right: 1px solid rgba(192,22,26,0.2);
      background: rgba(192,22,26,0.05);
      transition: background 0.2s;
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat:hover { background: rgba(192,22,26,0.12); }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px; letter-spacing: 1px; line-height: 1;
      color: var(--white);
    }
    .stat-num span { color: var(--red); }
    .stat-label {
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }

    /* ── HERO FORM ── */
    .hero-form-wrap {
      background: var(--white);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(192,22,26,0.2);
    }
    .form-top-bar {
      background: var(--red);
      padding: 18px 28px;
    }
    .form-top-bar h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px; letter-spacing: 2px; color: var(--white);
      margin-bottom: 2px;
    }
    .form-top-bar p {
      font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.3px;
    }
    .form-body { padding: 24px 28px; }
    .fg { margin-bottom: 14px; }
    .fg label {
      display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #555; margin-bottom: 6px;
    }
    .fg input, .fg textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid #e0ddd8; border-radius: 2px;
      font-size: 14px; font-family: 'Inter', sans-serif;
      color: var(--text); background: #faf9f7;
      outline: none; transition: 0.2s;
    }
    .fg input:focus, .fg textarea:focus {
      border-color: var(--red); background: var(--white);
      box-shadow: 0 0 0 3px rgba(192,22,26,0.1);
    }
    .fg textarea { resize: vertical; min-height: 72px; }
    .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .btn-submit {
      width: 100%; padding: 16px;
      background: var(--red); color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; letter-spacing: 2px;
      border: none; border-radius: 2px; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      transition: all 0.2s; margin-top: 4px;
    }
    .btn-submit:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,22,26,0.45); }
    .btn-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }
    .form-disclaimer {
      text-align: center; font-size: 11px; color: #999;
      margin-top: 10px; letter-spacing: 0.2px;
    }
    .form-success {
      padding: 40px 28px; text-align: center; display: none;
    }
    .success-check {
      width: 60px; height: 60px; border-radius: 50%;
      background: #1a7a4a; color: white; font-size: 28px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); margin-bottom: 10px; }
    .form-success p { font-size: 14px; color: #666; margin-bottom: 24px; }
    .btn-call-success {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--red); color: white; font-weight: 700;
      padding: 13px 28px; border-radius: 2px;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--red);
      padding: 14px 0; overflow: hidden;
    }
    .trust-track {
      display: flex; gap: 0; align-items: center;
      max-width: 1280px; margin: 0 auto; padding: 0 48px;
      justify-content: space-between; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 12px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.9);
      padding: 4px 0;
    }
    .trust-item::before { content: '✓'; font-size: 14px; color: rgba(255,255,255,0.7); }

    /* ── SECTIONS COMMON ── */
    .section { padding: 96px 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
    .tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .tag::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
    .tag.dark { color: var(--red); }
    .tag.light { color: var(--red); }
    .section-h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 5vw, 72px);
      letter-spacing: 2px; line-height: 0.95;
    }
    .section-h2 em { color: var(--red); font-style: normal; display: block; }
    .section-h2.light { color: var(--white); }
    .section-h2.dark { color: var(--navy); }

    /* ── EXPERIENCE ── */
    .experience { background: var(--off-white); }
    .exp-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .exp-img {
      position: relative;
    }
    .exp-img img {
      width: 100%; height: 540px; object-fit: cover; border-radius: 2px;
      filter: grayscale(20%) contrast(1.05);
    }
    .exp-img-badge {
      position: absolute; bottom: -24px; right: -24px;
      background: var(--red); color: white;
      padding: 20px 28px; text-align: center;
      box-shadow: 0 12px 40px rgba(192,22,26,0.5);
    }
    .exp-img-badge strong {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 38px; letter-spacing: 1px; display: block; line-height: 1;
    }
    .exp-img-badge span { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }
    .exp-img-stripe {
      position: absolute; top: 24px; left: -24px;
      width: 6px; height: 160px;
      background: linear-gradient(to bottom, var(--red), var(--red-dark));
    }
    .exp-text { color: var(--text); }
    .exp-text .tag.dark { color: var(--red); }
    .exp-body { font-size: 16px; line-height: 1.75; color: #4a4845; margin: 20px 0 32px; }
    .exp-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
    .exp-feat {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0; border-bottom: 1px solid var(--gray-light);
    }
    .exp-feat:first-child { border-top: 1px solid var(--gray-light); }
    .feat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px; color: var(--red); line-height: 1; flex-shrink: 0; width: 36px;
    }
    .feat-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
    .feat-text p { font-size: 13px; color: #666; margin: 0; }
    .btn-red {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--navy); color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px; letter-spacing: 2px;
      padding: 15px 32px; border-radius: 2px; border: 2px solid var(--navy);
      transition: all 0.2s;
    }
    .btn-red:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,22,26,0.35); }

    /* ── RESULTS ── */
    .results { background: var(--navy); }
    .results-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
      margin-top: 56px;
    }
    .result-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .result-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--red); transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .result-card:hover { background: rgba(192,22,26,0.06); border-color: rgba(192,22,26,0.3); transform: translateY(-4px); }
    .result-card:hover::before { transform: scaleX(1); }
    .result-card.featured {
      background: rgba(192,22,26,0.1); border-color: rgba(192,22,26,0.4);
    }
    .result-card.featured::before { transform: scaleX(1); }
    .result-label {
      font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--red); margin-bottom: 12px;
    }
    .result-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px; letter-spacing: 1px; line-height: 1;
      color: var(--white); margin-bottom: 4px;
    }
    .result-type {
      font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,0.3); margin-bottom: 20px;
    }
    .result-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
    .results-footer {
      text-align: center; margin-top: 32px;
      font-size: 11px; color: rgba(255,255,255,0.25);
    }

    /* ── TESTIMONIALS ── */
    .testimonials { background: #080f1c; }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
    }
    .testi-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 2px; padding: 32px;
      position: relative; transition: all 0.3s;
    }
    .testi-card:hover { border-color: rgba(192,22,26,0.4); background: rgba(192,22,26,0.05); }
    .testi-card::before {
      content: '\201C';
      position: absolute; top: 16px; right: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px; color: rgba(192,22,26,0.15); line-height: 1;
    }
    .testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
    .testi-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px; font-style: italic; line-height: 1.7;
      color: rgba(255,255,255,0.75); margin-bottom: 24px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      color: white; font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .testi-author strong { display: block; font-size: 14px; color: var(--white); }
    .testi-author span { font-size: 12px; color: rgba(255,255,255,0.4); }

    /* ── PROCESS ── */
    .process { background: var(--off-white); }
    .process-row {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      margin-top: 56px; border: 1px solid var(--gray-light);
    }
    .process-step {
      padding: 40px 32px; border-right: 1px solid var(--gray-light);
      position: relative; transition: all 0.3s;
    }
    .process-step:last-child { border-right: none; }
    .process-step:hover { background: rgba(192,22,26,0.03); }
    .process-step::after {
      content: '→';
      position: absolute; top: 50%; right: -16px; transform: translateY(-50%);
      font-size: 20px; color: var(--red); z-index: 1;
      background: var(--off-white); padding: 4px;
    }
    .process-step:last-child::after { display: none; }
    .step-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px; color: rgba(192,22,26,0.15); line-height: 1; margin-bottom: 16px;
      -webkit-text-stroke: 1px rgba(192,22,26,0.3);
    }
    .step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .step-body { font-size: 13px; color: #666; line-height: 1.65; }
    .process-cta { text-align: center; margin-top: 48px; }

    /* ── INFO DARK ── */
    .info-dark { background: var(--navy-mid); }
    .info-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .info-img img {
      width: 100%; height: 500px; object-fit: cover; border-radius: 2px;
      filter: grayscale(30%) contrast(1.05);
    }
    .info-img-wrap { position: relative; }
    .info-img-wrap::before {
      content: ''; position: absolute;
      top: -12px; left: -12px; right: 12px; bottom: 12px;
      border: 2px solid rgba(192,22,26,0.4); z-index: 0; border-radius: 2px;
    }
    .info-img { position: relative; z-index: 1; }
    .info-boxes { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
    .info-box {
      display: flex; gap: 16px; align-items: flex-start;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-left: 3px solid var(--red);
      padding: 16px 20px; border-radius: 0 2px 2px 0;
      transition: background 0.2s;
    }
    .info-box:hover { background: rgba(192,22,26,0.07); }
    .info-box-icon { font-size: 20px; flex-shrink: 0; }
    .info-box strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 3px; }
    .info-box p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px; letter-spacing: 2px;
      padding: 14px 30px; border: 2px solid rgba(255,255,255,0.3); border-radius: 2px;
      transition: all 0.2s;
    }
    .btn-outline-white:hover { border-color: var(--red); color: var(--red); }

    /* ── AWARDS ── */
    .awards { background: var(--red); padding: 56px 0; }
    .awards-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .awards-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px; letter-spacing: 2px; color: var(--white);
      flex-shrink: 0;
    }
    .awards-list {
      display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
    }
    .award-item { text-align: center; }
    .award-icon { font-size: 28px; margin-bottom: 6px; }
    .award-item strong { display: block; color: var(--white); font-size: 13px; font-weight: 700; }
    .award-item span { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

    /* ── FINAL CTA ── */
    .final-cta {
      background: var(--navy);
      padding: 120px 0;
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://images.unsplash.com/photo-1521791055366-0d553872952f?w=1400&q=50') center/cover no-repeat;
      opacity: 0.06;
    }
    .final-cta-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center;
    }
    .cta-h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 5vw, 80px); letter-spacing: 2px;
      color: var(--white); line-height: 0.95; margin-bottom: 20px;
    }
    .cta-h2 em { color: var(--red); font-style: normal; display: block; }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin-bottom: 28px; }
    .cta-pills { display: flex; gap: 16px; flex-wrap: wrap; }
    .cta-pill {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65);
    }
    .cta-pill::before { content: '✓'; color: var(--red); font-weight: 700; }
    .cta-btns { display: flex; flex-direction: column; gap: 14px; min-width: 280px; }
    .btn-lg-red {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--red); color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 2px;
      padding: 18px 36px; border-radius: 2px; border: 2px solid var(--red);
      transition: all 0.2s;
    }
    .btn-lg-red:hover { background: var(--red-bright); box-shadow: 0 8px 32px rgba(192,22,26,0.5); transform: translateY(-2px); }
    .btn-lg-outline {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      background: transparent; color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 2px;
      padding: 18px 36px; border-radius: 2px; border: 2px solid rgba(255,255,255,0.2);
      transition: all 0.2s;
    }
    .btn-lg-outline:hover { border-color: var(--red); color: var(--red); }

    /* ── FOOTER ── */
    .footer { background: #020810; padding: 72px 0 0; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 48px;
      padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 20px 0; }
    .footer-brand p strong { color: var(--gold-light); }
    .footer-phone {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px; letter-spacing: 2px; color: var(--white);
    }
    .footer-col h4 {
      font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--red); }
    .footer-call {
      display: flex; align-items: center; gap: 8px;
      background: var(--red); color: var(--white);
      font-weight: 700; font-size: 14px; padding: 12px 20px;
      border-radius: 2px; margin-bottom: 12px; transition: all 0.2s;
    }
    .footer-call:hover { background: var(--red-bright); }
    .footer-link-sm {
      font-size: 13px; color: rgba(255,255,255,0.35);
      border-bottom: 1px solid rgba(255,255,255,0.15);
      padding-bottom: 2px; transition: color 0.2s;
    }
    .footer-link-sm:hover { color: rgba(255,255,255,0.7); }
    .footer-bottom {
      padding: 24px 0; display: flex; gap: 24px; flex-direction: column;
    }
    .footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }
    .footer-bottom a { color: rgba(255,255,255,0.3); }

    /* ── MOBILE STICKY ── */
    .mobile-sticky {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
      background: var(--navy); border-top: 2px solid var(--red);
      padding: 10px 16px; gap: 10px;
    }
    .ms-call {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--red); color: var(--white);
      font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 1px;
      padding: 13px; border-radius: 2px;
    }
    .ms-form {
      flex: 1; display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.08); color: var(--white);
      font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 1px;
      padding: 13px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.1);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
    .fade-up { animation: fadeUp 0.8s ease both; }
    .d1 { animation-delay: 0.1s; }
    .d2 { animation-delay: 0.25s; }
    .d3 { animation-delay: 0.4s; }
    .d4 { animation-delay: 0.55s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; gap: 48px; }
      .hero-form-wrap { max-width: 500px; }
      .hero-h1 { font-size: clamp(64px, 10vw, 100px); }
      .exp-grid { grid-template-columns: 1fr; gap: 48px; }
      .info-grid { grid-template-columns: 1fr; gap: 48px; }
      .results-grid { grid-template-columns: 1fr 1fr; }
      .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .header { padding: 0 24px; }
      .container { padding: 0 24px; }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      nav.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--navy); padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .hamburger { display: flex; }
      .hero-content { padding: 60px 24px; }
      .hero-h1 { font-size: clamp(52px, 14vw, 80px); }
      .results-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .process-row { grid-template-columns: 1fr; }
      .process-step { border-right: none; border-bottom: 1px solid var(--gray-light); }
      .process-step::after { display: none; }
      .mobile-sticky { display: flex; }
      body { padding-bottom: 70px; }
      .footer-grid { grid-template-columns: 1fr; }
      .awards-inner { flex-direction: column; }
    }
  