/* ============================================
       PAGE OVERRIDES
       ============================================ */
      :root {
        --fs-hero: clamp(52px, 6.5vw, 88px);
      }

      /* ============================================
       HERO
       ============================================ */
      .hero {
        background: var(--black);
        color: var(--white);
        position: relative;
        overflow: hidden;
      }
      .hero .container-wide {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 0;
        align-items: center;
        min-height: 540px;
        padding-top: 48px;
        padding-bottom: 48px;
        position: relative;
      }
      .hero__content {
        position: relative;
        z-index: 2;
      }
      .hero__content::before {
        content: "";
        display: block;
        width: 54px;
        height: 4px;
        border-radius: 999px;
        background: var(--green);
        margin-bottom: 22px;
      }
      .hero__eyebrow {
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--green);
        margin-bottom: 10px;
      }
      .hero__title {
        font-size: var(--fs-hero);
        line-height: 0.92;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 18px;
      }
      .hero__desc {
        font-size: var(--fs-md);
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.65;
        max-width: 480px;
        margin-bottom: 28px;
      }
      .hero__actions {
        display: flex;
        gap: 14px;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 28px;
      }
      .hero__media {
        position: absolute;
        top: 0;
        right: calc(
          -1 * (100vw - min(100vw - 48px, var(--container-wide))) / 2
        );
        bottom: 0;
        width: 54vw;
        overflow: hidden;
      }
      .hero__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(8, 10, 8, 0.4) 0%,
          rgba(8, 10, 8, 0.12) 24%,
          rgba(8, 10, 8, 0) 48%
        );
        pointer-events: none;
      }
      .hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
      }
      .hero__trust {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .hero__trust-item {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 11px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }
      .hero__trust-item svg {
        width: 16px;
        height: 16px;
        color: var(--green);
        flex-shrink: 0;
      }

      /* ============================================
       PROOF STRIP
       ============================================ */
      .proof-strip {
        background: var(--green);
        padding: 14px 0;
      }
      .proof-strip__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
      }
      .proof-strip__item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 800;
        color: var(--black);
        text-transform: uppercase;
        letter-spacing: 0.02em;
        white-space: nowrap;
      }
      .proof-strip__item svg {
        width: 18px;
        height: 18px;
        color: var(--black);
        flex-shrink: 0;
      }
      .proof-strip__divider {
        width: 1px;
        height: 20px;
        background: rgba(8, 10, 8, 0.2);
      }
      .proof-strip__stars {
        color: var(--black);
        font-size: 13px;
        letter-spacing: 1px;
      }

      /* ============================================
       SITUATIONS GRID
       ============================================ */
      .situations {
        padding: 64px 0;
        background: var(--white);
      }
      .situations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .situation-card {
        background: var(--off-white);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px 24px;
        transition: all 0.25s ease;
      }
      .situation-card:hover {
        border-color: var(--green);
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(8, 10, 8, 0.07);
      }
      .situation-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--green-soft);
        margin-bottom: 14px;
      }
      .situation-card__icon svg {
        width: 22px;
        height: 22px;
        color: var(--green-dark);
      }
      .situation-card__title {
        font-family: var(--font-heading);
        font-size: var(--fs-md);
        font-weight: 700;
        text-transform: uppercase;
        color: var(--black);
        margin-bottom: 8px;
        letter-spacing: 0.01em;
      }
      .situation-card__desc {
        font-size: var(--fs-sm);
        color: var(--gray);
        line-height: 1.55;
      }

      /* ============================================
       CREW TRUST SECTION
       ============================================ */
      .crew-trust {
        padding: 0;
        overflow: hidden;
      }
      .crew-trust .container-wide {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        align-items: stretch;
      }
      .crew-trust__image {
        position: relative;
        min-height: 480px;
        overflow: hidden;
      }
      .crew-trust__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
      .crew-trust__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px 48px 48px 42px;
      }
      .crew-trust__content .section__eyebrow {
        color: var(--green-dark);
        margin-bottom: 6px;
      }
      .crew-trust__content h2 {
        font-size: var(--fs-2xl);
        margin-bottom: 12px;
        line-height: 1;
      }
      .crew-trust__desc {
        color: var(--gray);
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 440px;
      }
      .crew-trust__features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
        margin-bottom: 24px;
      }
      .crew-trust__feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: var(--fs-sm);
        font-weight: 600;
        color: var(--text);
      }
      .crew-trust__feature svg {
        width: 18px;
        height: 18px;
        color: var(--green);
        flex-shrink: 0;
      }

      /* Dark info panel */
      .crew-trust__panel {
        background: var(--black);
        border-radius: 12px;
        padding: 24px;
        margin-top: 20px;
      }
      .crew-trust__panel-title {
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--green);
        margin-bottom: 10px;
      }
      .crew-trust__panel-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 6px;
        line-height: 1.45;
      }
      .crew-trust__panel-item svg {
        width: 16px;
        height: 16px;
        color: var(--green);
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* ============================================
       BEFORE / AFTER GALLERY
       ============================================ */
      .before-after {
        padding: 64px 0;
        background: var(--off-white);
      }
      .ba-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .ba-card {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--white);
        transition: all 0.25s ease;
      }
      .ba-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(8, 10, 8, 0.08);
      }
      .ba-card__image {
        position: relative;
        height: 220px;
        overflow: hidden;
      }
      .ba-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .ba-card__label {
        position: absolute;
        top: 12px;
        left: 12px;
        display: inline-flex;
        gap: 6px;
      }
      .ba-card__tag {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        padding: 4px 10px;
        border-radius: 4px;
      }
      .ba-card__tag--before {
        background: rgba(8, 10, 8, 0.75);
        color: var(--white);
        backdrop-filter: blur(6px);
      }
      .ba-card__tag--after {
        background: var(--green);
        color: var(--black);
      }
      .ba-card__body {
        padding: 16px 18px;
      }
      .ba-card__title {
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 700;
        text-transform: uppercase;
        color: var(--black);
        margin-bottom: 4px;
      }
      .ba-card__desc {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.45;
      }

      /* ============================================
       PROCESS STEPS
       ============================================ */
      .how-it-works {
        padding: 32px 0 38px;
        background:
          radial-gradient(
            circle at 50% 0%,
            rgba(93, 187, 47, 0.08) 0%,
            rgba(93, 187, 47, 0) 34%
          ),
          linear-gradient(135deg, #050605 0%, #111511 52%, #080a08 100%);
        color: var(--white);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .how-it-works .section__header {
        margin-bottom: 22px;
      }
      .how-it-works .section__eyebrow {
        color: var(--green);
        margin-bottom: 4px;
      }
      .how-it-works .section__title {
        color: var(--white);
        font-size: clamp(34px, 3.5vw, 46px);
        letter-spacing: 0.01em;
        text-shadow: 0 2px 0 rgba(0, 0, 0, 0.38);
      }
      .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 34px;
      }
      .process-step {
        text-align: center;
        position: relative;
        padding: 0 10px;
      }
      .process-step__number {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--green);
        color: var(--black);
        font-family: var(--font-heading);
        font-weight: 900;
        font-size: 16px;
        display: grid;
        place-items: center;
        margin: 0 auto 10px;
        box-shadow: 0 0 18px rgba(93, 187, 47, 0.28);
      }
      .process-step__icon {
        width: 72px;
        height: 58px;
        display: grid;
        place-items: center;
        margin: 0 auto 12px;
      }
      .process-step__icon img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        filter: brightness(0) invert(1);
      }
      .process-step__title {
        font-family: var(--font-heading);
        font-size: var(--fs-lg);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 6px;
        letter-spacing: 0.01em;
        color: var(--green);
      }
      .process-step__desc {
        font-size: var(--fs-sm);
        color: var(--white);
        line-height: 1.45;
        max-width: 230px;
        margin-inline: auto;
      }
      .process-step:not(:last-child)::after {
        content: "\2192";
        position: absolute;
        top: 72px;
        right: -24px;
        font-size: 34px;
        font-weight: 700;
        color: var(--green);
        line-height: 1;
        opacity: 0.9;
      }

      /* ============================================
       PRICING GUIDE
       ============================================ */
      .pricing-guide {
        padding: 56px 0 64px;
        background: var(--white);
      }
      .pricing-guide .section__header {
        margin-bottom: 32px;
      }
      .pricing-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 780px;
        margin: 0 auto 28px;
      }
      .pricing-card {
        border: 2px solid var(--green);
        border-radius: 14px;
        padding: 28px 24px;
        background: var(--white);
        text-align: center;
        transition: all 0.25s ease;
        position: relative;
      }
      .pricing-card:hover {
        box-shadow: 0 16px 40px rgba(93, 187, 47, 0.12);
        transform: translateY(-2px);
      }
      .pricing-card__label {
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 700;
        text-transform: uppercase;
        color: var(--gray);
        margin-bottom: 2px;
        letter-spacing: 0.04em;
      }
      .pricing-card__sublabel {
        font-size: var(--fs-xs);
        color: var(--gray);
        margin-bottom: 12px;
      }
      .pricing-card__price {
        font-family: var(--font-heading);
        font-size: 48px;
        font-weight: 700;
        color: var(--black);
        line-height: 0.94;
        margin-bottom: 10px;
      }
      .pricing-card__desc {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.5;
      }
      .pricing-card__icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
      }
      .pricing-card__icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      .pricing-note {
        text-align: center;
        max-width: 540px;
        margin: 0 auto;
      }
      .pricing-note__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--green-soft);
        color: var(--green-dark);
        font-size: 13px;
        font-weight: 700;
        padding: 8px 16px;
        border-radius: 6px;
      }
      .pricing-note__badge svg {
        width: 16px;
        height: 16px;
      }
      .pricing-note p {
        margin-top: 10px;
        font-size: var(--fs-sm);
        color: var(--gray);
        line-height: 1.55;
      }

      /* ============================================
       WHY CHOOSE + SERVICE AREA
       ============================================ */
      .why-area {
        padding: 0;
        overflow: hidden;
      }
      .why-area .container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 0;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        padding-left: max(24px, calc((100% - var(--container-max)) / 2 + 24px));
        padding-right: 0;
      }
      .why-area__content {
        padding: 48px 36px 48px 0;
      }
      .why-area__content .section__eyebrow {
        color: var(--green-dark);
        margin-bottom: 6px;
      }
      .why-area__content h2 {
        font-size: var(--fs-2xl);
        margin-bottom: 12px;
      }
      .why-area__desc {
        color: var(--gray);
        margin-bottom: 20px;
        line-height: 1.55;
        max-width: 420px;
      }
      .why-area__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
        margin-bottom: 24px;
      }
      .why-area__item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: var(--fs-sm);
        font-weight: 600;
        color: var(--text);
      }
      .why-area__item svg {
        width: 18px;
        height: 18px;
        color: var(--green);
        flex-shrink: 0;
      }
      .why-area__map {
        background: var(--off-white);
        border-left: 1px solid var(--border);
        overflow: hidden;
        position: relative;
        min-height: 380px;
      }
      .why-area__map img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 32px;
      }
      .why-area__map iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
      }
      .why-area__map-badge {
        position: absolute;
        left: 24px;
        bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 12px;
        background: rgba(8, 10, 8, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 36px rgba(8, 10, 8, 0.24);
      }
      .why-area__map-badge-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(93, 187, 47, 0.16);
      }
      .why-area__map-badge-icon svg {
        width: 16px;
        height: 16px;
        color: var(--green-bright);
      }
      .why-area__map-badge-text {
        font-size: 12px;
        font-weight: 700;
        color: var(--white);
      }

      /* ============================================
       TESTIMONIALS
       ============================================ */
      .testimonials {
        padding: 56px 0;
        background: var(--black);
        color: var(--white);
      }
      .testimonials .section__header {
        margin-bottom: 32px;
      }
      .testimonials .section__eyebrow {
        color: var(--green);
      }
      .testimonials .section__title {
        color: var(--white);
      }
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .testimonial-card {
        background: var(--charcoal);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 24px;
      }
      .testimonial-card__stars {
        color: var(--star);
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }
      .testimonial-card__text {
        font-size: var(--fs-sm);
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 14px;
        font-style: italic;
      }
      .testimonial-card__author {
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
      }
      .testimonial-card__location {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        margin-top: 2px;
      }

      /* ============================================
       FAQ + FORM
       ============================================ */
      .faq-form {
        padding: 56px 0 64px;
        background: var(--off-white);
      }
      .faq-form__layout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 36px;
        align-items: start;
      }
      .faq-form__left h2 {
        font-size: var(--fs-2xl);
        margin-bottom: 6px;
      }
      .faq-form__left .section__subtitle {
        margin-bottom: 24px;
      }
      .faq-item {
        border-bottom: 1px solid var(--border);
      }
      .faq-item__question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-weight: 700;
        font-size: var(--fs-base);
        color: var(--black);
        text-align: left;
        cursor: pointer;
        gap: 12px;
      }
      .faq-item__question svg {
        width: 20px;
        height: 20px;
        color: var(--green);
        flex-shrink: 0;
        transition: transform 0.3s ease;
      }
      .faq-item.open .faq-item__question svg {
        transform: rotate(45deg);
      }
      .faq-item__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-item__answer-inner {
        padding: 0 0 16px;
        font-size: var(--fs-sm);
        color: var(--gray);
        line-height: 1.65;
      }
      .faq-item.open .faq-item__answer {
        max-height: 300px;
      }

      /* Form card */
      .faq-form__card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 16px 40px rgba(8, 10, 8, 0.06);
      }
      .faq-form__card h3 {
        font-size: var(--fs-lg);
        margin-bottom: 4px;
      }
      .faq-form__card p {
        font-size: var(--fs-sm);
        color: var(--gray);
        margin-bottom: 18px;
      }
      .form-group {
        margin-bottom: 14px;
      }
      .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text);
        margin-bottom: 5px;
      }
      .form-input,
      .form-select,
      .form-textarea {
        width: 100%;
        min-height: 44px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: var(--white);
        color: var(--text);
        padding: 10px 14px;
        font-size: 15px;
        font-family: var(--font-body);
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .form-textarea {
        min-height: 90px;
        resize: vertical;
      }
      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        outline: none;
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(93, 187, 47, 0.12);
      }
      .form-submit {
        width: 100%;
        margin-top: 4px;
      }

      /* ============================================
       RESPONSIVE
       ============================================ */
      @media (max-width: 1024px) {
        .hero {
          position: relative;
        }
        .hero .container-wide {
          grid-template-columns: 1fr;
          min-height: clamp(560px, 102vw, 700px);
          padding-top: 20px;
          padding-bottom: 36px;
          align-content: center;
        }
        /* Hero photo sits BEHIND the content with a readability scrim. */
        .hero__content {
          position: relative;
          z-index: 2;
        }
        .hero__media {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          margin: 0;
          min-height: 0;
          border-radius: 0;
          z-index: 0;
          overflow: hidden;
        }
        .hero__media::after {
          background: linear-gradient(
            180deg,
            rgba(8, 10, 8, 0.9) 0%,
            rgba(8, 10, 8, 0.78) 38%,
            rgba(8, 10, 8, 0.58) 72%,
            rgba(8, 10, 8, 0.62) 100%
          );
        }
        .situations-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .crew-trust .container-wide {
          grid-template-columns: 1fr;
        }
        .crew-trust__image {
          min-height: 320px;
        }
        .crew-trust__content {
          padding: 36px 24px;
        }
        .ba-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .why-area .container {
          grid-template-columns: 1fr;
          padding-right: 24px;
        }
        .why-area__map {
          min-height: 300px;
          border-left: none;
          border-top: 1px solid var(--border);
          border-radius: 16px;
        }
        .testimonials-grid {
          grid-template-columns: 1fr 1fr;
        }
        .faq-form__layout {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        /* Compact pill trust badges on mobile (match the homepage look). */
        .hero__trust {
          flex-direction: column;
          align-items: stretch;
          gap: 10px;
          width: 100%;
        }
        .hero__trust-item {
          gap: 10px;
          padding: 11px 14px;
          border: 1px solid rgba(255, 255, 255, 0.14);
          border-radius: 10px;
          background: rgba(255, 255, 255, 0.04);
          font-size: 12px;
          color: rgba(255, 255, 255, 0.85);
        }
        .proof-strip__inner {
          gap: 14px;
        }
        .proof-strip__divider {
          display: none;
        }
        .situations-grid {
          grid-template-columns: 1fr;
        }
        .crew-trust__features {
          grid-template-columns: 1fr;
        }
        .ba-grid {
          grid-template-columns: 1fr;
        }
        .pricing-cards {
          grid-template-columns: 1fr;
        }
        .why-area__grid {
          grid-template-columns: 1fr;
        }
        .process-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }
        .process-step::after {
          display: none;
        }
        .testimonials-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .hero__actions {
          flex-direction: column;
        }
        .hero__actions .btn-primary,
        .hero__actions .btn-secondary {
          width: 100%;
        }
        .hero__trust {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
        }
      }
