    :root {
      --primary: #0c7b3b;
      --primary-dark: #09542a;
      --accent: #f4a51c;
      --bg-light: #f7f7f7;
      --text-main: #222;
      --text-muted: #666;
      --max-width: 1100px;
      --radius: 8px;
      --shadow-soft: 0 10px 25px rgba(0,0,0,0.07);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      line-height: 1.5;
      background: #ffffff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    header {
      background: linear-gradient(135deg, #062d17, #0c7b3b);
      color: #ffffff;
      padding: 1rem 1.5rem;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.03em;
    }

    .brand-logo {
      height: 55px;
      width: auto;
      image-rendering: -webkit-optimize-contrast;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      font-size: 0.95rem;
    }

    .nav-links a {
      color: #e7f7ec;
      opacity: 0.9;
    }

    .nav-links a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .nav-phone {
      font-weight: 600;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .nav-phone span {
      font-size: 0.8rem;
      display: block;
      color: #c6f5d6;
    }

    main {
      padding: 0;
    }

    section {
      padding: 3.5rem 1.5rem;
    }

    .section-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, #062d17, #0c7b3b);
      color: #ffffff;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 2.5rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #c6f5d6;
      margin-bottom: 0.5rem;
    }

    .hero h1 {
      margin: 0 0 1rem;
      font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    }

    .hero-sub {
      font-size: 1rem;
      color: #e7f7ec;
      margin-bottom: 1.5rem;
      max-width: 32rem;
    }

    .hero-tagline {
      font-size: 1.35rem;
      font-weight: 800;
      color: #f4a51c;
      margin-bottom: 1.4rem;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .badge {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4cff9c;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.7rem;
      border-radius: 999px;
      background: var(--accent);
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
      color: #1a1a1a;
      box-shadow: 0 12px 22px rgba(0,0,0,0.25);
      margin-bottom: 0.5rem;
    }

    .cta-primary:hover {
      background: #f29a00;
      transform: translateY(-1px);
    }

    /* Default cta-note (hero version on dark background) */
    .cta-note {
      font-size: 0.85rem;
      color: #e0f7eb;         /* mint green for the hero section */
      margin-top: 0.5rem;
    }

    /* CTA block version on white background */
    .cta-block .cta-note {
      color: #333;            /* dark, readable on white */
      opacity: 1;
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }



    .hero-right {
      background: rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 16px 35px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.25);
    }

    .hero-image-placeholder {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 190px;
      margin-bottom: 1rem;
      box-shadow: 0 16px 35px rgba(0,0,0,0.25);
    }

    .hero-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-caption {
      font-size: 0.85rem;
      color: #d6f5e4;
    }

    /* GENERIC SECTION STYLES */
    h2 {
      font-size: 1.7rem;
      margin: 0 0 0.75rem;
    }

    p {
      margin: 0 0 0.85rem;
      color: var(--text-main);
    }

    .muted {
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    /* PROBLEM SECTION */
    .section-alt {
      background: var(--bg-light);
    }

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 2rem;
      align-items: start;
    }

    .problem-image {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 220px;
      box-shadow: var(--shadow-soft);
    }

    .problem-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    ul {
      padding-left: 1.1rem;
      margin: 0 0 0.85rem;
    }

    ul li {
      margin-bottom: 0.4rem;
    }

    /* SOLUTION SECTION */
    .solution-card {
      background: #ffffff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 1.75rem;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 1.75rem;
      align-items: center;
    }

    .owner-image {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 220px;
    }

    .owner-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tagline {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
    }
    /* BENEFITS */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.5rem;
      margin-top: 1.75rem;
    }

    .benefit-card {
      background: #ffffff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      height: 100%; /* equal-height cards */
    }

    .benefit-tag {
      font-size: 1.2rem;      /* 50% larger */
      font-weight: 700;
      color: var(--primary-dark);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .benefit-title {
      font-weight: 700;
      font-size: 1.15rem;
      line-height: 1.3;
    }

    .benefit-image {
      border-radius: 6px;
      background-size: cover;
      background-position: center;
      height: 160px;          /* consistent image height */
      margin-top: auto;       /* pins image to bottom */
    }

    .benefit-image.fast {
      background-image: url('benefit-truck.jpg');
    }

    .benefit-image.pricing {
      background-image: url('truck-owner.jpg');
    }

    .benefit-image.property {
      background-image: url('truck-yard.jpg');
    }

    /* SOCIAL PROOF */
    .social-proof {
      text-align: left;
    }

    .stars {
      color: #f4b000;
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }

    .review-card {
      background: #ffffff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 1.5rem;
      margin-top: 1.25rem;
    }

    .reviewer {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .google-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    /* CTA BLOCK */
    .cta-block {
      text-align: center;
    }

    .cta-block p {
      max-width: 32rem;
      margin: 0.5rem auto 1.5rem;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 2.2fr);
      gap: 2rem;
      align-items: start;
    }

    .faq-item {
      margin-bottom: 1.25rem;
    }

    .faq-item h3 {
      margin: 0 0 0.3rem;
      font-size: 1rem;
    }

    footer {
      background: #101010;
      color: #bbbbbb;
      padding: 1.75rem 1.5rem;
      font-size: 0.85rem;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
    }

    .footer-slogan {
      color: #f4a51c;
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .hero-grid,
      .two-col,
      .solution-card,
      .benefits-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .benefits-grid {
        gap: 1rem;
      }

      header {
        position: static;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 3rem;
      }
    }

    @media (max-width: 600px) {
      section {
        padding: 2.75rem 1.1rem;
      }

      .hero-right {
        padding: 1.25rem;
      }
    }
      
      .hero-social {
        margin-top: 0.5rem;
      }

      .fb-link {
        font-size: 0.9rem;
        color: #e7f7ec;
        text-decoration: underline;
        opacity: 0.9;
      }

      .fb-link:hover {
        opacity: 1;
      }

      .fb-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
        vertical-align: middle;
      }

