 :root {
     --ink: #020202;
     --muted: #7C7C7C;
     --grey: #3F3F3F;
     --base: #F6F6F6;
     --white: #FFFFFF;
     --bluewash: #F0F7F2;
     --dark: #242323;
     --darker: #1C1C1C;
     --blue: #588A65;
     --blue-l: #588A65;
     --blue-d: #3F596C;
     --teal: #75939D;
     --green: #2A8A40;
     --green-s: #588A65;
     --card-blue: rgba(190, 220, 205, 0.82);
     --card-grey: #F1F1F1;
     --card-off: #FAFAFA;
     --site: 980px;
     --gut: clamp(16px, 4vw, 40px);
     --sf: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     background: var(--base);
     color: var(--ink);
     font-family: var(--sf);
     font-size: clamp(16px, 4vw, 18px);
     line-height: 1.5;
     -webkit-font-smoothing: antialiased;
     text-size-adjust: 100%;
     -webkit-text-size-adjust: 100%;
 }

 img {
     max-width: 100%;
     display: block;
     height: auto;
 }

 :focus-visible {
     outline: 2px solid var(--green);
     outline-offset: 3px
 }

 @media (prefers-reduced-motion:reduce) {
     * {
         transition: none !important;
         animation: none !important
     }
 }

 /* bands */
 .s {
     padding: clamp(70px, 9vw, 120px) var(--gut);
     contain: layout style paint;
 }

 .s--white {
     background: var(--white)
 }

 .s--base {
     background: var(--base)
 }

 .s--wash {
     background: var(--bluewash)
 }

 .s--dark {
     background: var(--dark);
     color: #fff
 }

 .s--darker {
     background: var(--darker);
     color: #fff
 }

 .s--blue {
     background: linear-gradient(135deg, #43875f 0%, #7eaf96 100%);
     color: #fff
 }

 .s--hero {
     background:
         radial-gradient(circle at 49% 0%, rgba(152, 198, 156, 0.44) 0%, rgba(126, 175, 150, 0) 35%),
         radial-gradient(circle at 49% 100%, rgba(126, 175, 150, 0.36) 0%, rgba(149, 170, 185, 0) 35%),
         radial-gradient(circle at 69% 46%, #fff 0%, rgba(255, 255, 255, 0) 40%),
         radial-gradient(circle at 34% 50%, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, 0) 50%),
         var(--base)
 }

 .s--glow {
     background:
         radial-gradient(circle at 56% 77%, #7eaf8d 0%, rgba(126, 155, 175, 0) 35%),
         radial-gradient(circle at 98% 100%, #436c3f 0%, rgba(63, 89, 108, 0) 40%),
         radial-gradient(circle at 20% 87%, rgba(126, 175, 150, 0.99) 0%, rgba(149, 170, 185, 0) 50%),
         radial-gradient(circle at 6% 15%, #438749 0%, rgba(67, 107, 135, 0) 70%),
         radial-gradient(circle at 86% 13%, #7eaf82 0%, rgba(126, 155, 175, 0) 70%),
         var(--base)
 }

 .w {
     max-width: var(--site);
     margin-inline: auto
 }

 .w--n {
     max-width: 720px;
     margin-inline: auto
 }

 /* type */
 h1,
 h2,
 h3 {
     margin: 0;
     font-weight: 700;
     text-wrap: balance
 }

 h1 {
     font-size: clamp(1.75rem, 5vw, 50px);
     line-height: 1.15;
     letter-spacing: -.04em;
     word-spacing: -.05em;
 }

 h2 {
     font-size: clamp(1.5rem, 3.8vw, 40px);
     line-height: 1.15;
     letter-spacing: -.04em;
     word-spacing: -.05em;
 }

 h3 {
     font-size: 22px;
     line-height: 1.2
 }

 p {
     margin: 0
 }

 .big {
     font-size: clamp(1.9rem, 4.2vw, 45px);
     line-height: 1.1;
     letter-spacing: -.05em;
     font-weight: 700
 }

 .lead {
     font-size: clamp(17px, 4.5vw, 20px);
     line-height: 1.5;
 }

 .body {
     font-size: clamp(16px, 4vw, 18px);
     line-height: 1.5;
 }

 .small {
     font-size: 16px;
     line-height: 1.4
 }

 .mut {
     color: var(--muted)
 }

 .hl {
     color: var(--blue)
 }

 .hl-t {
     color: var(--teal)
 }

 .center {
     text-align: center
 }

 .num {
     font-variant-numeric: tabular-nums
 }

 .fill {
     background: rgba(42, 138, 64, .16);
     border-bottom: 1px dashed var(--green);
     padding: 0 4px;
     border-radius: 2px
 }

 /* pills */
 .pill {
     display: inline-block;
     border: 1px solid var(--muted);
     border-radius: 30px;
     padding: 5px 16px;
     font-size: 13px;
     color: var(--muted);
     letter-spacing: .02em
 }

 .s--dark .pill {
     border-color: var(--muted);
     color: #bdbdbd
 }

 .pill-num {
     display: inline-block;
     border: 1px solid var(--muted);
     border-radius: 30px;
     padding: 4px 18px;
     font-size: 18px;
     font-weight: 700;
     color: var(--muted)
 }

 .pill-black {
     background: var(--ink);
     border-radius: 15px;
     padding: 12px 24px;
     color: #fff;
     font-size: 21px;
     display: inline-block
 }

 .pill-arrow {
     background: var(--ink);
     border-radius: 15px;
     padding: 16px 26px;
     color: #fff;
     font-size: 20px;
     font-weight: 700;
     display: flex;
     gap: 16px;
     align-items: center;
     max-width: 430px
 }

 .pill-arrow svg {
     flex: none;
     width: 26px;
     height: 14px;
     fill: #fff
 }

 /* button */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-family: var(--sf);
     font-size: clamp(16px, 4vw, 18px);
     font-weight: 400;
     color: #F6F6F6;
     text-decoration: none;
     padding: clamp(14px, 3.5vw, 17px) clamp(28px, 7vw, 42px);
     border: 1px solid transparent;
     border-radius: 30px;
     box-shadow: .21px 6px 37px -15px #000;
     background: linear-gradient(270deg, #2a8a40 37%, rgba(15, 55, 33, .53) 100%), #588A65;
     cursor: pointer;
     transition: all .2s ease;
     min-height: 48px;
     -webkit-user-select: none;
     user-select: none;
 }

 .btn:hover {
     background: #F6F6F6;
     color: #020202;
     border-color: #020202;
     will-change: transform;
 }

 .btn:active {
     transform: scale(0.95);
     box-shadow: .21px 2px 10px -5px #000;
 }

 @keyframes clickPulse {
     0% { transform: scale(1); }
     30% { transform: scale(0.92); }
     100% { transform: scale(1); }
 }

 .btn.clicked {
     animation: clickPulse 0.6s ease-out;
 }

 .btn--wa {
     border-radius: 10px;
     font-size: 14px;
     padding: 13px 26px;
     background: rgba(88, 138, 101, .82);
     border: 1px solid var(--green);
     box-shadow: none
 }

 .btn--wa:hover {
     background: #7C7C7C;
     color: #fff;
     border-color: #7C7C7C
 }

 .cta {
     display: flex;
     justify-content: center;
     margin-top: 52px
 }

 /* grids */
 .row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: clamp(30px, 5vw, 70px);
     align-items: center
 }

 .row--flip>*:first-child {
     order: 2
 }

 @media(max-width:820px) {
     .row {
         grid-template-columns: 1fr
     }

     .row--flip>*:first-child {
         order: 0
     }
 }

 .col3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 26px
 }

 @media(max-width:820px) {
     .col3 {
         grid-template-columns: 1fr
     }
 }

 .stack {
     display: grid;
     gap: 18px
 }

 .stack--lg {
     display: grid;
     gap: 30px
 }

 /* cards */
 .card {
     border-radius: 15px;
     padding: 34px 30px
 }

 .card--blue {
     background: var(--card-blue)
 }

 .card--grey {
     background: var(--card-grey)
 }

 .card--off {
     background: var(--card-off)
 }

 .card--white {
     background: #fff;
     border: 1px solid #ccc
 }

 .card--grad {
     background: linear-gradient(305deg, #7EAF8D 0%, #FFFFFF 100%)
 }

 .card--bluegrad {
     background: linear-gradient(90deg, rgba(67, 135, 95, .99) .8%, rgba(107, 158, 126, .77) 100%);
     color: #fff
 }

 .card--green {
     background: rgba(88, 138, 101, .26);
     border: 1px solid var(--green)
 }

 .card--black {
     background: #000;
     color: #fff;
     border-radius: 15px;
     padding: 28px
 }

 .card--price {
     background: linear-gradient(90deg, rgba(28, 28, 28, .11) 0%, rgba(226, 219, 208, .11) 100%);
     border-radius: 15px;
     padding: 46px 30px
 }

 .check {
     display: flex;
     gap: 16px;
     align-items: center;
     border-radius: 15px;
     padding: 18px 22px;
     background: linear-gradient(90deg, rgba(126, 175, 141, .53) 41.7%, rgba(232, 232, 232, .53) 100%)
 }

 .check svg {
     flex: none;
     width: 17px;
     height: 17px;
     fill: var(--green)
 }

 .check span {
     font-size: 19px
 }

 /* mock visuals */
 .shot {
     border-radius: 10px;
     overflow: hidden;
     background: #fff;
     border: 1px solid #e3e3e3;
     padding: 18px;
     font-size: 14px;
     line-height: 1.45;
     box-shadow: 0 2px 14px rgba(0, 0, 0, .06)
 }

 .shot--r15 {
     border-radius: 15px
 }

 .wa {
     background: #EFE7DE;
     border-radius: 10px;
     padding: 18px;
     display: grid;
     gap: 9px;
     box-shadow: 0 2px 14px rgba(0, 0, 0, .08)
 }

 .wa b {
     display: block;
     font-size: 12px;
     color: #4a4a4a;
     margin-bottom: 6px;
     font-weight: 400
 }

 .bub {
     background: #fff;
     border-radius: 9px;
     padding: 9px 12px;
     font-size: 14px;
     line-height: 1.4;
     max-width: 88%;
     box-shadow: 0 1px 1px rgba(0, 0, 0, .08)
 }

 .bub--me {
     background: #DCF8C6;
     margin-left: auto
 }

 .mark {
     background: #D8F36B;
     padding: 0 3px
 }

 .rowl {
     display: flex;
     justify-content: space-between;
     gap: 14px;
     padding: 9px 0;
     border-bottom: 1px solid #eee;
     font-size: 14px
 }

 .rowl:last-child {
     border-bottom: 0
 }

 .rowl b {
     font-variant-numeric: tabular-nums;
     font-weight: 600
 }

 .pos {
     color: var(--green)
 }

 .neg {
     color: #B4553B
 }

 .bars {
     display: flex;
     align-items: flex-end;
     gap: 7px;
     height: 74px;
     margin-top: 12px
 }

 .bars i {
     flex: 1;
     background: var(--green-s);
     border-radius: 3px 3px 0 0
 }

 .lbl {
     font-size: 11px;
     letter-spacing: .12em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 12px
 }

 .ph {
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;

 }

 .ph video {
     width: auto;
     height: 520px;
 }

 .ph--sq {
     aspect-ratio: 1/1
 }

 /* misc */
 .roi {
     display: grid;
     gap: 0;
     margin: 18px 0
 }

 .roi div {
     display: flex;
     justify-content: space-between;
     gap: 18px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, .25);
     font-size: 19px
 }

 .roi div:last-child {
     border-bottom: 0
 }

 .roi b {
     font-variant-numeric: tabular-nums
 }

 .price-n {
     font-size: clamp(2.4rem, 6vw, 55px);
     font-weight: 700;
     letter-spacing: -.05em;
     line-height: 1.1
 }

 .price-s {
     font-size: 26px;
     color: var(--muted);
     letter-spacing: -.05em;
     font-weight: 700
 }

 details {
     border-radius: 15px;
     background: var(--card-grey);
     padding: 2px 24px
 }

 summary {
     cursor: pointer;
     list-style: none;
     padding: 20px 0;
     font-size: 19px;
     font-weight: 600;
     display: flex;
     justify-content: space-between;
     gap: 16px;
     align-items: center
 }

 summary::-webkit-details-marker {
     display: none
 }

 summary::after {
     content: "+";
     color: var(--green);
     font-size: 26px;
     font-weight: 400;
     line-height: 1
 }

 details[open] summary::after {
     content: "\2212"
 }

 details p {
     padding: 0 0 22px;
     font-size: 17px;
     color: var(--grey);
     max-width: 62ch
 }

 .note {
     max-width: var(--site);
     margin: 0 auto;
     padding: 26px var(--gut) 60px;
     font-size: 14px;
     color: var(--muted);
     line-height: 1.6
 }

 .logo {
     width: clamp(70px, 20vw, 80px);
     height: clamp(70px, 20vw, 80px);
     border-radius: 50%;
     background: linear-gradient(135deg, #43875f, #7eaf96);
     display: grid;
     place-items: center;
     color: #fff;
     font-size: clamp(8px, 2vw, 10px);
     letter-spacing: .06em;
     margin: 0 auto clamp(20px, 5vw, 30px);
     font-weight: 700;
     line-height: 1.2;
 }

 /* Mobile optimization */
 @media(max-width: 820px) {
     .s {
         padding: clamp(50px, 8vw, 70px) var(--gut);
     }

     .row {
         gap: clamp(20px, 4vw, 30px);
     }

     .col3 {
         gap: clamp(16px, 3vw, 20px);
     }

     .stack {
         gap: clamp(14px, 3vw, 18px);
     }

     .small {
         font-size: 15px;
         line-height: 1.5;
     }

     details {
         padding: 2px 16px;
     }

     summary {
         padding: 16px 0;
         font-size: clamp(16px, 4vw, 19px);
     }

     /* Image gallery stacking */
     div[style*="display:flex"] {
         flex-direction: column !important;
         gap: clamp(12px, 3vw, 16px) !important;
         width: 100% !important;
         max-width: 100% !important;
         overflow: hidden;
     }

     div[style*="display:flex"] img {
         width: 100% !important;
         height: auto !important;
         min-height: 280px;
         max-width: 100% !important;
         display: block;
     }

     img[style*="height:360px"] {
         height: auto !important;
         aspect-ratio: 16/12;
     }

     .card {
         padding: clamp(30px, 5vw, 50px) clamp(16px, 4vw, 40px) !important;
     }

     .card img {
         max-width: 100%;
         margin: 0 !important;
     }
 }