:root {
      --green: #24933b;
      --green-dark: #08752b;
      --green-light: #eaf7ed;
      --dark: #102027;
      --gray: #667278;
      --light: #f7f9f8;
      --white: #ffffff;
      --border: #e4e9e6;
      --shadow: 0 12px 35px rgba(0,0,0,.07);
      --radius: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    /* =========================
       NAVIGATION
    ========================== */

    header {
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
    }

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

    .logo span {
      display: block;
      color: #555;
      font-size: 8px;
      letter-spacing: 2px;
      margin-top: -5px;
      text-align: center;
    }

    .nav-links {
      display: flex;
      gap: 35px;
      align-items: center;
      font-size: 14px;
      font-weight: 600;
    }

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

    .nav-button {
      background: var(--green);
      color: white;
      padding: 12px 22px;
      border-radius: 7px;
      font-weight: bold;
    }

    .nav-button:hover {
      background: var(--green-dark);
    }

    /* =========================
       HERO
    ========================== */

    .hero {
      min-height: 620px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(
          90deg,
          #ffffff 0%,
          #ffffff 45%,
          rgba(255,255,255,.65) 68%,
          rgba(255,255,255,.1) 100%
        ),
        url("../lfdcpa-img/hero.png") center right / cover no-repeat;
    }

    .hero-content {
      max-width: 570px;
      padding: 80px 0;
    }

    .eyebrow {
      color: var(--green);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(46px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -3px;
      margin-bottom: 25px;
    }

    .hero h1 span {
      color: var(--green);
    }

    .hero p {
      color: var(--gray);
      font-size: 18px;
      max-width: 500px;
      margin-bottom: 32px;
    }

    .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 7px;
      font-weight: bold;
      transition: .2s ease;
    }

    .btn-primary {
      background: var(--green);
      color: white;
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid var(--green);
      color: var(--green);
      background: white;
    }

    .btn-outline:hover {
      background: var(--green-light);
    }

    .trust {
      margin-top: 35px;
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--gray);
      font-size: 14px;
    }

    .stars {
      color: var(--green);
      font-size: 18px;
      letter-spacing: 2px;
    }

    /* =========================
       SECTION HEADINGS
    ========================== */

    .section {
      padding: 100px 0;
    }

    .section-heading {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 55px;
    }

    .section-heading h2 {
      font-size: 42px;
      line-height: 1.15;
      letter-spacing: -1.5px;
      margin-bottom: 15px;
    }

    .section-heading p {
      color: var(--gray);
    }

    /* =========================
       SERVICES
    ========================== */

    .services {
      background: var(--white);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      width: 100%;
    }

    .service-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 26px;
      background: white;
      box-shadow: var(--shadow);
      transition: .25s ease;
    }

    .service-card:hover {
      transform: translateY(-7px);
      border-color: #b9ddc1;
    }

    .icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 25px;
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .learn {
      color: var(--green);
      font-weight: bold;
      font-size: 14px;
    }

    /* =========================
       GROWTH SECTION
    ========================== */

    .growth {
      background:
        linear-gradient(
          90deg,
          rgba(4,31,27,.98) 0%,
          rgba(4,31,27,.92) 42%,
          rgba(4,31,27,.35) 100%
        ),
        url("../lfdcpa-img/hero.png") center / cover no-repeat;

      min-height: 430px;
      display: flex;
      align-items: center;
      color: white;
    }

    .growth-content {
      max-width: 510px;
    }

    .growth h2 {
      font-size: 44px;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .growth h2 span {
      color: #55c969;
    }

    .growth p {
      color: #dce8e0;
      margin-bottom: 28px;
    }

    /* =========================
       WHY US
    ========================== */

    .why {
      background: var(--light);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(5, 1fr);
      gap: 25px;
      align-items: start;
    }

    .why-intro h2 {
      font-size: 31px;
      line-height: 1.15;
      margin-bottom: 15px;
    }

    .why-item {
      text-align: center;
    }

    .why-icon {
      font-size: 30px;
      color: var(--green);
      margin-bottom: 12px;
    }

    .why-item h4 {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .why-item p {
      color: var(--gray);
      font-size: 12px;
    }

     /* =========================================
    CONTACT CTA
 ========================================= */

 .cta {
   background: linear-gradient(
     135deg,
     #20953c 0%,
     #08752b 100%
   );

   color: white;
   padding: 85px 0;
 }


 .cta-grid {
   display: grid;
   grid-template-columns: 1.15fr .85fr;
   gap: 60px;
   align-items: center;
 }


 .cta h2 {
   font-size: clamp(38px, 5vw, 55px);
   line-height: 1.08;
   letter-spacing: -1.5px;
   margin-bottom: 20px;
 }


 .cta p {
   color: #e0f2e3;
   max-width: 560px;
   font-size: 17px;
   line-height: 1.7;
   margin-bottom: 30px;
 }


 .cta .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   background: white;
   color: var(--green-dark);

   padding: 14px 25px;
   border-radius: 7px;

   font-weight: 700;

   transition: all .2s ease;
 }


 .cta .btn:hover {
   background: #f0f8f2;
   transform: translateY(-2px);
 }


 /* =========================================
    CONTACT / SOCIAL BOX
 ========================================= */

 .contact-box {
   background: white;
   color: var(--dark);

   padding: 35px;

   border-radius: 16px;

   box-shadow:
     0 18px 45px rgba(0, 0, 0, .14);

   width: 100%;
 }


 .contact-box h3 {
   color: var(--dark);
   font-size: 26px;
   margin-bottom: 10px;
 }


 .contact-box .social-intro {
   color: var(--gray);
   font-size: 14px;
   line-height: 1.6;
   margin-bottom: 25px;
 }


 /* =========================================
    SOCIAL LINKS
 ========================================= */

 .social-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }


 .social-link {
   display: flex;
   align-items: center;

   gap: 14px;

   width: 100%;

   padding: 13px 15px;

   border: 1px solid #e3e9e5;
   border-radius: 10px;

   background: #fff;

   transition: all .2s ease;
 }


 .social-link:hover {
   transform: translateX(5px);
   border-color: var(--green);
   box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
 }


 .social-icon {
   width: 40px;
   height: 40px;

   display: flex;
   align-items: center;
   justify-content: center;

   flex-shrink: 0;

   border-radius: 8px;

   color: white;

   font-weight: 700;
   font-size: 18px;
 }


 .social-name {
   flex: 1;

   color: var(--dark);

   font-size: 14px;
   font-weight: 700;
 }


 .social-arrow {
   color: var(--green);

   font-size: 18px;
   font-weight: 700;
 }


 /* Facebook */

 .facebook .social-icon {
   background: #07c644;
 }


 /* Instagram */

 .instagram .social-icon {
   background: linear-gradient(
     135deg,
     #afe2a3,
     #0b9a17,
     #afe2a3
   );
 }


 /* LinkedIn */

 .linkedin .social-icon {
   background: #08884c;
   font-size: 13px;
 }


 /* =========================================
    FOOTER
 ========================================= */

 footer {
   background: #101c20;

   color: white;

   padding: 70px 0 25px;
 }


 .footer-grid {
   display: grid;

   grid-template-columns:
     1.5fr
     1fr
     1.4fr
     1.2fr;

   gap: 45px;

   align-items: start;
 }


 /* =========================================
    FOOTER BRAND
 ========================================= */

 .footer-brand {
   max-width: 280px;
 }


 .footer-logo {
   display: block;
   margin: 0 0 8px 0;
   line-height: 0;
 }


 .footer-logo img {
  display: block;
  width: 160px;
  max-height: 55px;
  height: auto;
  object-fit: contain;
  margin: 0;
  margin-bottom: 12px;

  filter:
    brightness(0)
    saturate(100%)
    invert(47%)
    sepia(52%)
    saturate(900%)
    hue-rotate(88deg)
    brightness(88%)
    contrast(95%);
 }


 .footer-brand p {
  color: #aeb9bc;
  font-size: 14px;
  line-height: 1.7;
  max-width: 250px;
  margin: 0;
}


 /* =========================================
    FOOTER HEADINGS
 ========================================= */

 footer h4 {
   color: white;

   font-size: 15px;
   font-weight: 700;

   margin: 0 0 20px;
 }


 /* =========================================
    FOOTER LISTS
 ========================================= */

 footer ul {
   list-style: none;

   margin: 0;
   padding: 0;
 }


 footer li {
   margin-bottom: 11px;

   color: #aeb9bc;

   font-size: 13px;
 }


 footer li a {
   color: #aeb9bc;

   text-decoration: none;

   transition: all .2s ease;
 }


 footer li a:hover {
   color: #55c969;

   padding-left: 3px;
 }


 /* =========================================
    NEWSLETTER
 ========================================= */

 .newsletter {
   max-width: 280px;
 }


 .newsletter p {
   color: #aeb9bc;

   font-size: 13px;
   line-height: 1.6;

   margin: 0 0 16px;
 }


 .newsletter-form {
   display: flex;

   width: 100%;
 }


 .newsletter-form input {
   width: 100%;

   min-width: 0;

   padding: 12px 13px;

   border: none;

   outline: none;

   background: white;

   color: #102027;

   font-size: 13px;

   border-radius: 6px 0 0 6px;
 }


 .newsletter-form input::placeholder {
   color: #8b9699;
 }


 .newsletter-form button {
   flex-shrink: 0;

   border: none;

   background: var(--green);

   color: white;

   padding: 0 18px;

   border-radius: 0 6px 6px 0;

   cursor: pointer;

   font-size: 17px;
   font-weight: 700;

   transition: background .2s ease;
 }


 .newsletter-form button:hover {
   background: var(--green-dark);
 }


 /* =========================================
    COPYRIGHT
 ========================================= */

 .copyright {
   border-top: 1px solid #293539;

   margin-top: 55px;

   padding-top: 20px;

   color: #849194;

   font-size: 12px;

   display: flex;

   justify-content: space-between;

   align-items: center;

   gap: 20px;
 }


 .copyright a {
   color: #849194;

   text-decoration: none;

   transition: color .2s ease;
 }


 .copyright a:hover {
   color: white;
 }


 /* =========================================
    CONTACT CTA RESPONSIVE
 ========================================= */

 @media (max-width: 950px) {

   .cta-grid {
     grid-template-columns: 1fr;

     gap: 40px;
   }


   .cta-content {
     max-width: 650px;
   }


   .contact-box {
     max-width: 650px;
   }


   .footer-grid {
     grid-template-columns:
       1fr
       1fr;

     gap: 45px;
   }

 }


 /* =========================================
    MOBILE
 ========================================= */

 @media (max-width: 600px) {

   .cta {
     padding: 65px 0;
   }


   .cta h2 {
     font-size: 38px;

     letter-spacing: -1px;
   }


   .cta p {
     font-size: 15px;
   }


   .contact-box {
     padding: 25px;
   }


   .contact-box h3 {
     font-size: 23px;
   }


   .social-link {
     padding: 12px;
   }


   footer {
     padding: 55px 0 20px;
   }


   .footer-grid {
     grid-template-columns: 1fr;

     gap: 38px;
   }


   .footer-brand {
     max-width: 100%;
   }


   .newsletter {
     max-width: 100%;
   }


   .copyright {
     flex-direction: column;

     align-items: flex-start;

     gap: 10px;

     line-height: 1.6;
   }

 }

    /* =========================
       MOBILE
    ========================== */

    @media (max-width: 900px) {

      .nav-links {
        display: none;
      }

        /* Smaller LFDCPA logo */
      .logo {
        font-size: 20px;
        letter-spacing: -1px;
      }

      .logo img {
        width: 150px;
        height: auto;
      }

      .logo span {
        font-size: 15px;
        letter-spacing: 1px;
        margin-top: -3px;
      }

      .nav-button {
        font-size: 11px;
        padding: 9px 12px;
      }

      .hero {
        background:
          linear-gradient(
            rgba(255,255,255,.93),
            rgba(255,255,255,.93)
          ),
          url("lfdcpa-hero.png") center / cover;
      }

      .hero-content {
        padding: 70px 0;
      }

      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-intro {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
      }

      .cta-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {

      .nav {
        height: 65px;
      }

      .logo {
        font-size: 23px;
      }

      .nav-button {
        padding: 9px 14px;
        font-size: 12px;
      }

      .hero {
        min-height: auto;
      }

      .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
      }

      .hero p {
        font-size: 16px;
      }

      .trust {
        flex-direction: column;
        align-items: flex-start;
      }

      .section {
        padding: 70px 0;
      }

      .section-heading h2 {
        font-size: 34px;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .growth {
        min-height: 500px;
      }

      .growth h2 {
        font-size: 36px;
      }

      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cta h2 {
        font-size: 36px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
        gap: 10px;
      }
    }