.elementor-17569 .elementor-element.elementor-element-e6f4c09 > .elementor-container > .elementor-row{align-items:stretch;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --black: #0f0f0f;
    --white: #f9faf8;
    --cream: #eef3ee;
    --green: #2d6a4f;
    --green-light: #95c9ab;
    --green-xlight: #e4f0e8;
    --gray: #5a6b60;
    --gray-light: #c8d5cb;
    --border: #d3e0d6;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
  }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
 
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(249,250,248,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    padding: 0 2rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--black);
    letter-spacing: 0.02em;
  }
  .nav-cta {
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s;
    letter-spacing: 0.03em;
  }
  .nav-cta:hover { opacity: 0.8; }
 
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(45,106,79,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s forwards;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
    max-width: 820px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.25s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--green);
  }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s forwards;
  }
  .btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 16px 40px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: #1e4d39; transform: translateY(-1px); }
  .hero-note {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.05em;
  }
  .hero-divider {
    width: 40px;
    height: 0.5px;
    background: var(--green);
    margin: 4rem auto 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }
 
  /* SECTIONS */
  section {
    padding: 6rem 2rem;
    max-width: 860px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
  }
  h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 2.5rem;
  }
  h2 em { font-style: italic; color: var(--green); }
 
  /* PROBLEM / SOLUTION */
  .problem-section { border-top: 0.5px solid var(--border); }
  .pain-list {
    list-style: none;
    margin-bottom: 3.5rem;
  }
  .pain-list li {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
  }
  .pain-list li:first-child { border-top: 0.5px solid var(--border); }
  .pain-x { color: #b94040; font-size: 14px; margin-top: 3px; flex-shrink: 0; font-weight: 500; }
 
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
  }
  .pillar {
    background: var(--white);
    padding: 2rem 1.5rem;
  }
  .pillar-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .pillar-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .pillar-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
  }
 
  /* TESTIMONIALS */
  .testi-section { border-top: 0.5px solid var(--border); }
  .testi-featured {
    border: 0.5px solid var(--border);
    padding: 2.5rem;
    margin-bottom: 1px;
    background: var(--green-xlight);
    position: relative;
  }
  .testi-featured::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--green-light);
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
  }
  .testi-situation {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.25rem;
    padding-left: 0;
  }
  .testi-quote {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    padding-left: 0;
  }
  .testi-result {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.05em;
    border-top: 0.5px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .testi-result strong { color: var(--black); }
 
  .testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 1px;
  }
  .testi-card {
    background: var(--white);
    padding: 1.75rem;
  }
  .testi-card .testi-quote {
    font-size: 15px;
  }
 
  /* TRUSTPILOT */
  .tp-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 0.5px solid var(--border);
    padding: 1.75rem 2rem;
    margin-top: 3rem;
    background: var(--green-xlight);
  }
  .tp-score {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--black);
    line-height: 1;
  }
  .tp-stars { color: #00b67a; font-size: 20px; letter-spacing: 2px; }
  .tp-label { font-size: 13px; color: var(--gray); margin-top: 4px; font-weight: 300; }
  .tp-divider { width: 0.5px; height: 48px; background: var(--border); }
  .tp-text { font-size: 14px; color: var(--gray); line-height: 1.6; font-weight: 300; }
  .tp-link {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 0.5px solid var(--black);
    padding-bottom: 1px;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .tp-link:hover { color: var(--green); border-color: var(--green); }
 
  /* BIO */
  .bio-section { border-top: 0.5px solid var(--border); }
  .bio {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .bio-photo-wrap { position: relative; }
  .bio-photo {
    width: 100%;
    display: block;
    filter: grayscale(15%);
  }
  .bio-photo-frame {
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 0.5px solid var(--green);
    z-index: -1;
  }
  .bio-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
  }
  .bio-role {
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
  .bio-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2rem;
  }
  .credential-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border: 0.5px solid var(--border);
    color: var(--gray);
    letter-spacing: 0.05em;
  }
  .bio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
    margin-bottom: 2rem;
  }
  .bio-stat {
    background: var(--white);
    padding: 1rem 1.25rem;
  }
  .bio-stat-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
  }
  .bio-stat-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 300;
    margin-top: 2px;
  }
  .bio-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
  }
  .bio-text p { margin-bottom: 1rem; }
  .bio-text p:last-child { margin-bottom: 0; }
  .bio-text em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--black);
    font-size: 15px;
  }
 
  /* GUARANTEE */
  .guarantee-section { border-top: 0.5px solid var(--border); }
  .guarantee-box {
    border: 0.5px solid var(--green);
    padding: 3rem;
    background: var(--green-xlight);
    text-align: center;
  }
  .guarantee-icon {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--green-light);
    margin-bottom: 1.5rem;
  }
  .guarantee-box h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }
  .guarantee-box p {
    font-size: 15px;
    color: var(--gray);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
  }
 
  /* FINAL CTA */
  .final-cta-section {
    border-top: 0.5px solid var(--border);
    text-align: center;
    padding: 6rem 2rem 8rem;
    max-width: 860px;
    margin: 0 auto;
  }
  .final-cta-section h2 { margin-bottom: 1.25rem; }
  .final-cta-section p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
  }
  .final-cta-section .hero-note { margin-top: 1rem; }
 
  /* FOOTER */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  footer a { color: var(--gray); text-decoration: underline; }
 
  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  /* RESPONSIVE */
  @media (max-width: 700px) {
    .pillars { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .bio { grid-template-columns: 1fr; gap: 2rem; }
    .bio-photo-frame { display: none; }
    .bio-photo { max-width: 240px; }
    .tp-bar { flex-wrap: wrap; gap: 1rem; }
    .tp-link { margin-left: 0; }
    nav { padding: 0 1rem; }
    section { padding: 4rem 1.25rem; }
    .testi-featured { padding: 2rem 1.5rem; }
    .guarantee-box { padding: 2rem 1.5rem; }
  }/* End custom CSS */