
    button.calc-tab[data-calc="savings"] {
        display: none;
    }
    :root {
      --ink: #10231f;
      --forest: #183f36;
      --green: #0d6b59;
      --cream: #f3f0e8;
      --sun: #0EA29C;
      --line: rgba(16, 35, 31, 0.18);
      --white-line: rgba(255, 255, 255, 0.2);
    }

    img { display: block; max-width: 100%; }
    ::selection { color: var(--ink); background: var(--sun); }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible {
      outline: 3px solid var(--sun);
      outline-offset: 4px;
    }
    
    #main {
        padding: 0 !important;
    }

    .container {
      width: min(calc(100% - 40px), 1380px);
      margin-inline: auto;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #0EA29C;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.17em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 2px;
      background: currentColor;
    }

    .section-title {
      font-size: clamp(2.7rem, 6vw, 6.25rem);
      font-weight: 500;
      line-height: 0.98;
      letter-spacing: -0.055em;
    }

    .section-copy {
      max-width: 560px;
      margin-top: 30px;
      color: rgba(16, 35, 31, 0.65);
      font-size: 18px;
      line-height: 1.75;
    }

    .button {
        position: relative;
        display: inline-flex;
        min-height: 60px;
        padding: 14px 28px;
        align-items: center;
        justify-content: center;
        gap: 18px;
        overflow: hidden;
        border: 1px solid rgba(16, 35, 31, 0.14);
        border-radius: 10px;
        cursor: pointer;
        letter-spacing: 0.01em;
        box-shadow: 0 12px 30px rgba(16, 35, 31, 0.16);
        transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
        background-color: #F89D1F;
        color: #fff!important;
    }

    .button-primary {
      color: var(--ink);
      background: var(--sun);
    }

    .button:hover {
      transform: translateY(-3px);
      background: #EEE8E2;
      box-shadow: 0 18px 38px rgba(16, 35, 31, 0.23);
      color: #000!important;
    }

    .button svg {
      width: 42px;
      height: 42px;
      padding: 12px;
      flex: 0 0 auto;
      color: var(--sun);
      border-radius: 50%;
      background: var(--ink);
      transition: transform 0.3s cubic-bezier(0.2, 0.75, 0.25, 1);
    }
    .button:hover svg { transform: translateX(2px) rotate(-8deg); }

    .text-link {
      display: inline-flex;
      padding-bottom: 7px;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid currentColor;
      font-size: 14px;
      font-weight: 600;
    }

    .text-link svg { transition: transform 0.25s ease; }
    .text-link:hover svg { transform: translateX(4px); }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      color: white;
      background-position: center;
      background-size: cover;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 100svh;
      padding-top: 60px;
      padding-bottom: 54px;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero .eyebrow { margin-bottom: 21px; }

    .hero-wordmark {
      font-size: clamp(4.7rem, 15vw, 14rem);
      font-weight: 600;
      line-height: 0.72;
      letter-spacing: -0.075em;
      text-shadow: 0 10px 42px rgba(0, 0, 0, 0.2);
    }

    .hero-divider {
      width: 100%;
      height: 1px;
      margin-top: 32px;
      background: rgba(255, 255, 255, 0.45);
      transform-origin: left;
      animation: line-grow 1.1s 0.7s ease both;
    }

    .hero-bottom {
      display: grid;
      padding-top: 28px;
      grid-template-columns: 1.4fr 0.7fr;
      align-items: end;
      gap: 64px;
    }

    .hero h1 {
        max-width: 880px;
        font-size: clamp(2.1rem, 4.5vw, 4.9rem);
        font-weight: 500;
        line-height: 1.02;
        letter-spacing: -0.055em;
        color: #fff;
    }

    .hero-lead {
      max-width: 680px;
      margin-top: 20px;
      color: #fff;
      font-size: 18px;
      line-height: 1.55;
    }

    .hero-side { justify-self: end; }
    .hero-side p {
      max-width: 380px;
      margin-bottom: 20px;
      color: #fff;
      font-size: 14px;
      line-height: 1.7;
    }

    .photo-credit {
      position: absolute;
      right: 16px;
      bottom: 12px;
      z-index: 2;
      color: rgba(255, 255, 255, 0.55);
      font-size: 10px;
    }

    .hero-inner > * {
      opacity: 0;
      transform: translateY(22px);
      animation: hero-rise 0.75s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
    }
    .hero-inner > *:nth-child(1) { animation-delay: 0.18s; }
    .hero-inner > *:nth-child(2) { animation-delay: 0.32s; }
    .hero-inner > *:nth-child(3) { animation-delay: 0.44s; opacity: 1; }
    .hero-inner > *:nth-child(4) { animation-delay: 0.56s; }

    @keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }
    @keyframes line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    /* Assurance strip */
    .assurances {
      border-bottom: 1px solid var(--line);
      background: #ffffff;
    }

    .assurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

    .assurance-item {
      display: flex;
      min-height: 98px;
      padding: 0 24px;
      align-items: center;
      gap: 12px;
    }

    .assurance-item + .assurance-item { border-left: 1px solid var(--line); }
    .assurance-item span:last-child { font-size: 14px; font-weight: 600; }

    .check-icon {
      display: grid;
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      place-items: center;
      border: 1px solid var(--ink);
      border-radius: 50%;
    }

    /* Handled section */
    .handled-section {
        padding: 120px 0;
        background: #f5f0eb;
    }

    .handled-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.8fr;
      gap: 112px;
    }

    .handled-intro {
      position: sticky;
      top: 125px;
      align-self: start;
    }

    .handled-intro .eyebrow { margin-bottom: 28px; }
    .handled-intro .text-link { margin-top: 36px; }

    .service-row {
      display: grid;
      min-height: 82px;
      padding: 15px 0;
      grid-template-columns: 48px 1fr 28px;
      align-items: center;
      gap: 20px;
      border-top: 1px solid var(--line);
      transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .service-row:last-child { border-bottom: 1px solid var(--line); }
    .service-row:hover { padding-left: 8px; color: var(--green); }
    .service-number { color: rgba(16, 35, 31, 0.48); font-size: 13px; }
    .service-row h3 { font-size: 20px; font-weight: 500; }

    /* Process */
    .process-section {
        padding: 120px 0;
        background: #f5f0eb;
    }

    .process-heading {
      display: grid;
      margin-bottom: 64px;
      grid-template-columns: 1.2fr 0.7fr;
      align-items: end;
      gap: 80px;
    }

    .process-heading .eyebrow { margin-bottom: 28px; }
    .process-heading > p { max-width: 520px; color: rgba(16, 35, 31, 0.65); font-size: 18px; line-height: 1.75; }

    .process-row {
      display: grid;
      padding: 42px 0;
      grid-template-columns: minmax(100px, 0.45fr) 1.25fr 1fr;
      align-items: start;
      gap: 36px;
      border-top: 1px solid var(--line);
    }

    .process-row:last-child { border-bottom: 1px solid var(--line); }

    .process-number {
      color: transparent;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(3.1rem, 7vw, 7.5rem);
      font-weight: 600;
      line-height: 0.72;
      letter-spacing: -0.08em;
      -webkit-text-stroke: 1px rgba(16, 35, 31, 0.35);
      transition: color 0.35s ease, -webkit-text-stroke 0.35s ease;
    }

    .process-row:hover .process-number { color: var(--sun); -webkit-text-stroke-color: var(--sun); }
    .process-row h3 { font-size: clamp(24px, 2.5vw, 34px); font-weight: 600; line-height: 1.2; letter-spacing: -0.03em; }
    .process-row p { max-width: 450px; color: rgba(16, 35, 31, 0.62); line-height: 1.75; }

    /* Image call to action */
    .image-cta {
      position: relative;
      display: flex;
      min-height: 72vh;
      padding: 110px 0;
      align-items: flex-end;
      overflow: hidden;
      color: white;
      background-image:
        linear-gradient(90deg, rgba(4, 19, 16, 0.82) 0%, rgba(4, 19, 16, 0.37) 56%, rgba(4, 19, 16, 0.07) 100%),
        url("https://images.pexels.com/photos/4254164/pexels-photo-4254164.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=2400");
      background-position: center 34%;
      background-size: cover;
    }

    .image-cta-content { position: relative; z-index: 1; max-width: 900px; }
    .image-cta .eyebrow { margin-bottom: 28px; color: var(--sun); }
    .image-cta h2 {
      font-size: clamp(2.9rem, 7vw, 7.4rem);
      font-weight: 500;
      line-height: 0.94;
      letter-spacing: -0.06em;
      color: #fff;
    }
    .image-cta-content > p { max-width: 590px; margin-top: 28px; color: rgba(255, 255, 255); font-size: 12px; line-height: 1.75; }
    .image-cta .button { margin-top: 32px; }

    /* FAQ */
    .faq-section { padding: 150px 0; }
    .faq-grid { display: grid; grid-template-columns: 0.75fr 1.1fr; gap: 96px; }
    .faq-intro .eyebrow { margin-bottom: 28px; }
    .faq-row { border-top: 1px solid var(--line); }
    .faq-row:last-child { border-bottom: 1px solid var(--line); }

    .faq-toggle {
        display: flex;
        width: 100%;
        padding: 28px 0;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border: 0!important;
        background: transparent!important;
        cursor: pointer;
        text-align: left;
    }

    .faq-toggle span { font-family: "Manrope", Arial, sans-serif; font-size: 20px; font-weight: 600; }
    .faq-icon { flex: 0 0 auto; transition: transform 0.35s ease; }
    .faq-row.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .faq-answer > div { overflow: hidden; }
    .faq-row.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer p { max-width: 670px; padding-bottom: 28px; color: rgba(16, 35, 31, 0.62); line-height: 1.75; }

    /* Footer */
    .site-footer { padding: 60px 0 30px; color: white; background: var(--ink); }

    .footer-main {
      display: flex;
      padding-bottom: 48px;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
      border-bottom: 1px solid var(--white-line);
    }

    .footer-brand .logo { font-size: 24px; }
    .footer-brand p { max-width: 450px; margin-top: 16px; color: rgba(255, 255, 255, 0.55); font-size: 14px; line-height: 1.7; }
    .footer-bottom { display: flex; padding-top: 28px; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.42); font-size: 12px; }

    /* Motion */
    .js .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.75s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
    }
    .js .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .delay { transition-delay: 0.12s !important; }

    @media (max-width: 1000px) {
      .hero { background-position: 62% center; }
      .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
      .hero-side { justify-self: start; }
      .assurance-grid { grid-template-columns: repeat(2, 1fr); }
      .assurance-item:nth-child(3) { border-left: 0; }
      .assurance-item:nth-child(n+3) { border-top: 1px solid var(--line); }
      .handled-grid, .faq-grid { grid-template-columns: 1fr; gap: 64px; }
      .handled-intro { position: static; }
      .process-heading { grid-template-columns: 1fr; gap: 28px; }
      .process-row { grid-template-columns: 80px 1fr; gap: 24px; }
      .process-row p { grid-column: 2; }
    }

    @media (max-width: 700px) {
      .container {
    width: min(calc(100% - 28px), 1380px);
    justify-content: center;
}
      .section-title { font-size: clamp(2.65rem, 13vw, 4rem); }
      .section-copy { margin-top: 24px; font-size: 17px; line-height: 1.7; }
      .button { width: 100%; }

      .hero {
        min-height: 860px;
        background-image:
          linear-gradient(0deg, rgba(4, 19, 16, 0.92) 0%, rgba(4, 19, 16, 0.5) 61%, rgba(4, 19, 16, 0.15) 100%),
          url("https://images.pexels.com/photos/12284244/pexels-photo-12284244.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1200");
        background-position: 61% center;
      }

      .hero-inner { min-height: 860px; padding-top: 60px; padding-bottom: 44px; }
      .hero-wordmark { font-size: clamp(4.6rem, 23vw, 7.3rem); letter-spacing: -0.06em; }
      .hero-divider { margin-top: 26px; }
      .hero-bottom { padding-top: 24px; gap: 22px; }
      .hero h1 {
        max-width: 880px;
        font-size: clamp(2.1rem, 4.5vw, 4.9rem);
        font-weight: 500;
        line-height: 1.02;
        letter-spacing: -0.055em;
        color: #fff;
      }
      .hero-lead { font-size: 16px; }
      .photo-credit { display: none; }

      .assurance-item { min-height: 88px; padding: 0 8px; }
      .assurance-item:nth-child(even) { padding-left: 14px; }
      .assurance-item span:last-child { font-size: 13px; }

      .handled-section, .process-section { padding: 96px 0; }
      .faq-section { padding: 96px 0; }
      .handled-grid, .faq-grid { gap: 48px; }
      .service-row { min-height: 76px; grid-template-columns: 34px 1fr 24px; gap: 12px; }
      .service-row h3 { font-size: 17px; }
      .process-heading { margin-bottom: 44px; }
      .process-row { padding: 32px 0; grid-template-columns: 60px 1fr; gap: 18px; }
      .process-number { font-size: 3.5rem; }
      .process-row h3 { font-size: 24px; }
      .image-cta { min-height: 640px; padding: 80px 0; background-position: 60% center; }
      .image-cta-content > p { font-size: 17px; }
      .faq-toggle span { font-size: 18px; }
      .site-footer { padding-top: 48px; }
      .footer-main { flex-direction: column; align-items: stretch; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      .js .reveal { opacity: 1; transform: none; }
    }
    
    
    