  :root {
    --red: #C8102E;
    --red-dark: #8B0000;
    --red-light: #FF2244;
    --off-white: #F2EFE8;
    --cream: #E8E3D8;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --muted: #666660;
    --muted-light: #999990;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.14);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--off-white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--off-white);
    text-decoration: none;
  }

  .nav-logo span { color: var(--red); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--off-white); }

  .nav-cta {
    background: var(--red) !important;
    color: var(--off-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 500 !important;
  }

  .nav-cta:hover { background: var(--red-light) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,16,46,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 20% 70%, rgba(200,16,46,0.06) 0%, transparent 50%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--red);
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    color: var(--off-white);
    position: relative;
    max-width: 900px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--red);
  }

  .hero-sub {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--cream);
    margin-top: 2rem;
    position: relative;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
  }

  .btn-primary {
    background: var(--red);
    color: var(--off-white);
    padding: 0.9rem 2.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

  .hero-stat {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--off-white);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  /* TICKER */
  .ticker {
    background: var(--red);
    padding: 0.65rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-flex;
    gap: 4rem;
    animation: ticker 28s linear infinite;
  }

  .ticker-item {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }

  .ticker-dot {
    color: rgba(255,255,255,0.5);
    margin: 0 1rem;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SECTIONS */
  section {
    padding: 6rem 4rem;
  }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--red);
  }

  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--off-white);
    margin-bottom: 1.5rem;
  }

  h2 em {
    font-style: normal;
    color: var(--red);
  }

  /* PROBLEM SECTION */
  .problem {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .problem-body p {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
    line-height: 1.8;
  }

  .problem-body p strong {
    color: var(--off-white);
    font-weight: 500;
  }

  .problem-stats {
    display: grid;
    gap: 1.5rem;
  }

  .stat-card {
    background: var(--dark-3);
    border: 0.5px solid var(--border-light);
    border-left: 3px solid var(--red);
    padding: 1.5rem 1.75rem;
    border-radius: 2px;
  }

  .stat-card .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--muted-light);
    margin-top: 0.3rem;
    line-height: 1.5;
  }

  /* TRUST SECTION */
  .trust {
    background: var(--dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 0;
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
  }

  .trust-copy p {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
    line-height: 1.8;
  }

  .trust-items {
    display: grid;
    gap: 1rem;
  }

  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-3);
    border: 0.5px solid var(--border);
    border-radius: 2px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,16,46,0.15);
    border: 0.5px solid rgba(200,16,46,0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .trust-icon svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 1.5; }

  .trust-item-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 0.2rem;
  }

  .trust-item-text span {
    font-size: 0.82rem;
    color: var(--muted-light);
    line-height: 1.5;
  }

  /* SERVICES */
  .services {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: var(--border);
    border: 0.5px solid var(--border);
  }

  .service-card {
    background: var(--dark-2);
    padding: 2.5rem;
    position: relative;
    transition: background 0.25s;
  }

  .service-card:hover { background: var(--dark-3); }

  .service-card.featured {
    background: var(--dark-3);
  }

  .service-badge {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    background: rgba(200,16,46,0.15);
    color: var(--red);
    border: 0.5px solid rgba(200,16,46,0.3);
  }

  .service-badge.featured-badge {
    background: var(--red);
    color: white;
    border-color: var(--red);
  }

  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    line-height: 1;
  }

  .service-price {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: var(--red);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .service-desc {
    font-size: 0.9rem;
    color: var(--muted-light);
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .service-includes {
    list-style: none;
    margin-bottom: 2rem;
  }

  .service-includes li {
    font-size: 0.82rem;
    color: var(--cream);
    padding: 0.4rem 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .service-includes li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .service-min {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  .btn-service {
    display: block;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    border: 0.5px solid rgba(200,16,46,0.5);
    color: var(--red);
    background: transparent;
  }

  .btn-service:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
  }

  .btn-service.featured-btn {
    background: var(--red);
    color: white;
    border-color: var(--red);
  }

  .btn-service.featured-btn:hover {
    background: var(--red-light);
  }

  /* QUOTE CALCULATOR */
  .quote {
    background: var(--dark);
    border-top: 0.5px solid var(--border);
  }

  .quote-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .quote-card {
    background: var(--dark-3);
    border: 0.5px solid var(--border-light);
    border-radius: 2px;
    padding: 3rem;
    margin-top: 3rem;
  }

  .quote-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .field-group label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: 0.6rem;
  }

  .field-group input {
    width: 100%;
    background: var(--dark-2);
    border: 0.5px solid var(--border-light);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 1rem;
    color: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
  }

  .field-group input:focus {
    border-color: var(--red);
  }

  .quote-result {
    background: var(--dark-2);
    border: 0.5px solid var(--border);
    border-radius: 2px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
  }

  .quote-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .quote-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted-light);
  }

  .quote-line.total {
    border-top: 0.5px solid var(--border-light);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    color: var(--off-white);
    font-weight: 500;
    font-size: 1rem;
  }

  .quote-line .amount {
    font-family: 'DM Mono', monospace;
    color: var(--off-white);
  }

  .quote-line.total .amount {
    color: var(--red);
    font-size: 1.4rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
  }

  .quote-discount {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: #4CAF50;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
  }

  /* HOW IT WORKS */
  .how {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
  }

  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 1.6rem;
    left: 12%;
    right: 12%;
    height: 0.5px;
    background: linear-gradient(90deg, var(--red), rgba(200,16,46,0.2));
  }

  .step {
    padding: 0 1.5rem;
  }

  .step-num {
    width: 3.2rem;
    height: 3.2rem;
    background: var(--dark);
    border: 0.5px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--off-white);
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.85rem;
    color: var(--muted-light);
    line-height: 1.65;
  }

  /* CLOSING CTA */
  .closing {
    background: var(--dark);
    border-top: 0.5px solid var(--border);
    text-align: center;
  }

  .closing-inner {
    max-width: 750px;
    margin: 0 auto;
  }

  .closing h2 {
    margin-bottom: 1.25rem;
  }

  .closing p {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }

  .closing-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .closing-email {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: var(--muted-light);
    letter-spacing: 0.05em;
  }

  .closing-email a {
    color: var(--red);
    text-decoration: none;
  }

  /* FOOTER */
  footer {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--muted);
  }

  .footer-logo span { color: var(--red); }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
  }

  /* TEAM */
  .team {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
  }

  .team-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .team-intro {
    max-width: 680px;
    margin-bottom: 3rem;
  }

  .team-intro p {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.8;
    margin-top: 1.25rem;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 0.5px solid var(--border);
  }

  .team-card {
    background: var(--dark-2);
    padding: 2.25rem;
  }

  .team-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,16,46,0.12);
    border: 0.5px solid rgba(200,16,46,0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .team-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
  }

  .team-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--off-white);
    margin-bottom: 0.4rem;
  }

  .team-card-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
  }

  .team-card p {
    font-size: 0.87rem;
    color: var(--muted-light);
    line-height: 1.7;
  }

  .team-creds {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cred-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: var(--dark-3);
    border: 0.5px solid var(--border-light);
    color: var(--muted-light);
    border-radius: 2px;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: var(--dark);
    border-top: 0.5px solid var(--border);
  }

  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    background: var(--dark-3);
    border: 0.5px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '\201C';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--red);
    opacity: 0.25;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 0.92rem;
    color: var(--cream);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    border-top: 0.5px solid var(--border);
    padding-top: 1rem;
  }

  .testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
  }

  .testimonial-author span {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* CASE STUDIES */
  .cases {
    background: var(--dark-2);
    border-top: 0.5px solid var(--border);
  }

  .cases-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 0.5px solid var(--border);
    margin-top: 3rem;
  }

  .case-card {
    background: var(--dark-2);
    padding: 2.5rem;
    transition: background 0.2s;
  }

  .case-card:hover { background: var(--dark-3); }

  .case-tag {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    background: rgba(200,16,46,0.12);
    border: 0.5px solid rgba(200,16,46,0.3);
    color: var(--red);
    border-radius: 2px;
    margin-bottom: 1.25rem;
  }

  .case-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--off-white);
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .case-card p {
    font-size: 0.88rem;
    color: var(--muted-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .case-findings {
    list-style: none;
    border-top: 0.5px solid var(--border);
    padding-top: 1.25rem;
  }

  .case-findings li {
    font-size: 0.82rem;
    color: var(--cream);
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
  }

  .case-findings li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
  }

  .case-outcome {
    margin-top: 1.25rem;
    background: rgba(200,16,46,0.08);
    border: 0.5px solid rgba(200,16,46,0.2);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    color: var(--cream);
    line-height: 1.6;
  }

  .case-outcome strong {
    color: var(--red);
    font-weight: 500;
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.6s ease forwards; }
  .hero h1 { animation: fadeUp 0.7s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.7s 0.25s ease both; }
  .hero-actions { animation: fadeUp 0.7s 0.4s ease both; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section, .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero { padding-bottom: 4rem; }
    .problem-grid, .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .steps::before { display: none; }
    .quote-fields { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }
