/*
Theme Name: Anchorpile
Author: Antigravity Subagent
Description: Custom theme for Anchorpile
Version: 1.0
*/

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --navy: #1C2B6B;
      --navy-dark: #111D4A;
      --navy-light: #2A3F8F;
      --orange: #E85D20;
      --orange-light: #FF6B2B;
      --orange-pale: #FFF0EB;
      --white: #fff;
      --gray-50: #F8F9FB;
      --gray-100: #F1F2F5;
      --gray-200: #E2E4EA;
      --gray-400: #9299A8;
      --gray-600: #5A6070;
      --gray-800: #2C2F38;
      --text: #1A1D24;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden
    }

    a {
      text-decoration: none;
      color: inherit
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 2rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid var(--gray-200);
      backdrop-filter: blur(8px);
      transition: box-shadow .3s
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .nav-logo-box {
      width: 38px;
      height: 38px;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .nav-logo-box svg {
      width: 22px;
      height: 22px
    }

    .nav-brand {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.3px
    }

    .nav-brand span {
      color: var(--orange)
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      transition: color .2s
    }

    .nav-links a:hover {
      color: var(--navy)
    }

    .nav-cta {
      background: var(--orange);
      color: #fff;
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      transition: background .2s, transform .15s
    }

    .nav-cta:hover {
      background: var(--orange-light);
      transform: translateY(-1px)
    }

    .nav-sub {
      font-size: 11px;
      color: var(--gray-400);
      font-weight: 500
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 68px
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #111D4A 0%, #1C2B6B 50%, #1A3A7A 100%);
      opacity: 1
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 60px 60px
    }

    .hero-glow {
      position: absolute;
      top: -10%;
      right: -5%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(232, 93, 32, .18) 0%, transparent 65%);
      pointer-events: none
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1120px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232, 93, 32, .15);
      border: 1px solid rgba(232, 93, 32, .3);
      color: #FFA57A;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 1.5rem
    }

    .hero-tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(1.3)
      }
    }

    .hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 1.25rem
    }

    .hero h1 em {
      color: var(--orange);
      font-style: normal
    }

    .hero-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 480px
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      padding: 13px 26px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      transition: all .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-primary:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 93, 32, .35)
    }

    .btn-ghost {
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      opacity: .85;
      transition: opacity .2s
    }

    .btn-ghost:hover {
      opacity: 1
    }

    .hero-badges {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .hero-badge-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hero-badge-icon svg {
      width: 16px;
      height: 16px;
      stroke: #FFA57A
    }

    .hero-badge-text {
      font-size: 13px;
      color: rgba(255, 255, 255, .8);
      font-weight: 500
    }

    .hero-right {
      position: relative
    }

    .hero-card-main {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      backdrop-filter: blur(10px)
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px
    }

    .hero-stat {
      background: rgba(255, 255, 255, .06);
      border-radius: var(--radius-sm);
      padding: 1rem;
      text-align: center
    }

    .hero-stat-num {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      display: block;
      letter-spacing: -1px
    }

    .hero-stat-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .55);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .05em
    }

    .hero-cert {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(232, 93, 32, .15);
      border: 1px solid rgba(232, 93, 32, .2);
      border-radius: var(--radius-sm);
      padding: .75rem 1rem
    }

    .hero-cert-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .hero-cert-text {
      font-size: 13px;
      color: rgba(255, 255, 255, .9);
      font-weight: 500
    }

    .hero-cert-text small {
      display: block;
      font-size: 11px;
      color: rgba(255, 255, 255, .5);
      font-weight: 400
    }

    .scroll-arrow {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(6px)
      }
    }

    .scroll-arrow svg {
      width: 24px;
      height: 24px;
      stroke: rgba(255, 255, 255, .4)
    }

    /* SECTIONS COMMON */
    section {
      padding: 5rem 2rem
    }

    .container {
      max-width: 1120px;
      margin: 0 auto
    }

    .section-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .5rem
    }

    .section-h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
      margin-bottom: .75rem;
      line-height: 1.2
    }

    .section-sub {
      font-size: 16px;
      color: var(--gray-600);
      max-width: 580px;
      line-height: 1.7
    }

    .section-header {
      margin-bottom: 3rem
    }

    .section-header.center {
      text-align: center
    }

    .section-header.center .section-sub {
      margin: 0 auto
    }

    /* PAIN POINTS */
    .pain {
      background: var(--gray-50)
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 2rem
    }

    .pain-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      font-size: 14px;
      font-weight: 600;
      color: var(--orange);
      transition: all .2s;
      cursor: default;
      position: relative;
      overflow: hidden
    }

    .pain-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--orange);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .25s
    }

    .pain-card:hover {
      border-color: var(--orange);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(232, 93, 32, .1)
    }

    .pain-card:hover::before {
      transform: scaleY(1)
    }

    .pain-footer {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7
    }

    .pain-footer strong {
      color: var(--navy)
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .svc-card {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all .25s;
      background: #fff
    }

    .svc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(28, 43, 107, .1);
      border-color: var(--navy)
    }

    .svc-img {
      height: 160px;
      background: var(--gray-100);
      position: relative;
      overflow: hidden
    }

    .svc-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #E8ECF5, #C8D0E8);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .svc-img-placeholder svg {
      width: 48px;
      height: 48px;
      stroke: var(--navy);
      opacity: .4
    }

    .svc-body {
      padding: 1.5rem
    }

    .svc-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: .75rem
    }

    .svc-text {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7
    }

    /* BENEFITS */
    .benefits {
      background: var(--navy)
    }

    .benefits .section-h2 {
      color: #fff
    }

    .benefits .section-sub {
      color: rgba(255, 255, 255, .65)
    }

    .benefits .section-tag {
      color: #FFA57A
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .ben-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      transition: all .25s
    }

    .ben-card:hover {
      background: rgba(255, 255, 255, .11);
      border-color: rgba(255, 255, 255, .2);
      transform: translateY(-3px)
    }

    .ben-card-title {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .ben-card-title svg {
      width: 18px;
      height: 18px;
      stroke: var(--orange);
      flex-shrink: 0
    }

    .ben-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: .65rem
    }

    .ben-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(232, 93, 32, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px
    }

    .ben-check svg {
      width: 10px;
      height: 10px;
      stroke: var(--orange);
      stroke-width: 2.5
    }

    .ben-item-text {
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
      font-weight: 500
    }

    .ben-item-pill {
      display: inline-block;
      background: rgba(232, 93, 32, .15);
      color: #FFA57A;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      margin-left: 6px
    }

    /* MORE THAN */
    .more {
      background: var(--gray-50)
    }

    .more-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 2rem
    }

    .more-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: all .25s
    }

    .more-card:hover {
      border-color: var(--orange);
      box-shadow: 0 8px 24px rgba(232, 93, 32, .08);
      transform: translateY(-3px)
    }

    .more-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--orange-pale);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .more-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--orange)
    }

    .more-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4
    }

    .more-problem {
      font-size: 13px;
      color: var(--gray-400);
      font-style: italic;
      border-left: 2px solid var(--gray-200);
      padding-left: 10px;
      line-height: 1.6
    }

    .more-solution {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.65
    }

    .more-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
      background: var(--orange-pale);
      color: #993C1D;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      width: fit-content
    }

    .more-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0
    }

    .process-strip {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.25rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .process-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray-400);
      margin-right: .5rem
    }

    .proc-step {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .proc-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .proc-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy)
    }

    .proc-arrow {
      color: var(--gray-200);
      font-size: 18px
    }

    /* CERTIFICATIONS */
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 720px
    }

    .cert-card {
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all .2s
    }

    .cert-card:hover {
      border-color: var(--navy);
      transform: translateY(-2px)
    }

    .cert-img {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-sm);
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .cert-img svg {
      width: 32px;
      height: 32px;
      stroke: var(--navy);
      opacity: .5
    }

    .cert-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy)
    }

    .cert-sub {
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 2px
    }

    /* COMPARISON */
    .compare {
      background: var(--gray-50)
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--gray-200)
    }

    .compare-table th {
      padding: 1rem 1.5rem;
      font-size: 13px;
      font-weight: 700;
      text-align: left
    }

    .compare-table th:first-child {
      background: var(--gray-100);
      color: var(--gray-600);
      width: 40%
    }

    .compare-table th:last-child {
      background: var(--navy);
      color: #fff
    }

    .compare-table td {
      padding: .9rem 1.5rem;
      font-size: 14px;
      border-top: 1px solid var(--gray-200);
      background: #fff
    }

    .compare-table td:last-child {
      background: #FEFAF8
    }

    .compare-x {
      color: #E24B4A;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .compare-x::before {
      content: '✕';
      font-size: 12px
    }

    .compare-ok {
      color: #3B6D11;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .compare-ok::before {
      content: '✓';
      font-size: 13px;
      color: var(--orange)
    }

    /* PROJECTS */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px
    }

    .proj-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: var(--gray-100);
      cursor: pointer;
      transition: transform .25s
    }

    .proj-card:hover {
      transform: scale(1.02)
    }

    .proj-img {
      height: 180px;
      background: linear-gradient(135deg, #C8D0E8, #A0AAC8);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .proj-img svg {
      width: 40px;
      height: 40px;
      stroke: var(--navy);
      opacity: .3
    }

    .proj-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(28, 43, 107, .85));
      padding: 1rem .75rem .75rem;
      color: #fff;
      font-size: 13px;
      font-weight: 700
    }

    /* TREES */
    .trees {
      background: var(--navy)
    }

    .trees .section-h2 {
      color: #fff
    }

    .trees .section-sub {
      color: rgba(255, 255, 255, .65)
    }

    .trees .section-tag {
      color: #FFA57A
    }

    .trees-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 2.5rem
    }

    .tree-card {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      text-align: center;
      color: rgba(255, 255, 255, .85);
      font-size: 14px;
      font-weight: 600;
      transition: all .2s
    }

    .tree-card:hover {
      background: rgba(255, 255, 255, .13);
      border-color: rgba(255, 255, 255, .2)
    }

    .trees-partner {
      margin-top: 1.5rem;
      font-size: 13px;
      color: rgba(255, 255, 255, .5)
    }

    .trees-partner a {
      color: #FFA57A;
      font-weight: 600
    }

    /* HOW IT WORKS */
    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 2.5rem
    }

    .hiw-step {
      text-align: center;
      padding: 1.5rem 1rem;
      background: #fff;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      transition: all .2s;
      position: relative
    }

    .hiw-step:hover {
      border-color: var(--orange);
      transform: translateY(-3px)
    }

    .hiw-step::after {
      content: '→';
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray-200);
      font-size: 18px;
      z-index: 1
    }

    .hiw-step:last-child::after {
      display: none
    }

    .hiw-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem
    }

    .hiw-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .5rem
    }

    .hiw-text {
      font-size: 12px;
      color: var(--gray-400);
      line-height: 1.6
    }

    /* CTA FINAL */
    .cta-final {
      background: var(--navy);
      text-align: center
    }

    .cta-final h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: .75rem;
      letter-spacing: -0.5px
    }

    .cta-final p {
      font-size: 16px;
      color: rgba(255, 255, 255, .65);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .btn-white {
      background: #fff;
      color: var(--navy);
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 700;
      transition: all .2s
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
    }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, .3);
      color: #fff;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 600;
      transition: all .2s
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .5)
    }

    .cta-contact {
      font-size: 14px;
      color: rgba(255, 255, 255, .5)
    }

    .cta-contact strong {
      color: rgba(255, 255, 255, .8)
    }

    /* CTA FINAL FORM */
    .cta-top {
      text-align: center;
      margin-bottom: 3rem
    }

    .cta-top h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: .6rem;
      letter-spacing: -0.5px
    }

    .cta-top p {
      font-size: 16px;
      color: rgba(255, 255, 255, .6);
      max-width: 500px;
      margin: 0 auto
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 2.5rem;
      align-items: start;
      max-width: 900px;
      margin: 0 auto
    }

    .cta-left {
      display: flex;
      flex-direction: column;
      gap: 1.25rem
    }

    .cta-person {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .cta-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .cta-person-name {
      font-size: 15px;
      font-weight: 700;
      color: #fff
    }

    .cta-person-role {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      margin-top: 2px
    }

    .cta-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      transition: color .2s
    }

    .cta-phone:hover {
      color: var(--orange)
    }

    .cta-divider {
      height: 1px;
      background: rgba(255, 255, 255, .1)
    }

    .cta-promises {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .cta-promise {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(255, 255, 255, .7);
      font-weight: 500
    }

    .cta-promise svg {
      stroke: var(--orange);
      flex-shrink: 0
    }

    .cta-form-wrap {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .form-field label {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray-600)
    }

    .req {
      color: var(--orange)
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: 9px 12px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      background: #fff
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(28, 43, 107, .08)
    }

    .form-field textarea {
      resize: vertical;
      min-height: 80px
    }

    .form-field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239299A8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center
    }

    .form-submit {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: var(--radius-sm);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .2s;
      margin-top: 4px
    }

    .form-submit:hover:not(:disabled) {
      background: var(--orange-light);
      transform: translateY(-1px)
    }

    /* FOOTER */
    footer {
      background: var(--navy-dark);
      padding: 2rem;
      text-align: center
    }

    .footer-logo {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin-bottom: .5rem
    }

    .footer-logo span {
      color: var(--orange)
    }

    .footer-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .3)
    }

    /* SCROLL ANIMATIONS */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0)
    }
  

    /* NUCLEAR CF7 CSS FIXES */
    .cta-form-wrap { text-align: left !important; display: block !important; width: 100% !important; box-sizing: border-box !important; }
    .wpcf7 { display: block !important; text-align: left !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
    .wpcf7 form { display: block !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
    .form-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; width: 100% !important; }
    .form-field { display: flex !important; flex-direction: column !important; width: 100% !important; align-items: stretch !important; }
    .form-field label { width: 100% !important; display: block !important; text-align: left !important; }
    .wpcf7-form-control-wrap { display: block !important; width: 100% !important; }
    .wpcf7-form-control-wrap input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    .wpcf7-form-control-wrap select,
    .wpcf7-form-control-wrap textarea,
    input.wpcf7-form-control,
    textarea.wpcf7-form-control,
    select.wpcf7-form-control { 
        width: 100% !important; 
        max-width: 100% !important; 
        box-sizing: border-box !important; 
    }
    .wpcf7 p { margin: 0 !important; padding: 0 !important; width: 100% !important; }
    .form-submit, .wpcf7-submit { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; display: block !important; margin-top: 15px !important; padding: 12px !important; background: var(--orange) !important; color: #fff !important; font-weight: 700 !important; font-size: 15px !important; border-radius: var(--radius-sm) !important; border: 0 !important; }
    
    /* SPLIT SECTION GLOBAL */
    .split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    
    /* GLOBAL MOBILE RESPONSIVENESS */
    @media (max-width: 768px) {
        .container { padding: 0 20px; }
        section { padding: 50px 0; }
        h1 { font-size: 34px !important; line-height: 1.2 !important; text-align: center; }
        .section-h2 { font-size: 26px !important; text-align: center; line-height: 1.25; margin-bottom: 1rem; }
        .section-sub, .section-tag { text-align: center; margin-left: auto; margin-right: auto; }
        
        /* Split Section Fix (Targeting the inline style) */
        .split-section { grid-template-columns: 1fr !important; gap: 3rem !important; display: grid !important; }
        
        /* Nav / Header */
        nav { padding: 15px 20px; flex-direction: row; justify-content: space-between; height: auto; }
        .nav-logo-box { width: 32px; height: 32px; }
        .nav-brand { font-size: 14px; }
        .nav-sub { display: none; }
        .nav-links a:not(.nav-cta) { display: none; }
        .nav-cta { padding: 8px 14px; font-size: 13px; }
        
        /* Hero */
        .hero { padding-top: 100px; padding-bottom: 40px; }
        .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 0; }
        .hero h1 { text-align: center; font-size: 36px !important; }
        .hero-sub { text-align: center; margin: 0 auto 2rem; }
        .hero-tag { margin: 0 auto 20px; display: flex; width: max-content; }
        .hero-actions { justify-content: center; flex-direction: column; gap: 15px; }
        .hero-badges { flex-direction: column; gap: 12px; align-items: center; justify-content: center; }
        .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
        .hero-badge { margin: 0 auto; width: max-content; }
        
        /* Pain Points */
        .pain-grid { grid-template-columns: 1fr; gap: 12px; }
        .pain-card { padding: 18px; text-align: center; }
        
        /* Services */
        .services-grid { grid-template-columns: 1fr; gap: 20px; }
        .svc-img { height: 200px; }
        
        /* Benefits */
        .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
        .ben-item { background: #fff0e6; color: var(--orange); padding: 8px 18px; border-radius: 20px; margin-bottom: 10px; width: fit-content; }
        .ben-check { display: none; }
        .ben-item-text { color: var(--orange); font-weight: 700; }
        
        /* Certifications */
        .cert-grid { grid-template-columns: 1fr; gap: 12px; }
        .cert-card { display: flex; flex-direction: row; align-items: center; padding: 15px; }
        
        /* Comparison Table */
        .compare-table { display: block; overflow-x: auto; }
        .compare-table th { padding: 12px 10px; font-size: 12px; }
        .compare-table td { padding: 12px 10px; font-size: 13px; }
        .compare-table th:first-child { width: 45%; }
        
        /* Process Layout Fix */
        .process-strip { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
        .proc-arrow { transform: rotate(90deg); margin: 0; }
        .more-cards { grid-template-columns: 1fr; gap: 16px; }
        
        /* Projects & Trees */
        .projects-grid, .trees-grid { grid-template-columns: 1fr; gap: 16px; }
        
        /* How it works */
        .hiw-steps { grid-template-columns: 1fr; gap: 16px; }
        
        /* CTA */
        .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
        .cta-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .cta-promises { text-align: left; margin-top: 20px; }
        
        /* Form Overrides */
        .form-row { grid-template-columns: 1fr !important; }
        .form-submit, .wpcf7-submit { width: max-content !important; min-width: 200px; margin: 20px auto 0 !important; padding: 15px 30px !important; border-radius: 30px !important; font-size: 16px !important;}
    }

