:root {
        --bg: #ffffff;
        --surface: #f4f8f5;
        --surface-2: #eef5ef;
        --dark: #000000;
        --primary: #55b16e;
        --primary-2: #6ccf86;
        --border: rgba(0, 0, 0, 0.08);
        --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
        --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.08);
}

* {
        box-sizing: border-box;
}

html {
        scroll-behavior: smooth;
}

body {
        margin: 0;
        background:
                radial-gradient(circle at top left, rgba(85, 177, 110, 0.09), transparent 30%),
                radial-gradient(circle at top right, rgba(85, 177, 110, 0.1), transparent 24%),
                var(--bg);
        color: var(--dark);
        font-family: Inter, Arial, Helvetica, sans-serif;
        line-height: 1.6;
}

img {
        display: block;
        max-width: 100%;
}

a {
        color: inherit;
        cursor: pointer;
        text-decoration: none;
}

button,
a {
        -webkit-tap-highlight-color: transparent;
}

.container {
        width: min(1180px, calc(100% - 2rem));
        margin-inline: auto;
}

.site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(18px);
        background: rgba(0, 0, 0, 0.82);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
        min-height: 84px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
}

.brand {
        display: inline-flex;
        align-items: center;
        gap: 0.85rem;
        color: #fff;
        min-width: 0;
        max-width: 180px;
}

.brand-logo {
        width: 100%;
        height: auto;
        object-fit: contain;
        flex: 0 0 auto;
}

.brand-copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
}

.brand-copy strong {
        font-size: 1rem;
        line-height: 1.15;
}

.brand-copy small {
        color: rgba(255, 255, 255, 0.7);
}

.site-nav {
        display: flex;
        align-items: center;
        gap: 1.15rem;
        flex-wrap: wrap;
}

.site-nav a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 650;
        font-size: 0.96rem;
        position: relative;
}

.site-nav a:not(.nav-cta)::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 100%;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
        transform: scaleX(1);
}

.nav-cta {
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff !important;
        padding: 0.88rem 1.2rem;
        border-radius: 999px;
        box-shadow: 0 12px 30px rgba(85, 177, 110, 0.28);
        white-space: nowrap;
}

.nav-toggle {
        display: none;
        border: 0;
        background: transparent;
        padding: 0.45rem;
        cursor: pointer;
}

.nav-toggle span {
        display: block;
        width: 28px;
        height: 2px;
        margin: 6px 0;
        background: #fff;
        border-radius: 999px;
}

.section {
        padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-dark {
        color: #fff;
        background:
                radial-gradient(circle at top right, rgba(85, 177, 110, 0.3), transparent 28%),
                linear-gradient(135deg, #050505 0%, #101310 55%, #070707 100%);
}

.section-surface {
        background: linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
}

.hero {
        padding-top: clamp(3.5rem, 6vw, 6rem);
        padding-bottom: clamp(4rem, 6vw, 6rem);
        overflow: clip;
}

.hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: center;
}

.eyebrow,
.section-label,
.card-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.76rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--primary);
}

.section-label-light {
        color: #a8d8b3;
}

.hero-copy h1,
.section-heading h2,
.final-cta h2,
.testimonial-grid h2,
.split-feature h2 {
        margin: 0;
        line-height: 1.04;
        letter-spacing: -0.03em;
}

.hero-copy h1 {
        font-size: clamp(2rem, 4vw, 4.5rem);
        margin-top: 0.9rem;
        color: #fff;
}

.hero-text {
        max-width: 60ch;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(1rem, 1.3vw, 1.08rem);
        margin: 1.2rem 0 0;
}

.hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 1.6rem;
}

.btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0.9rem 1.35rem;
        border-radius: 999px;
        font-weight: 800;
        border: 1px solid transparent;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        will-change: transform;
}

.btn:hover {
        transform: translateY(-1px);
}

.btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        box-shadow: 0 16px 30px rgba(85, 177, 110, 0.28);
}

.btn-secondary {
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.14);
}

.btn-whatsapp {
        background: #25d366;
        color: #fff;
        box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
}

.trust-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
        margin-top: 1.6rem;
        max-width: 34rem;
}

.trust-item {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.95rem 1rem;
        border: 1px solid rgba(85, 177, 110, 0.2);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.9);
}

.trust-dot {
        width: 0.65rem;
        height: 0.65rem;
        border-radius: 999px;
        background: var(--primary);
        box-shadow: 0 0 0 6px rgba(85, 177, 110, 0.14);
        flex: 0 0 auto;
}

.hero-visual {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.6fr);
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
        min-height: 520px;
        position: relative;
        isolation: isolate;
}

.hero-visual::before {
        content: '';
        position: absolute;
        inset: 6% 12% 6% 8%;
        background: linear-gradient(135deg, rgba(85, 177, 110, 0.24), rgba(85, 177, 110, 0.05));
        border-radius: 2rem;
        transform: skewX(-10deg);
        z-index: -1;
}

.visual-main,
.visual-card {
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        overflow: hidden;
}

.visual-main {
        grid-row: 1 / span 3;
        grid-column: 1;
        border-radius: 2.4rem;
        background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.6)),
                radial-gradient(circle at top right, rgba(85, 177, 110, 0.35), transparent 22%),
                linear-gradient(135deg, #3b5c34 0%, #5b6e31 35%, #20251d 100%);
        position: relative;
}

.visual-main::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
                linear-gradient(135deg, transparent 0 66%, rgba(0, 0, 0, 0.3) 66% 100%),
                linear-gradient(180deg, transparent 0 58%, rgba(0, 0, 0, 0.44) 100%);
        mix-blend-mode: multiply;
}

.visual-main-inner {
        position: absolute;
        left: 1.25rem;
        bottom: 1.25rem;
        right: 1.25rem;
        z-index: 1;
        padding: 1rem 1.1rem;
        border-radius: 1.3rem;
        background: rgba(0, 0, 0, 0.48);
        backdrop-filter: blur(10px);
        color: #fff;
}

.visual-main-inner span {
        display: block;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.92rem;
        margin-bottom: 0.2rem;
}

.visual-main-inner strong {
        font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.visual-card {
        border-radius: 1.7rem;
        background:
                radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
                linear-gradient(180deg, #111111 0%, #242424 100%);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: end;
        min-height: 0;
        color: #fff;
}

.visual-card strong {
        display: block;
        font-size: 1.15rem;
}

.visual-card span {
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.92rem;
}

.visual-card-1 {
        grid-column: 2;
        grid-row: 1;
        background: linear-gradient(180deg, rgba(85, 177, 110, 0.96), rgba(36, 102, 51, 0.98));
}

.visual-card-2 {
        grid-column: 2;
        grid-row: 2;
}

.visual-card-3 {
        grid-column: 2;
        grid-row: 3;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(17, 17, 17, 0.98));
}

.section-heading {
        max-width: 52rem;
}

.section-heading-center {
        text-align: center;
        margin-inline: auto;
}

.section-heading h2,
.final-cta h2,
.testimonial-grid h2,
.split-feature h2 {
        font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.section-heading p,
.final-cta p,
.testimonial-grid p,
.split-feature p,
.service-card p,
.ebook-card p,
.category-card h3,
.project-card strong,
.about-card,
.feature-list-card p,
.cta-band p {
        color: rgba(0, 0, 0, 0.72);
}

.section-dark .section-heading p,
.section-dark .split-feature p,
.section-dark .cta-band p,
.section-dark .testimonial-grid p,
.section-dark .ebook-card p,
.section-dark .project-card strong,
.section-dark .feature-list-card p,
.section-dark .final-cta p {
        color: rgba(255, 255, 255, 0.76);
}

.section-surface .section-heading p {
        color: rgba(0, 0, 0, 0.68);
}

.two-col {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 2rem;
        align-items: start;
}

.two-col-reverse {
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.about-card,
.stats-card,
.feature-list-card,
.service-card,
.ebook-card,
.category-card,
.process-card,
.project-card,
.testimonial-card {
        border-radius: 1.5rem;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
}

.about-card,
.feature-list-card,
.stats-card {
        padding: 1.4rem;
}

.about-card {
        display: grid;
        gap: 0.85rem;
}

.about-stat {
        padding: 1rem;
        border-radius: 1rem;
        background: linear-gradient(180deg, #ffffff, #f8fbf8);
        border: 1px solid var(--border);
}

.stat-number {
        display: block;
        font-size: 1.9rem;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.35rem;
}

.stat-label {
        color: rgba(0, 0, 0, 0.68);
}

.service-grid,
.ebook-grid,
.process-grid,
.category-grid,
.project-grid {
        display: grid;
        gap: 1rem;
}

.service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 2rem;
}

.service-card {
        padding: 1.5rem;
        min-height: 100%;
        background: linear-gradient(180deg, #ffffff, #f9fbf9);
}

.service-card h3,
.ebook-card h3,
.process-card h3 {
        margin: 0.55rem 0 0.75rem;
        line-height: 1.18;
}

.card-eyebrow {
        color: var(--primary);
}

.text-link {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin-top: 1rem;
        font-weight: 800;
        color: var(--primary);
}

.split-feature {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
        gap: 2rem;
        align-items: center;
}

.check-list {
        list-style: none;
        padding: 0;
        margin: 1.4rem 0 0;
        display: grid;
        gap: 0.85rem;
}

.check-list li {
        position: relative;
        padding-left: 1.7rem;
        color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--primary);
        font-weight: 900;
}

.feature-panel {
        min-height: 330px;
        border-radius: 2rem;
        padding: 1rem;
        background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26)),
                linear-gradient(135deg, #1f2d1b 0%, #51663a 55%, #10110f 100%);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow);
}

.feature-panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 80% 20%, rgba(85, 177, 110, 0.32), transparent 16%),
                radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.16), transparent 18%);
}

.feature-panel-card {
        position: absolute;
        left: 1rem;
        bottom: 1rem;
        z-index: 1;
        max-width: 17rem;
        padding: 1rem 1.1rem;
        border-radius: 1.2rem;
        background: rgba(0, 0, 0, 0.46);
        color: #fff;
        backdrop-filter: blur(10px);
}

.feature-panel-card span,
.ebook-badge,
.process-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(85, 177, 110, 0.16);
        color: #c8f2d4;
        padding: 0.28rem 0.65rem;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.feature-panel-card strong {
        display: block;
        margin-top: 0.55rem;
        font-size: 1.05rem;
}

.feature-panel-strip {
        position: absolute;
        inset: auto -10% -18% -10%;
        height: 38%;
        background: linear-gradient(135deg, transparent 0 45%, rgba(85, 177, 110, 0.62) 45% 55%, transparent 55% 100%);
        transform: rotate(-8deg);
        opacity: 0.6;
}

.category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 2rem;
}

.category-card {
        padding: 1.2rem;
        background: linear-gradient(180deg, #ffffff, #f8fbf8);
}

.category-icon {
        display: inline-flex;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 999px;
        background: var(--primary);
        box-shadow: 0 0 0 8px rgba(85, 177, 110, 0.12);
        margin-bottom: 0.9rem;
}

.cta-band,
.final-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.4rem;
}

.cta-band > div:first-child {
        flex: 1 1 0;
        min-width: 0;
}

.cta-band p {
        max-width: 62ch;
}

.cta-band .cta-actions {
        flex: 0 0 auto;
        margin-left: auto;
        justify-content: flex-end;
}

.cta-band {
        margin-top: 2rem;
        padding: 1.4rem;
        border-radius: 1.5rem;
        background: linear-gradient(135deg, rgba(85, 177, 110, 0.12), rgba(85, 177, 110, 0.04));
        border: 1px solid rgba(85, 177, 110, 0.15);
        flex-wrap: nowrap;
}

.cta-content {
        flex: 1;
}

.cta-band h3 {
        margin: 0.2rem 0 0.5rem;
        font-size: clamp(1.35rem, 2vw, 2rem);
}

.cta-actions,
.final-cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
}

.feature-list-card {
        background: rgba(255, 255, 255, 0.98);
}

.benefit-list {
        display: grid;
        gap: 0.8rem;
        margin-top: 1.3rem;
}

.benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.8rem 0.95rem;
        border-radius: 1rem;
        background: var(--surface);
        border: 1px solid var(--border);
}

.benefit-mark {
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 999px;
        display: inline-grid;
        place-items: center;
        background: var(--primary);
        color: #fff;
        font-size: 0.85rem;
        flex: 0 0 auto;
        margin-top: 0.05rem;
}

.stats-card {
        position: relative;
        background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
        min-height: 100%;
        display: grid;
        place-items: center;
}

.stats-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #08531c3a;
        z-index: 1;
}

.stats-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        width: 100%;
        z-index: 2;
}

.stats-grid div {
        padding: 1rem;
        border-radius: 1rem;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
}

.stats-grid strong {
        display: block;
        font-size: 1.2rem;
        color: var(--dark);
}

.stats-grid span {
        color: rgba(0, 0, 0, 0.64);
}

.process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 2rem;
}

.process-card {
        padding: 1.2rem;
        background: linear-gradient(180deg, #ffffff, #f8fbf8);
}

.process-number {
        background: rgba(85, 177, 110, 0.12);
        color: var(--primary);
}

.process-layout {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: stretch;
        margin-top: 1.7rem;
}

.process-intro-card {
        flex: 0 1 280px;
        padding: 1.35rem 1.4rem;
        border-radius: 1.4rem;
        background: linear-gradient(180deg, #ffffff, #f6faf6);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
}

.process-intro-card h3 {
        margin: 0.8rem 0 0.5rem;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        line-height: 1.18;
}

.process-intro-card p {
        margin: 0;
        color: rgba(0, 0, 0, 0.7);
        max-width: 28ch;
}

.process-grid.process-step-list {
        display: flex;
        flex: 1 1 540px;
        flex-wrap: wrap;
        gap: 0.9rem;
        margin-top: 0;
        align-content: flex-start;
}

.process-grid.process-step-list .process-card {
        position: relative;
        overflow: hidden;
        flex: 1 1 calc(50% - 0.45rem);
        min-width: 220px;
        padding: 1.15rem 1.15rem 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        background: #fff;
        border: 1px solid var(--border);
}

.process-grid.process-step-list .process-card::after {
        content: none;
}

.process-grid.process-step-list .process-card h3 {
        margin: 0;
        font-size: 1.02rem;
}

.process-grid.process-step-list .process-card p {
        margin: 0;
        color: rgba(0, 0, 0, 0.66);
        font-size: 0.93rem;
}

.process-grid.process-step-list .process-number {
        width: max-content;
        padding: 0.32rem 0.72rem;
        background: rgba(85, 177, 110, 0.1);
        color: var(--primary);
        font-size: 0.72rem;
}

.ebook-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
}

.ebook-card {
        flex: 1 1 255px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 1.6rem;
        color: #000;
        background: linear-gradient(180deg, #ffffff, #fbfcfb);
        border: 1px solid rgba(85, 177, 110, 0.1);
        box-shadow: var(--shadow-soft);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ebook-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
}

.ebook-image-wrap {
        position: relative;
        height: 210px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(85, 177, 110, 0.14), rgba(0, 0, 0, 0.04));
}

.ebook-image-wrap::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
        pointer-events: none;
}

.ebook-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.ebook-price-tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 2;
        padding: 0.5rem 0.8rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.82);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        backdrop-filter: blur(8px);
}

.ebook-card-body {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.15rem 1.15rem 1.2rem;
        flex: 1;
}

.ebook-badge {
        width: max-content;
        background: rgba(85, 177, 110, 0.12);
        color: var(--primary);
}

.ebook-card h3 {
        margin: 0;
        font-size: 1.08rem;
        line-height: 1.18;
}

.ebook-buy-btn {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        font-weight: 800;
        box-shadow: 0 14px 24px rgba(85, 177, 110, 0.22);
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ebook-buy-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(85, 177, 110, 0.28);
        filter: brightness(1.02);
}

.ebook-buy-btn:focus-visible {
        outline: 3px solid rgba(85, 177, 110, 0.28);
        outline-offset: 3px;
}

.project-intro {
        max-width: 28rem;
}

.project-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: stretch;
}

.project-card {
        flex: 1 1 240px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 1.55rem;
        border: 1px solid var(--border);
        background: #fff;
        box-shadow: var(--shadow-soft);
        text-decoration: none;
        color: inherit;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
}

.project-thumb {
        position: relative;
        overflow: hidden;
        height: 220px;
        background: linear-gradient(180deg, rgba(85, 177, 110, 0.08), rgba(0, 0, 0, 0.04));
}

.project-thumb::after {
        content: '';
        position: absolute;
        inset: auto 0 0;
        height: 32%;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
        pointer-events: none;
}

.project-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.project-card-body {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        padding: 1.15rem;
        flex: 1;
}

.project-badge {
        width: max-content;
        padding: 0.36rem 0.7rem;
        border-radius: 999px;
        background: rgba(85, 177, 110, 0.12);
        color: var(--primary);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.project-card h3 {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.2;
        color: var(--dark);
}

.project-card p {
        margin: 0;
        color: rgba(0, 0, 0, 0.68);
        line-height: 1.55;
        font-size: 0.95rem;
}

.testimonial-marquee-grid {
        display: grid;
        gap: 1rem;
        margin-top: 2rem;
}

.testimonial-marquee {
        position: relative;
        overflow: hidden;
}

.testimonial-marquee-track {
        display: flex;
        gap: 1rem;
        width: max-content;
        will-change: transform;
}

.testimonial-marquee-left .testimonial-marquee-track {
        animation: testimonial-marquee-left 44s linear infinite;
}

.testimonial-marquee-right .testimonial-marquee-track {
        animation: testimonial-marquee-right 48s linear infinite;
}

.testimonial-card {
        flex: 0 0 clamp(260px, 28vw, 360px);
        margin: 0;
        padding: 1.35rem;
        border-radius: 1.5rem;
        border: 1px solid var(--border);
        background: #fff;
        box-shadow: var(--shadow-soft);
        display: flex;
        flex-direction: column;
        gap: 1rem;
}

.testimonial-card-top {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
}

.testimonial-quote-mark {
        display: inline-flex;
        width: 2.15rem;
        height: 2.15rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(85, 177, 110, 0.12);
        color: var(--primary);
        font-size: 1.4rem;
        font-weight: 900;
}

.testimonial-card p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.7;
        color: rgba(0, 0, 0, 0.74);
}

.testimonial-meta {
        margin-top: auto;
        display: flex;
        align-items: center;
        gap: 0.9rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(85, 177, 110, 0.12);
}

.testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        font-weight: 900;
        flex: 0 0 auto;
}

.testimonial-meta strong,
.testimonial-meta span {
        display: block;
}

.testimonial-meta strong {
        font-size: 0.98rem;
        color: var(--dark);
}

.testimonial-meta span {
        font-size: 0.84rem;
        color: rgba(0, 0, 0, 0.62);
}

@keyframes testimonial-marquee-left {
        from {
                transform: translateX(0);
        }

        to {
                transform: translateX(-50%);
        }
}

@keyframes testimonial-marquee-right {
        from {
                transform: translateX(-50%);
        }

        to {
                transform: translateX(0);
        }
}

.final-cta {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.9fr);
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 2rem;
        background:
                radial-gradient(circle at top right, rgba(85, 177, 110, 0.16), transparent 28%),
                linear-gradient(135deg, rgba(85, 177, 110, 0.22), rgba(85, 177, 110, 0.07));
        border: 1px solid rgba(85, 177, 110, 0.16);
        box-shadow: var(--shadow);
        align-items: stretch;
}

.final-cta-copy {
        padding: 0.7rem 0.5rem;
}

.final-cta p {
        max-width: 55ch;
}

.final-cta-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1.15rem;
}

.final-cta-highlights span {
        padding: 0.6rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.88rem;
        font-weight: 700;
}

.final-cta-actions {
        display: grid;
        gap: 0.8rem;
        align-content: center;
}

.cta-action {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.25rem 0.9rem;
        padding: 1rem 1rem 1rem 1.1rem;
        border-radius: 1.35rem;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
        filter: brightness(1.02);
}

.cta-action-label {
        font-size: 1.02rem;
        font-weight: 900;
}

.cta-action-subtext {
        grid-column: 1;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.88rem;
}

.cta-action-arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
        font-size: 1.15rem;
        font-weight: 900;
        opacity: 0.9;
}

.cta-action-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.cta-action-secondary {
        background: rgba(255, 255, 255, 0.06);
}

.cta-action-whatsapp {
        background: linear-gradient(135deg, #22c55e, #1ea84d);
}

.site-footer {
        padding: clamp(3rem, 5vw, 4.2rem) 0;
        background: #050505;
        color: #fff;
}

.footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(160px, 0.6fr));
        gap: 1.5rem;
}

.footer-grid h3 {
        margin-top: 0;
        font-size: 1rem;
}

.footer-grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.7rem;
}

.footer-grid a {
        color: rgba(255, 255, 255, 0.76);
}

.footer-grid a:hover {
        color: #fff;
}

.footer-brand img {
        width: 150px;
        height: auto;
        object-fit: contain;
        margin-bottom: 1rem;
}

.footer-brand p {
        color: rgba(255, 255, 255, 0.72);
}

.center-actions {
        display: flex;
        justify-content: center;
        margin-top: 20px;
}

.compact {
        max-width: 46rem;
}
.about-section {
        position: relative;
        overflow: hidden;
}

.about-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at top left, rgba(85, 177, 110, 0.08), transparent 28%),
                radial-gradient(circle at bottom right, rgba(85, 177, 110, 0.08), transparent 24%);
        pointer-events: none;
}

.about-grid {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
        gap: clamp(1.6rem, 3vw, 2.8rem);
        align-items: center;
        z-index: 1;
}

.about-visual {
        position: relative;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1rem;
        min-height: 640px;
}

.about-image {
        position: relative;
        overflow: hidden;
        border-radius: 1.7rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: #fff;
        box-shadow: var(--shadow-soft);
}

.about-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.2) 100%);
        pointer-events: none;
}

.about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.about-image-main {
        grid-column: 1 / span 7;
        grid-row: 1 / span 4;
        min-height: 440px;
}

.about-image-top {
        grid-column: 8 / span 5;
        grid-row: 1 / span 2;
        min-height: 210px;
}

.about-image-bottom {
        grid-column: 8 / span 5;
        grid-row: 3 / span 2;
        min-height: 210px;
}

.about-image-wide {
        grid-column: 1 / span 12;
        grid-row: 5 / span 2;
        min-height: 170px;
}

.about-floating-card {
        position: absolute;
        left: 1.2rem;
        bottom: 1.2rem;
        width: min(350px, calc(100% - 2.4rem));
        padding: 1.1rem 1.15rem;
        border-radius: 1.3rem;
        background: rgba(0, 0, 0, 0.82);
        color: #fff;
        box-shadow: var(--shadow);
        backdrop-filter: blur(14px);
}

.about-floating-card strong {
        display: block;
        margin-top: 0.7rem;
        font-size: 1.05rem;
        line-height: 1.25;
}

.about-floating-card p {
        margin: 0.55rem 0 0;
        color: rgba(255, 255, 255, 0.76);
}

.about-content {
        padding-block: 0.35rem;
}

.about-content h2 {
        margin: 0.8rem 0 1rem;
        font-size: clamp(2rem, 3.4vw, 3.6rem);
        line-height: 1.05;
}

.about-content > p {
        max-width: 60ch;
        color: rgba(0, 0, 0, 0.72);
}

.about-points {
        display: grid;
        gap: 0.9rem;
        margin-top: 1.5rem;
}

.about-point {
        display: flex;
        gap: 0.9rem;
        align-items: flex-start;
        padding: 1rem 1.05rem;
        border-radius: 1.25rem;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
}

.about-point-mark {
        flex: 0 0 auto;
        width: 2.45rem;
        height: 2.45rem;
        display: grid;
        place-items: center;
        border-radius: 0.9rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        font-size: 0.85rem;
        font-weight: 900;
}

.about-point h3 {
        margin: 0 0 0.25rem;
        font-size: 1.02rem;
}

.about-point p {
        margin: 0;
        color: rgba(0, 0, 0, 0.68);
}

.about-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
        margin-top: 1.4rem;
}

.about-metric {
        padding: 1rem;
        border-radius: 1rem;
        background: linear-gradient(180deg, #ffffff, #f7fbf8);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
}

.about-metric strong {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--dark);
}

.about-metric span {
        color: rgba(0, 0, 0, 0.68);
        font-size: 0.95rem;
}

.about-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
        margin-top: 1.6rem;
}

.about-ghost {
        background: transparent;
        color: var(--dark);
        border-color: var(--border);
        box-shadow: none;
}

.about-ghost:hover {
        background: rgba(85, 177, 110, 0.08);
}

.services-section {
        position: relative;
        overflow: hidden;
        background:
                radial-gradient(circle at top left, rgba(85, 177, 110, 0.08), transparent 26%),
                linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
}

.services-heading {
        margin-bottom: 2rem;
}

.services-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: 1.35rem;
        align-items: start;
}

.services-spotlight {
        position: relative;
        overflow: hidden;
        border-radius: 2rem;
        padding: 1.25rem;
        background:
                linear-gradient(135deg, rgba(0, 0, 0, 0.96) 0%, rgba(8, 18, 11, 0.96) 52%, rgba(34, 67, 42, 0.98) 100%);
        color: #fff;
        box-shadow: var(--shadow);
}

.services-spotlight::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at top right, rgba(85, 177, 110, 0.28), transparent 22%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 20%);
        pointer-events: none;
}

.services-spotlight-copy {
        position: relative;
        z-index: 1;
        margin-top: 1.15rem;
        padding: 1.1rem 0.3rem 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-spotlight-copy h3 {
        margin: 0.7rem 0 0.65rem;
        font-size: clamp(1.55rem, 2.6vw, 2.35rem);
        line-height: 1.08;
}

.services-spotlight-copy p {
        margin: 0;
        max-width: 58ch;
        color: rgba(255, 255, 255, 0.8);
}

.services-mini-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
        margin-top: 1.15rem;
}

.services-mini-metrics div {
        padding: 0.95rem 1rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-mini-metrics strong {
        display: block;
        font-size: 1.4rem;
        color: var(--primary);
        margin-bottom: 0.18rem;
}

.services-mini-metrics span {
        color: rgba(255, 255, 255, 0.74);
        font-size: 0.92rem;
}

.services-visual-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: repeat(8, minmax(0, 1fr));
        gap: 0.8rem;
        min-height: 560px;
        z-index: 1;
}

.services-image {
        position: relative;
        overflow: hidden;
        margin: 0;
        border-radius: 1.4rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
        background: rgba(255, 255, 255, 0.04);
}

.services-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.18) 100%);
        pointer-events: none;
}

.services-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.services-image-large {
        grid-column: 1 / span 8;
        grid-row: 1 / span 8;
}

.services-image-top {
        grid-column: 9 / span 4;
        grid-row: 1 / span 3;
}

.services-image-mid {
        grid-column: 9 / span 4;
        grid-row: 4 / span 2;
}

.services-image-bottom {
        grid-column: 9 / span 4;
        grid-row: 6 / span 3;
}

.services-panel {
        display: grid;
        gap: 1rem;
}

.service-card-modern {
        position: relative;
        padding: 1.35rem 1.35rem 1.25rem;
        background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
        border: 1px solid rgba(85, 177, 110, 0.14);
        border-left: 4px solid var(--primary);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
        overflow: hidden;
}

.service-card-modern::before {
        content: '';
        position: absolute;
        inset: auto -20% -55% auto;
        width: 12rem;
        height: 12rem;
        background: radial-gradient(circle, rgba(85, 177, 110, 0.12), transparent 65%);
        pointer-events: none;
}

.service-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 0.95rem;
}

.service-index {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.35rem;
        height: 2.35rem;
        border-radius: 0.8rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        font-weight: 900;
        box-shadow: 0 14px 26px rgba(85, 177, 110, 0.24);
        flex: 0 0 auto;
}

.service-card-modern .card-eyebrow {
        text-align: right;
        line-height: 1.3;
}

.service-card-modern h3 {
        margin: 0 0 0.6rem;
        font-size: 1.18rem;
        line-height: 1.18;
}

.service-card-modern p {
        margin: 0;
}

.services-visual-flex {
        position: relative;
        display: flex;
        gap: 1rem;
        align-items: stretch;
        min-height: 560px;
        z-index: 1;
}

.services-image-feature {
        flex: 1.55 1 0;
        min-height: 560px;
        border-radius: 1.8rem;
}

.services-image-cluster {
        flex: 0.95 1 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        min-width: 230px;
}

.services-image-mini {
        flex: 1 1 0;
        min-height: 0;
        border-radius: 1.35rem;
}

.services-image-mini img,
.services-image-feature img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.product-grid-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
        align-items: stretch;
}

.product-card {
        position: relative;
        flex: 1 1 260px;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 1.55rem;
        border: 1px solid var(--border);
        background: #fff;
        box-shadow: var(--shadow-soft);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        color: inherit;
        cursor: pointer;
}

.product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
}

.product-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        z-index: 2;
        padding: 0.45rem 0.75rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.84);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.product-image-wrap {
        overflow: hidden;
        flex: 0 0 auto;
        height: clamp(180px, 18vw, 240px);
        background: linear-gradient(180deg, rgba(85, 177, 110, 0.08), rgba(0, 0, 0, 0.02));
}

.product-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.85rem;
        transition: transform 0.28s ease;
}

.product-card:hover .product-image-wrap img {
        transform: scale(1.04);
}

.product-content {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.15rem 1.15rem 1.2rem;
        min-height: 100%;
        flex: 1;
}

.product-content h3 {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.22;
        color: var(--dark);
}

.product-content p {
        margin: 0;
        color: rgba(0, 0, 0, 0.68);
        font-size: 0.95rem;
}

.product-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        padding-top: 0.25rem;
}

.product-footer strong {
        font-size: 1.15rem;
        color: var(--primary);
}

.product-cart-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.7rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        color: #fff;
        font-weight: 800;
        box-shadow: 0 14px 24px rgba(85, 177, 110, 0.24);
        white-space: nowrap;
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.product-cart-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(85, 177, 110, 0.3);
        filter: brightness(1.02);
}

.product-cart-btn:focus-visible {
        outline: 3px solid rgba(85, 177, 110, 0.28);
        outline-offset: 3px;
}

.product-card:focus-visible {
        outline: 3px solid rgba(85, 177, 110, 0.35);
        outline-offset: 4px;
}



/* Shop page */
.site-nav a.is-active::after {
        transform: scaleX(1);
}

.screen-reader-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
}

.shop-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
        color: #fff;
        background:
                radial-gradient(circle at 78% 20%, rgba(108, 207, 134, 0.26), transparent 24%),
                radial-gradient(circle at 6% 88%, rgba(85, 177, 110, 0.22), transparent 27%),
                linear-gradient(122deg, #030503 0%, #08130b 54%, #0f2715 100%);
}

.shop-hero::after {
        content: '';
        position: absolute;
        inset: auto -6% -70% auto;
        width: min(58vw, 720px);
        aspect-ratio: 1;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        box-shadow: 0 0 0 4rem rgba(85, 177, 110, 0.04), 0 0 0 8rem rgba(85, 177, 110, 0.025);
        pointer-events: none;
}

.shop-toolbar,
.shop-section-heading,
.shop-support-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
}

.shop-hero-layout {
        position: relative;
        z-index: 1;
        display: flex;
        /* align-items: center; */
        justify-content: space-between;
        gap: 2rem;
        align-items: stretch;
}

.shop-hero-copy {
        flex: 1 1 660px;
        max-width: 760px;
}

.shop-hero .eyebrow {
        margin-bottom: 1.15rem;
        color: #a7ebb8;
        background: rgba(85, 177, 110, 0.12);
        border: 1px solid rgba(144, 229, 166, 0.23);
}

.shop-hero h1 {
        margin: 0;
        font-size: clamp(1.5rem, 5vw, 4rem);
        line-height: 0.98;
        letter-spacing: -0.065em;
}

.shop-hero-copy > p {
        max-width: 63ch;
        margin: 1.4rem 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.shop-hero-points {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1.8rem;
}

.shop-hero-points span {
        display: inline-flex;
        align-items: center;
        min-height: 2.45rem;
        padding: 0.45rem 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.82rem;
        font-weight: 700;
}

.shop-hero-card {
        position: relative;
        z-index: 1;
        display: flex;
        flex: 0 1 330px;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 290px;
        padding: 1.5rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 1.7rem;
        background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
                url('../images/visual-card-1.jpg') center/cover;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.shop-hero-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82));
        pointer-events: none;
}

.shop-hero-card > * {
        position: relative;
        z-index: 1;
}

.shop-hero-card-label {
        color: #b8f5c7;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.shop-hero-card strong {
        display: block;
        margin-top: 0.2rem;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        line-height: 1;
}

.shop-hero-card p {
        margin: 0.65rem 0 1.1rem;
        color: rgba(255, 255, 255, 0.76);
        font-size: 0.92rem;
}

.shop-hero-card-link {
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
}

.shop-categories {
        padding-bottom: 2.5rem;
}

.shop-section-heading {
        align-items: end;
        margin-bottom: 1.8rem;
}

.shop-section-heading h2,
.shop-toolbar h2 {
        max-width: 19ch;
        margin: 0.4rem 0 0;
        font-size: clamp(1.8rem, 3.4vw, 3rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
}

.shop-section-heading > p {
        max-width: 44ch;
        margin: 0;
        color: #516056;
}

.shop-category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
}

.shop-category-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        min-height: 3.15rem;
        padding: 0.6rem 1rem;
        cursor: pointer;
        border: 1px solid var(--border);
        border-radius: 1rem;
        background: #fff;
        color: #253028;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
        font: inherit;
        font-size: 0.9rem;
        font-weight: 750;
        transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.shop-category-chip:hover,
.shop-category-chip:focus-visible,
.shop-category-chip.is-selected {
        border-color: var(--primary);
        background: var(--primary);
        color: #fff;
        box-shadow: 0 12px 24px rgba(85, 177, 110, 0.24);
        outline: none;
        transform: translateY(-2px);
}

.shop-category-icon {
        font-size: 1.05rem;
        line-height: 1;
}

.shop-products-section {
        padding-top: 2rem;
        background: linear-gradient(180deg, transparent, rgba(238, 245, 239, 0.72));
}

.shop-toolbar {
        align-items: end;
        margin-bottom: 1.1rem;
}

.shop-search {
        display: flex;
        flex: 0 1 360px;
        align-items: center;
        gap: 0.7rem;
        min-height: 3.25rem;
        padding: 0 1rem;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 1rem;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);
}

.shop-search span {
        color: var(--primary);
        font-size: 1.15rem;
}

.shop-search input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        color: var(--dark);
        background: transparent;
        font: inherit;
        font-size: 0.94rem;
}

.shop-search input::placeholder {
        color: #879189;
}

.shop-results-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 2rem;
        margin-bottom: 1.4rem;
}

.shop-results-bar p {
        margin: 0;
        color: #647168;
        font-size: 0.9rem;
}

.shop-results-bar strong {
        color: var(--dark);
}

.shop-clear-filter {
        padding: 0;
        cursor: pointer;
        border: 0;
        background: transparent;
        color: #347e4a;
        font: inherit;
        font-size: 0.87rem;
        font-weight: 800;
}

.shop-product-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
        align-items: stretch;
}

.shop-product-card {
        display: flex;
        flex: 1 1 250px;
        flex-direction: column;
        max-width: calc(25% - 0.94rem);
        min-width: 0;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 1.35rem;
        background: #fff;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.055);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.shop-product-card:hover,
.shop-product-card:focus-visible {
        border-color: rgba(85, 177, 110, 0.5);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.1);
        outline: none;
        transform: translateY(-6px);
}

.shop-product-card[hidden] {
        display: none;
}

.shop-product-image {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 210px;
        padding: 1.25rem;
        overflow: hidden;
        background:
                radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 48%),
                linear-gradient(135deg, #f3faf4, #e5f1e7);
}

.shop-product-image::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 18px;
        bottom: 1.7rem;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.11);
        filter: blur(9px);
}

.shop-product-image img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-image img {
        transform: scale(1.06);
}


.shop-product-body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 1.15rem;
}

.shop-product-category {
        margin: 0;
        color: #5a9b6e;
        font-size: 0.7rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.shop-product-body h3 {
        margin: 0.42rem 0 0;
        font-size: 1.07rem;
        line-height: 1.18;
        letter-spacing: -0.025em;
}

.shop-product-description {
        margin: 0.55rem 0 1rem;
        color: #66736a;
        font-size: 0.84rem;
        line-height: 1.48;
}

.shop-product-price {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: auto;
}

.shop-product-price strong {
        color: #163c20;
        font-size: 1.15rem;
        letter-spacing: -0.025em;
}

.shop-product-price s {
        color: #89928c;
        font-size: 0.8rem;
}

.shop-product-actions {
        display: flex;
        gap: 0.55rem;
        margin-top: 1rem;
}

.shop-details-btn,
.shop-add-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.4rem;
        border-radius: 0.7rem;
        font: inherit;
        font-size: 0.74rem;
        font-weight: bold;
        transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.shop-details-btn {
        flex: 1 1 auto;
        padding: 0.42rem 0.58rem;
        border: 1px solid rgba(0, 0, 0, 0.11);
        color: #27332a;
}

.shop-add-btn {
        flex: 1.2 1 auto;
        gap: 0.35rem;
        padding: 0.42rem 0.58rem;
        cursor: pointer;
        border: 1px solid var(--primary);
        background: var(--primary);
        color: #fff;
        box-shadow: 0 9px 18px rgba(85, 177, 110, 0.2);
}

.shop-details-btn:hover,
.shop-details-btn:focus-visible {
        border-color: var(--primary);
        color: #347e4a;
        outline: none;
}

.shop-add-btn:hover,
.shop-add-btn:focus-visible {
        background: #3f9f59;
        box-shadow: 0 12px 22px rgba(85, 177, 110, 0.3);
        outline: none;
        transform: translateY(-1px);
}

.shop-add-btn.is-added {
        border-color: #173f21;
        background: #173f21;
}

.shop-empty-state {
        margin: 2.5rem 0;
        padding: 1.25rem;
        border: 1px dashed rgba(85, 177, 110, 0.55);
        border-radius: 1rem;
        color: #3b6948;
        text-align: center;
}

.shop-load-more-wrap {
        display: grid;
        justify-items: center;
        gap: 0.5rem;
        min-height: 4.5rem;
        margin-top: 2.1rem;
}

.shop-load-more {
        min-height: 3.1rem;
        padding: 0.75rem 1.25rem;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.11);
        border-radius: 999px;
        background: #fff;
        color: #224c2d;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
        font: inherit;
        font-size: 0.9rem;
        font-weight: 800;
}

.shop-load-more:hover,
.shop-load-more:focus-visible {
        border-color: var(--primary);
        color: #fff;
        background: var(--primary);
        outline: none;
}

.shop-scroll-sentinel {
        display: block;
        width: 100%;
        height: 1px;
}

.shop-support {
        padding: clamp(3rem, 6vw, 4.7rem) 0;
}

.shop-support-inner > div {
        max-width: 680px;
}

.shop-support h2 {
        max-width: 17ch;
        margin: 0.45rem 0 0;
        color: #fff;
        font-size: clamp(1.75rem, 3.6vw, 3rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
}

.shop-support p {
        max-width: 58ch;
        margin: 0.9rem 0 0;
        color: rgba(255, 255, 255, 0.7);
}

.shop-support .btn {
        flex: 0 0 auto;
        white-space: nowrap;
}

/* Cart drawer */
body.cart-is-open {
        overflow: hidden;
}

.cart-overlay {
        position: fixed;
        z-index: 90;
        inset: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.52);
        opacity: 0;
        transition: opacity 0.28s ease, visibility 0.28s ease;
}

.cart-drawer {
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(460px, 100%);
        min-height: 0;
        flex-direction: column;
        padding: 1.45rem;
        overflow: hidden;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        background: #fff;
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cart-is-open .cart-overlay {
        visibility: visible;
        opacity: 1;
}

.cart-is-open .cart-drawer {
        transform: translateX(0);
}

.cart-drawer-header,
.cart-subtotal-row,
.cart-footer-actions,
.cart-item-main,
.cart-item-meta,
.cart-quantity-control {
        display: flex;
        align-items: center;
}

.cart-drawer-header {
        justify-content: space-between;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-drawer-kicker {
        display: block;
        color: #4b9660;
        font-size: 0.7rem;
        font-weight: 850;
        letter-spacing: 0.1em;
        text-transform: uppercase;
}

.cart-drawer h2 {
        margin: 0.12rem 0 0;
        font-size: 1.6rem;
        line-height: 1;
        letter-spacing: -0.04em;
}

.cart-close-btn {
        display: inline-grid;
        width: 2.6rem;
        height: 2.6rem;
        place-items: center;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        background: #fff;
        color: #243128;
        font-size: 1.8rem;
        line-height: 1;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart-close-btn:hover,
.cart-close-btn:focus-visible {
        background: #132a19;
        color: #fff;
        outline: none;
        transform: rotate(90deg);
}

.cart-delivery-note {
        margin: 0.9rem 0;
        padding: 0.7rem 0.8rem;
        border-radius: 0.75rem;
        background: #eef8f0;
        color: #3d774c;
        font-size: 0.8rem;
        line-height: 1.42;
}

.cart-drawer-items {
        display: flex;
        min-height: 0;
        flex: 1 1 auto;
        flex-direction: column;
        gap: 0.85rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0.2rem 0.25rem 1rem 0;
        scrollbar-width: thin;
        scrollbar-color: #85c597 transparent;
}

.cart-item {
        display: flex;
        gap: 0.75rem;
        padding: 0.72rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1rem;
        background: #fbfdfb;
}

.cart-item-image {
        display: grid;
        width: 4.25rem;
        height: 4.25rem;
        flex: 0 0 auto;
        place-items: center;
        padding: 0.4rem;
        border-radius: 0.72rem;
        background: #edf7ef;
}

.cart-item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
}

.cart-item-content {
        min-width: 0;
        flex: 1;
}

.cart-item-main {
        justify-content: space-between;
        gap: 0.5rem;
}

.cart-item-name {
        min-width: 0;
        color: #14271a;
        font-size: 0.9rem;
        font-weight: 850;
        line-height: 1.22;
}

.cart-item-name:hover,
.cart-item-name:focus-visible {
        color: #3d9854;
        outline: none;
        text-decoration: underline;
        text-underline-offset: 0.18em;
}

.cart-remove-btn {
        padding: 0.15rem;
        cursor: pointer;
        border: 0;
        background: transparent;
        color: #b34c4c;
        font: inherit;
        font-size: 0.74rem;
        font-weight: 800;
}

.cart-remove-btn:hover,
.cart-remove-btn:focus-visible {
        color: #7f2020;
        outline: none;
        text-decoration: underline;
}

.cart-item-meta {
        justify-content: space-between;
        gap: 0.65rem;
        margin-top: 0.55rem;
}

.cart-quantity-control {
        gap: 0.18rem;
        padding: 0.18rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0.62rem;
        background: #fff;
}

.cart-quantity-btn {
        display: grid;
        width: 1.75rem;
        height: 1.75rem;
        place-items: center;
        cursor: pointer;
        border: 0;
        border-radius: 0.43rem;
        background: #edf7ef;
        color: #29743d;
        font: inherit;
        font-weight: 900;
}

.cart-quantity-btn:hover,
.cart-quantity-btn:focus-visible {
        background: var(--primary);
        color: #fff;
        outline: none;
}

.cart-quantity-value {
        min-width: 1.45rem;
        color: #203527;
        font-size: 0.82rem;
        font-weight: 850;
        text-align: center;
}

.cart-item-total {
        color: #183e23;
        font-size: 0.89rem;
        white-space: nowrap;
}

.cart-empty-state {
        display: grid;
        flex: 1;
        align-content: center;
        justify-items: center;
        min-height: 270px;
        padding: 1.25rem;
        color: #65726a;
        text-align: center;
}

.cart-empty-state > span {
        display: grid;
        width: 3.6rem;
        height: 3.6rem;
        place-items: center;
        border-radius: 50%;
        background: #edf7ef;
        font-size: 1.5rem;
}

.cart-empty-state h3 {
        margin: 0.9rem 0 0;
        color: #1b3021;
        font-size: 1.15rem;
}

.cart-empty-state p {
        max-width: 28ch;
        margin: 0.35rem 0 1rem;
        font-size: 0.86rem;
        line-height: 1.45;
}

.cart-continue-btn,
.cart-clear-btn,
.cart-checkout-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.85rem;
        border-radius: 0.75rem;
        font: inherit;
        font-size: 0.82rem;
        font-weight: 850;
}

.cart-continue-btn {
        padding: 0.6rem 0.9rem;
        cursor: pointer;
        border: 1px solid var(--primary);
        background: #fff;
        color: #357f49;
}

.cart-drawer-footer {
        flex: 0 0 auto;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.cart-subtotal-row {
        justify-content: space-between;
        gap: 1rem;
        color: #536157;
        font-size: 0.9rem;
}

.cart-subtotal-row strong {
        color: #173a20;
        font-size: 1.2rem;
}

.cart-drawer-footer > p {
        margin: 0.25rem 0 0.9rem;
        color: #758178;
        font-size: 0.76rem;
}

.cart-footer-actions {
        gap: 0.65rem;
}

.cart-clear-btn {
        flex: 0 0 auto;
        padding: 0.6rem 0.75rem;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: #fff;
        color: #7f3030;
}

.cart-checkout-btn {
        flex: 1;
        gap: 0.4rem;
        padding: 0.6rem 0.85rem;
        background: #183e23;
        color: #fff;
        box-shadow: 0 10px 22px rgba(24, 62, 35, 0.18);
}

.cart-continue-btn:hover,
.cart-continue-btn:focus-visible,
.cart-clear-btn:hover,
.cart-clear-btn:focus-visible,
.cart-checkout-btn:hover,
.cart-checkout-btn:focus-visible {
        outline: none;
        transform: translateY(-1px);
}

.cart-checkout-btn:hover,
.cart-checkout-btn:focus-visible {
        background: var(--primary);
}

.floating-cart-btn {
        position: fixed;
        z-index: 80;
        right: 1.4rem;
        bottom: 1.4rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        min-height: 3.5rem;
        padding: 0.55rem 0.7rem 0.55rem 0.9rem;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        background: #163c20;
        color: #fff;
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
        font: inherit;
        font-size: 0.85rem;
        font-weight: 850;
        transition: transform 0.2s ease, background 0.2s ease;
}

.floating-cart-btn:hover,
.floating-cart-btn:focus-visible {
        background: var(--primary);
        outline: none;
        transform: translateY(-3px);
}

.floating-cart-btn svg {
        width: 1.25rem;
        height: 1.25rem;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
}

.floating-cart-btn strong {
        display: grid;
        min-width: 1.65rem;
        height: 1.65rem;
        place-items: center;
        border-radius: 50%;
        background: #fff;
        color: #1b582a;
        font-size: 0.73rem;
}

.cart-drawer-items[hidden],
.cart-empty-state[hidden],
.cart-drawer-footer[hidden] {
        display: none;
}

.cart-quantity-btn:disabled,
.cart-quantity-btn:disabled:hover,
.cart-quantity-btn:disabled:focus-visible {
        cursor: not-allowed;
        background: #f1f3f1;
        color: #9aa39c;
        outline: none;
}

/* Product page */
.product-detail-section {
        padding: clamp(2.2rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6.5rem);
        background:
                radial-gradient(circle at 88% 8%, rgba(85, 177, 110, 0.12), transparent 22%),
                linear-gradient(180deg, #f8fbf8, #fff);
}

.product-breadcrumbs,
.product-purchase-row,
.product-detail-assurance,
.product-discovery-heading,
.product-filter-list,
.product-discovery-card > div,
.product-information-layout,
.product-feature-list,
.product-feature-list > div {
        display: flex;
}

.product-breadcrumbs {
        align-items: center;
        gap: 0.45rem;
        margin-bottom: 1.45rem;
        color: #728077;
        font-size: 0.83rem;
}

.product-breadcrumbs a {
        color: #3c854f;
        font-weight: 800;
}

.product-detail-layout {
        display: flex;
        align-items: stretch;
        gap: clamp(2rem, 5vw, 5rem);
}

.product-detail-visual {
        position: relative;
        display: flex;
        width: min(49%, 560px);
        min-height: 460px;
        align-items: center;
        justify-content: center;
        padding: clamp(2rem, 5vw, 4.25rem);
        overflow: hidden;
        border: 1px solid rgba(85, 177, 110, 0.16);
        border-radius: 2rem;
        background:
                radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.98), transparent 40%),
                linear-gradient(135deg, #effaf1, #dceee0);
}

.product-detail-visual::before,
.product-detail-visual::after {
        content: '';
        position: absolute;
        border: 1px solid rgba(85, 177, 110, 0.22);
        border-radius: 50%;
        pointer-events: none;
}

.product-detail-visual::before {
        width: 75%;
        aspect-ratio: 1;
}

.product-detail-visual::after {
        width: 105%;
        aspect-ratio: 1;
}

.product-detail-visual img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: min(360px, 38vw);
        object-fit: contain;
}

.product-detail-category,
.product-detail-visual-note {
        position: absolute;
        z-index: 2;
        padding: 0.45rem 0.72rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 850;
}

.product-detail-category {
        top: 1.2rem;
        left: 1.2rem;
        background: rgba(255, 255, 255, 0.8);
        color: #347d48;
}

.product-detail-visual-note {
        right: 1.1rem;
        bottom: 1.1rem;
        max-width: 21ch;
        background: #173c20;
        color: #fff;
        font-size: 0.68rem;
        line-height: 1.35;
}

.product-detail-content {
        display: flex;
        min-width: 0;
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
}

.product-back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.42rem;
        color: #438c55;
        font-size: 0.84rem;
        font-weight: 800;
}

.product-detail-eyebrow {
        margin: 1.5rem 0 0;
        color: #569968;
        font-size: 0.72rem;
        font-weight: 850;
        letter-spacing: 0.11em;
        text-transform: uppercase;
}

.product-detail-content h1 {
        max-width: 15ch;
        margin: 0.5rem 0 0;
        color: #132b19;
        font-size: clamp(2.1rem, 4.1vw, 4.25rem);
        line-height: 0.99;
        letter-spacing: -0.06em;
}

.product-detail-copy {
        max-width: 58ch;
        margin: 1.05rem 0 0;
        color: #5c6a61;
        font-size: 1rem;
}

.product-detail-price {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1.5rem;
}

.product-detail-price strong {
        color: #163e21;
        font-size: clamp(1.7rem, 2.7vw, 2.35rem);
        letter-spacing: -0.045em;
}

.product-detail-price s {
        color: #879188;
        font-size: 0.92rem;
}

.product-detail-price span {
        padding: 0.25rem 0.48rem;
        border-radius: 999px;
        background: #e7f7ea;
        color: #338148;
        font-size: 0.7rem;
        font-weight: 850;
}

.product-stock-line {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin-top: 0.75rem;
        color: #427950;
        font-size: 0.82rem;
        font-weight: 750;
}

.product-stock-line span {
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 4px rgba(85, 177, 110, 0.15);
}

.product-purchase-row {
        align-items: stretch;
        gap: 0.7rem;
        margin-top: 1.35rem;
}

.product-quantity-picker {
        display: flex;
        align-items: center;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.13);
        border-radius: 0.78rem;
        background: #fff;
}

.product-quantity-picker button {
        display: grid;
        width: 2.45rem;
        min-height: 2.7rem;
        place-items: center;
        cursor: pointer;
        border: 0;
        background: #eff8f1;
        color: #347c48;
        font: inherit;
        font-size: 1.05rem;
        font-weight: 900;
}

.product-quantity-picker button:hover,
.product-quantity-picker button:focus-visible {
        background: var(--primary);
        color: #fff;
        outline: none;
}

.product-quantity-picker input {
        width: 2.6rem;
        min-height: 2.7rem;
        border: 0;
        outline: 0;
        color: #1d3222;
        background: #fff;
        font: inherit;
        font-size: 0.86rem;
        font-weight: 850;
        text-align: center;
}

.product-quantity-picker input::-webkit-inner-spin-button,
.product-quantity-picker input::-webkit-outer-spin-button {
        margin: 0;
        appearance: none;
}

.product-main-add-btn {
        display: inline-flex;
        min-height: 2.7rem;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border: 1px solid var(--primary);
        border-radius: 0.78rem;
        background: var(--primary);
        color: #fff;
        box-shadow: 0 10px 22px rgba(85, 177, 110, 0.24);
        font: inherit;
        font-size: 0.82rem;
        font-weight: 850;
}

.product-main-add-btn:hover,
.product-main-add-btn:focus-visible {
        background: #3e9d57;
        outline: none;
        transform: translateY(-1px);
}

.product-detail-assurance {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
}

.product-detail-assurance span {
        padding: 0.36rem 0.56rem;
        border: 1px solid rgba(85, 177, 110, 0.18);
        border-radius: 999px;
        color: #4b7555;
        font-size: 0.68rem;
        font-weight: 750;
}

.product-information-section {
        padding-top: clamp(3rem, 6vw, 5rem);
        padding-bottom: clamp(3rem, 6vw, 5rem);
        background: #14371d;
        color: #fff;
}

.product-information-layout {
        align-items: center;
        justify-content: space-between;
        gap: clamp(2rem, 7vw, 6rem);
}

.product-information-layout > div {
        flex: 1;
}

.product-information-layout h2 {
        max-width: 17ch;
        margin: 0.42rem 0 0;
        font-size: clamp(1.8rem, 3.4vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
}

.product-information-layout > div > p {
        max-width: 55ch;
        margin: 0.9rem 0 0;
        color: rgba(255, 255, 255, 0.72);
}

.product-feature-list {
        flex-direction: column;
        gap: 0.7rem;
}

.product-feature-list > div {
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 0.9rem;
        background: rgba(255, 255, 255, 0.05);
}

.product-feature-list span {
        display: grid;
        width: 1.55rem;
        height: 1.55rem;
        flex: 0 0 auto;
        place-items: center;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-size: 0.72rem;
}

.product-feature-list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.66);
        font-size: 0.82rem;
        line-height: 1.4;
}

.product-feature-list strong {
        display: block;
        margin-bottom: 0.12rem;
        color: #fff;
        font-size: 0.88rem;
}

.product-discovery-section {
        background: linear-gradient(180deg, #f5faf6, #fff);
}

.product-discovery-heading {
        align-items: end;
        justify-content: space-between;
        gap: 1.5rem;
}

.product-discovery-heading h2 {
        margin: 0.35rem 0 0;
        font-size: clamp(1.8rem, 3.4vw, 3rem);
        line-height: 1.05;
        letter-spacing: -0.045em;
}

.product-discovery-search {
        display: flex;
        width: min(100%, 330px);
        min-height: 2.9rem;
        align-items: center;
        gap: 0.55rem;
        padding: 0 0.85rem;
        border: 1px solid rgba(0, 0, 0, 0.11);
        border-radius: 0.8rem;
        background: #fff;
}

.product-discovery-search span {
        color: #4d9b61;
}

.product-discovery-search input {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: #1c2f22;
        font: inherit;
        font-size: 0.84rem;
}

.product-filter-list {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.25rem;
}

.product-filter-chip {
        min-height: 2.35rem;
        padding: 0.42rem 0.7rem;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 999px;
        background: #fff;
        color: #56645a;
        font: inherit;
        font-size: 0.76rem;
        font-weight: 800;
}

.product-filter-chip:hover,
.product-filter-chip:focus-visible,
.product-filter-chip.is-selected {
        border-color: var(--primary);
        background: var(--primary);
        color: #fff;
        outline: none;
}

.product-discovery-count {
        margin: 1.15rem 0 0.75rem;
        color: #6b786e;
        font-size: 0.83rem;
}

.product-discovery-count strong {
        color: #1e4e29;
}

.product-discovery-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
}

.product-discovery-card {
        display: flex;
        min-width: 0;
        flex: 1 1 220px;
        flex-direction: column;
        max-width: calc(25% - 0.75rem);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1.1rem;
        background: #fff;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.product-discovery-card[hidden] {
        display: none;
}

.product-discovery-card:hover {
        border-color: rgba(85, 177, 110, 0.5);
        box-shadow: 0 17px 32px rgba(0, 0, 0, 0.09);
        transform: translateY(-3px);
}

.product-discovery-image {
        display: flex;
        height: 155px;
        align-items: center;
        justify-content: center;
        padding: 0.8rem;
        background: linear-gradient(135deg, #f0f9f1, #e2f1e5);
}

.product-discovery-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
}

.product-discovery-body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 0.9rem;
}

.product-discovery-body > p {
        margin: 0;
        color: #5b9d6d;
        font-size: 0.65rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.product-discovery-body h3 {
        margin: 0.38rem 0 0;
        font-size: 0.98rem;
        line-height: 1.17;
}

.product-discovery-body h3 a:hover,
.product-discovery-body h3 a:focus-visible {
        color: #3b8b4f;
        outline: none;
}

.product-discovery-body > div {
        align-items: baseline;
        gap: 0.45rem;
        margin-top: auto;
        padding-top: 0.9rem;
}

.product-discovery-body strong {
        color: #183d22;
        font-size: 0.98rem;
}

.product-discovery-body s {
        color: #8b958d;
        font-size: 0.72rem;
}

.product-discovery-add {
        min-height: 2.2rem;
        margin-top: 0.7rem;
        padding: 0.38rem 0.6rem;
        cursor: pointer;
        border: 1px solid rgba(85, 177, 110, 0.5);
        border-radius: 0.62rem;
        background: #fff;
        color: #377f4a;
        font: inherit;
        font-size: 0.72rem;
        font-weight: 850;
}

.product-discovery-add:hover,
.product-discovery-add:focus-visible {
        background: var(--primary);
        color: #fff;
        outline: none;
}

.product-discovery-empty {
        margin: 1.25rem 0 0;
        color: #587260;
        text-align: center;
}

/* Contact page */
.contact-page-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4rem, 7vw, 6rem);
        color: #fff;
        background:
                radial-gradient(circle at 84% 20%, rgba(85, 177, 110, 0.3), transparent 23%),
                radial-gradient(circle at 10% 100%, rgba(85, 177, 110, 0.16), transparent 28%),
                linear-gradient(128deg, #020403, #102a17);
}

.contact-page-hero::after {
        content: '';
        position: absolute;
        top: -9rem;
        right: -12rem;
        width: min(50vw, 620px);
        aspect-ratio: 1;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
        box-shadow: 0 0 0 3.5rem rgba(85, 177, 110, 0.035), 0 0 0 7rem rgba(85, 177, 110, 0.025);
}

.contact-page-hero-layout,
.contact-page-actions,
.contact-options-heading,
.contact-options-grid,
.contact-faq-layout,
.contact-field-row,
.contact-form-submit-row {
        display: flex;
}

.contact-page-hero-layout {
        position: relative;
        z-index: 1;
        align-items: stretch;
        justify-content: space-between;
        gap: clamp(2rem, 7vw, 6rem);
}

.contact-page-hero-copy {
        flex: 1 1 600px;
        max-width: 730px;
}

.contact-page-hero .eyebrow {
        margin-bottom: 1.15rem;
        border: 1px solid rgba(163, 239, 182, 0.22);
        background: rgba(85, 177, 110, 0.13);
        color: #a7ebb8;
}

.contact-page-hero h1 {
        margin: 0;
        font-size: clamp(2rem, 5vw, 4rem);
        line-height: 0.98;
        letter-spacing: -0.065em;
}

.contact-page-hero-copy > p {
        max-width: 58ch;
        margin: 1.35rem 0 0;
        color: rgba(255, 255, 255, 0.73);
        font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.contact-page-actions {
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1.65rem;
}

.contact-message-toggle,
.contact-whatsapp-btn {
        display: inline-flex;
        min-height: 2.75rem;
        align-items: center;
        justify-content: center;
        gap: 0.42rem;
        padding: 0.5rem 0.9rem;
        border-radius: 0.78rem;
        font: inherit;
        font-size: 0.82rem;
        font-weight: 850;
        transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-message-toggle {
        cursor: pointer;
        border: 1px solid var(--primary);
        background: var(--primary);
        color: #fff;
        box-shadow: 0 10px 24px rgba(85, 177, 110, 0.24);
}

.contact-whatsapp-btn {
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #fff;
}

.contact-message-toggle:hover,
.contact-message-toggle:focus-visible,
.contact-whatsapp-btn:hover,
.contact-whatsapp-btn:focus-visible {
        outline: none;
        transform: translateY(-2px);
}

.contact-message-toggle:hover,
.contact-message-toggle:focus-visible {
        background: #3d9e57;
}

.contact-whatsapp-btn:hover,
.contact-whatsapp-btn:focus-visible {
        border-color: #a6ecb7;
        background: rgba(255, 255, 255, 0.09);
}

.contact-response-note {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.15rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
}

.contact-response-note span {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        background: var(--primary-2);
        box-shadow: 0 0 0 4px rgba(108, 207, 134, 0.14);
}

.contact-page-info-card {
        position: relative;
        display: flex;
        width: min(100%, 350px);
        flex: 0 1 350px;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 335px;
        padding: 1.4rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.17);
        border-radius: 1.5rem;
        background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.8)),
                url('../images/visual-card-2.jpg') center/cover;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.contact-card-kicker {
        color: #afefbf;
        font-size: 0.7rem;
        font-weight: 850;
        letter-spacing: 0.1em;
        text-transform: uppercase;
}

.contact-page-info-card h2 {
        max-width: 14ch;
        margin: 0.5rem 0 1.2rem;
        font-size: 1.8rem;
        line-height: 1.03;
        letter-spacing: -0.045em;
}

.contact-page-info-card a {
        display: flex;
        flex-direction: column;
        gap: 0.08rem;
        margin-top: 0.7rem;
}

.contact-page-info-card a span,
.contact-page-info-card p {
        color: rgba(255, 255, 255, 0.62);
        font-size: 0.74rem;
}

.contact-page-info-card a strong {
        color: #fff;
        font-size: 0.9rem;
}

.contact-page-info-card p {
        margin: 1rem 0 0;
        line-height: 1.55;
}

.contact-form-section {
        padding: clamp(3.5rem, 7vw, 6rem) 0;
        background: #f3faf4;
}

.contact-form-section[hidden] {
        display: none;
}

.contact-form-shell {
        display: flex;
        align-items: stretch;
        gap: clamp(2rem, 6vw, 5rem);
        padding: clamp(1.2rem, 4vw, 2.8rem);
        border: 1px solid rgba(85, 177, 110, 0.18);
        border-radius: 1.7rem;
        background: #fff;
        box-shadow: var(--shadow-soft);
}

.contact-form-intro {
        flex: 1 1 300px;
}

.contact-form-intro h2,
.contact-options-heading h2,
.contact-faq-layout h2 {
        max-width: 16ch;
        margin: 0.42rem 0 0;
        color: #16301d;
        font-size: clamp(1.8rem, 3.3vw, 3rem);
        line-height: 1.06;
        letter-spacing: -0.045em;
}

.contact-form-intro > p,
.contact-options-heading > p,
.contact-faq-layout > div > p {
        max-width: 50ch;
        margin: 0.85rem 0 0;
        color: #65736a;
}

.contact-form-intro-points {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        margin-top: 1.2rem;
}

.contact-form-intro-points span {
        color: #3d7b4c;
        font-size: 0.82rem;
        font-weight: 750;
}

.contact-form-intro-points span::before {
        content: '\2713';
        display: inline-grid;
        width: 1.2rem;
        height: 1.2rem;
        place-items: center;
        margin-right: 0.45rem;
        border-radius: 50%;
        background: #e6f6e9;
        color: #3d9654;
        font-size: 0.68rem;
}

.contact-message-form {
        display: flex;
        flex: 1 1 520px;
        flex-direction: column;
        gap: 0.85rem;
}

.contact-field-row {
        gap: 0.75rem;
}

.contact-message-form label {
        display: flex;
        min-width: 0;
        flex: 1;
        flex-direction: column;
        gap: 0.32rem;
        color: #344438;
        font-size: 0.75rem;
        font-weight: 800;
}

.contact-message-form input,
.contact-message-form select,
.contact-message-form textarea {
        width: 100%;
        min-width: 0;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 0.7rem;
        background: #fff;
        color: #1d2d21;
        font: inherit;
        font-size: 0.85rem;
}

.contact-message-form input,
.contact-message-form select {
        min-height: 2.75rem;
        padding: 0.55rem 0.7rem;
}

.contact-message-form textarea {
        min-height: 7.5rem;
        padding: 0.7rem;
        resize: vertical;
}

.contact-message-form input:focus,
.contact-message-form select:focus,
.contact-message-form textarea:focus {
        border-color: var(--primary);
        outline: 3px solid rgba(85, 177, 110, 0.14);
}

.contact-form-submit-row {
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 0.1rem;
}

.contact-form-submit-row button {
        display: inline-flex;
        min-height: 2.65rem;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.5rem 0.85rem;
        cursor: pointer;
        border: 1px solid var(--primary);
        border-radius: 0.72rem;
        background: var(--primary);
        color: #fff;
        font: inherit;
        font-size: 0.8rem;
        font-weight: 850;
}

.contact-form-submit-row button:hover,
.contact-form-submit-row button:focus-visible {
        background: #3d9c56;
        outline: none;
}

.contact-form-submit-row p {
        margin: 0;
        color: #7b877e;
        font-size: 0.72rem;
        text-align: right;
}

.contact-options-section {
        background: linear-gradient(180deg, #fff, #f5faf6);
}

.contact-options-heading {
        align-items: end;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 1.7rem;
}

.contact-options-grid {
        gap: 1rem;
}

.contact-option-card {
        display: flex;
        min-height: 195px;
        flex: 1;
        flex-direction: column;
        padding: 1.2rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1.2rem;
        background: #fff;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.045);
        transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-option-card:hover,
.contact-option-card:focus-visible {
        border-color: rgba(85, 177, 110, 0.55);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
        outline: none;
        transform: translateY(-4px);
}

.contact-option-icon {
        display: grid;
        width: 2.3rem;
        height: 2.3rem;
        place-items: center;
        border-radius: 0.7rem;
        background: #e9f7eb;
        color: #398b4d;
        font-size: 1rem;
}

.contact-option-card p {
        margin: 1rem 0 0;
        color: #579667;
        font-size: 0.7rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.contact-option-card h3 {
        max-width: 16ch;
        margin: 0.35rem 0 0;
        color: #17321e;
        font-size: 1.15rem;
        line-height: 1.08;
}

.contact-option-link {
        margin-top: auto;
        padding-top: 1rem;
        color: #387f4a;
        font-size: 0.78rem;
        font-weight: 850;
}

.contact-faq-section {
        background: #153a1e;
        color: #fff;
}

.contact-faq-layout {
        align-items: flex-start;
        justify-content: space-between;
        gap: clamp(2rem, 8vw, 7rem);
}

.contact-faq-layout > div {
        flex: 1;
}

.contact-faq-layout h2 {
        color: #fff;
}

.contact-faq-layout > div > p {
        color: rgba(255, 255, 255, 0.68);
}

.contact-faq-list {
        display: flex;
        flex: 1.1;
        flex-direction: column;
        gap: 0.6rem;
}

.contact-faq-list details {
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 0.9rem;
        background: rgba(255, 255, 255, 0.045);
}

.contact-faq-list summary {
        position: relative;
        padding: 1rem 2.8rem 1rem 1rem;
        cursor: pointer;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 800;
        list-style: none;
}

.contact-faq-list summary::-webkit-details-marker {
        display: none;
}

.contact-faq-list summary::after {
        content: '+';
        position: absolute;
        top: 50%;
        right: 1rem;
        color: #aaeabb;
        font-size: 1.2rem;
        transform: translateY(-50%);
}

.contact-faq-list details[open] summary::after {
        content: '\2212';
}

.contact-faq-list details p {
        margin: 0;
        padding: 0 1rem 1rem;
        color: rgba(255, 255, 255, 0.69);
        font-size: 0.84rem;
        line-height: 1.55;
}

.contact-option-button {
        width: 100%;
        cursor: pointer;
        color: inherit;
        font: inherit;
        text-align: left;
}

.contact-option-overline {
        display: block;
        margin-top: 1rem;
        color: #579667;
        font-size: 0.7rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.contact-option-title {
        display: block;
        max-width: 16ch;
        margin-top: 0.35rem;
        color: #17321e;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.08;
}

.cart-order-is-open {
        overflow: hidden;
}

.cart-order-modal {
        position: fixed;
        z-index: 120;
        inset: 0;
        display: grid;
        place-items: center;
        padding: 1.25rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
}

.cart-order-modal.is-open {
        opacity: 1;
        pointer-events: auto;
}

.cart-order-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(5, 12, 7, 0.62);
        backdrop-filter: blur(3px);
}

.cart-order-card {
        position: relative;
        z-index: 1;
        width: min(100%, 430px);
        padding: 2rem;
        border: 1px solid rgba(85, 177, 110, 0.2);
        border-radius: 1.2rem;
        background: #fff;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cart-order-close {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        display: grid;
        width: 2.25rem;
        height: 2.25rem;
        place-items: center;
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        background: #f5f8f5;
        color: #27422d;
        font: inherit;
        font-size: 1.4rem;
        line-height: 1;
}

.cart-order-close:hover,
.cart-order-close:focus-visible {
        border-color: var(--primary);
        background: var(--primary);
        color: #fff;
        outline: none;
}

.cart-order-icon {
        display: grid;
        width: 2.9rem;
        height: 2.9rem;
        place-items: center;
        border-radius: 50%;
        background: #eaf7ed;
        color: #2f8f4d;
        font-size: 1.15rem;
        font-weight: 900;
}

.cart-order-card .cart-drawer-kicker {
        margin-top: 1.35rem;
}

.cart-order-card h2 {
        max-width: 16ch;
        margin: 0.35rem 0 0;
        color: #102716;
        font-size: clamp(1.45rem, 4vw, 1.9rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
}

.cart-order-card > p:not(.cart-drawer-kicker) {
        margin: 0.9rem 0 0;
        color: #5d6c61;
        font-size: 0.9rem;
        line-height: 1.65;
}

.cart-order-card > p strong {
        color: #2b7340;
        white-space: nowrap;
}

.cart-order-actions {
        display: flex;
        justify-content: flex-end;
        gap: 0.65rem;
        margin-top: 1.6rem;
}

.cart-order-cancel,
.cart-order-confirm {
        min-height: 2.65rem;
        padding: 0.55rem 0.85rem;
        cursor: pointer;
        border-radius: 0.7rem;
        font: inherit;
        font-size: 0.8rem;
        font-weight: 850;
        transition: transform 0.2s ease, background 0.2s ease;
}

.cart-order-cancel {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: #fff;
        color: #4d5d51;
}

.cart-order-confirm {
        border: 1px solid #183e23;
        background: #183e23;
        color: #fff;
        box-shadow: 0 9px 20px rgba(24, 62, 35, 0.18);
}

.cart-order-cancel:hover,
.cart-order-cancel:focus-visible,
.cart-order-confirm:hover,
.cart-order-confirm:focus-visible {
        outline: none;
        transform: translateY(-1px);
}

.cart-order-confirm:hover,
.cart-order-confirm:focus-visible {
        border-color: var(--primary);
        background: var(--primary);
}
.cart-checkout-btn {
        cursor: pointer;
        border: 1px solid #183e23;
}
.contact-honeypot {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
        white-space: nowrap !important;
}

.contact-field-error {
        display: block;
        margin-top: 0.28rem;
        color: #b63737;
        font-size: 0.7rem;
        font-weight: 750;
        line-height: 1.35;
}

.contact-form-feedback {
        margin: 0 0 1rem;
        padding: 0.75rem 0.85rem;
        border: 1px solid;
        border-radius: 0.7rem;
        font-size: 0.8rem;
        font-weight: 750;
        line-height: 1.45;
}

.contact-form-feedback.is-success {
        border-color: rgba(85, 177, 110, 0.3);
        color: #2f7c43;
        background: #edf9ef;
}

.contact-form-feedback.is-error {
        border-color: rgba(182, 55, 55, 0.25);
        color: #a22f2f;
        background: #fff3f2;
}

.contact-message-form [aria-invalid="true"] {
        border-color: #c85050;
}
.contact-form-security {
        display: flex;
        justify-content: flex-end;
}

.contact-form-security label {
        width: min(100%, 240px);
}

.contact-form-security label > span {
        color: #708074;
        font-size: 0.7rem;
        font-weight: 600;
}.contact-optional {
        color: #839087;
        font-size: 0.68rem;
        font-weight: 650;
}

.contact-field-hint {
        margin: -0.2rem 0 0;
        color: #708074;
        font-size: 0.72rem;
        line-height: 1.4;
}

.contact-field-hint + .contact-field-error {
        margin-top: -0.45rem;
}

.ebook-buy-btn {
        border: 0;
        font: inherit;
        cursor: pointer;
}

.ebooks-page-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(5.5rem, 10vw, 8.5rem) 0 clamp(4rem, 8vw, 6.5rem);
        color: #fff;
        background:
                radial-gradient(circle at 80% 20%, rgba(85, 177, 110, 0.28), transparent 28%),
                linear-gradient(125deg, #071008, #101d12 56%, #050805);
}

.ebooks-page-hero::after {
        position: absolute;
        inset: auto -10% -38%;
        height: 70%;
        content: '';
        background: linear-gradient(120deg, transparent 20%, rgba(85, 177, 110, 0.16) 50%, transparent 80%);
        transform: rotate(-8deg);
        pointer-events: none;
}

.ebooks-page-hero-inner {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(2rem, 7vw, 6rem);
}

.ebooks-page-hero-copy {
        max-width: 680px;
}

.ebooks-page-hero h1 {
        max-width: 700px;
        margin: 1rem 0 1.2rem;
        font-size: clamp(2.4rem, 5vw, 5.1rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
}

.ebooks-page-hero p {
        max-width: 600px;
        color: rgba(255, 255, 255, 0.76);
        font-size: 1.02rem;
        line-height: 1.75;
}

.ebooks-page-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.8rem;
}

.ebooks-page-hero-panel {
        display: flex;
        width: min(100%, 280px);
        min-height: 265px;
        flex: 0 0 280px;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 2rem;
        background: linear-gradient(150deg, rgba(85, 177, 110, 0.32), rgba(255, 255, 255, 0.05));
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ebooks-page-hero-panel-icon,
.ebooks-page-empty-icon {
        display: inline-flex;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        color: #55b16e;
        background: rgba(255, 255, 255, 0.94);
}

.ebooks-page-hero-panel-icon svg,
.ebooks-page-empty-icon svg {
        width: 26px;
        height: 26px;
        fill: currentColor;
}

.ebooks-page-hero-panel strong {
        margin-top: 1.4rem;
        font-size: 1.15rem;
}

.ebooks-page-hero-panel > span:last-child {
        margin-top: 0.45rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.55;
}

.ebooks-library {
        background: #f8fbf8;
}

.ebooks-page-alert {
        max-width: 760px;
        margin: 1.5rem auto 0;
        padding: 0.9rem 1rem;
        border: 1px solid rgba(85, 177, 110, 0.24);
        border-radius: 0.85rem;
        color: #216b36;
        background: rgba(85, 177, 110, 0.1);
        text-align: center;
}

.ebooks-page-alert.is-error {
        border-color: rgba(164, 49, 49, 0.2);
        color: #8f2929;
        background: #fff1f0;
}

.ebooks-page-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
        margin-top: 2.4rem;
}

.ebooks-page-card {
        display: flex;
        width: 100%;
        max-width: 360px;
        flex: 1 1 300px;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid rgba(85, 177, 110, 0.14);
        border-radius: 1.5rem;
        background: #fff;
        box-shadow: 0 18px 50px rgba(20, 55, 27, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ebooks-page-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 62px rgba(20, 55, 27, 0.14);
}

.ebooks-page-card-image {
        position: relative;
        height: 250px;
        overflow: hidden;
        background: #eaf4ec;
}

.ebooks-page-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.ebooks-page-card-price {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.42rem 0.72rem;
        border-radius: 999px;
        color: #fff;
        background: rgba(0, 0, 0, 0.78);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
}

.ebooks-page-card-body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 1.25rem;
}

.ebooks-page-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
}

.ebooks-page-card-meta strong {
        color: var(--primary);
        font-size: 0.9rem;
}

.ebooks-page-card h2 {
        margin: 1rem 0 0;
        color: #000;
        font-size: 1.25rem;
        line-height: 1.15;
}

.ebooks-page-card p {
        display: -webkit-box;
        margin: 0.8rem 0 1.4rem;
        overflow: hidden;
        color: rgba(0, 0, 0, 0.68);
        line-height: 1.65;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
}

.ebook-page-get-btn {
        display: inline-flex;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding: 0.65rem 1rem;
        border: 0;
        border-radius: 999px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary-2));
        box-shadow: 0 12px 25px rgba(85, 177, 110, 0.2);
        font: inherit;
        font-weight: 850;
        cursor: pointer;
        transition: transform 0.2s ease, filter 0.2s ease;
}

.ebook-page-get-btn:hover,
.ebook-page-get-btn:focus-visible {
        filter: brightness(1.04);
        transform: translateY(-1px);
}

.ebook-page-get-btn:focus-visible {
        outline: 3px solid rgba(85, 177, 110, 0.3);
        outline-offset: 3px;
}

.ebooks-page-empty {
        display: flex;
        min-height: 280px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 0.7rem;
        padding: 2rem;
        text-align: center;
}

.ebooks-page-empty h2 {
        margin: 0.4rem 0 0;
}

.ebooks-page-empty p {
        max-width: 430px;
        color: rgba(0, 0, 0, 0.64);
        line-height: 1.65;
}

.ebooks-page-callout {
        padding-top: clamp(3rem, 6vw, 5rem);
        padding-bottom: clamp(3rem, 6vw, 5rem);
}

.ebooks-page-callout-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
}

.ebooks-page-callout h2 {
        margin: 0.8rem 0 0;
        color: #fff;
}

.ebooks-page-callout p {
        max-width: 600px;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.65;
}

.ebook-purchase-modal {
        position: fixed;
        z-index: 250;
        inset: 0;
        display: grid;
        place-items: center;
        padding: 1.25rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
}

.ebook-purchase-modal.is-open {
        opacity: 1;
        pointer-events: auto;
}

.ebook-purchase-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(3, 8, 4, 0.68);
        backdrop-filter: blur(5px);
}

.ebook-purchase-card {
        position: relative;
        z-index: 1;
        width: min(100%, 480px);
        padding: clamp(1.4rem, 4vw, 2rem);
        border: 1px solid rgba(85, 177, 110, 0.22);
        border-radius: 1.5rem;
        background: #fff;
        box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.ebook-purchase-close {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        display: inline-flex;
        width: 2rem;
        height: 2rem;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        color: rgba(0, 0, 0, 0.55);
        background: #edf5ee;
        font-size: 1.3rem;
        cursor: pointer;
}

.ebook-purchase-icon {
        display: inline-flex;
        width: 2.8rem;
        height: 2.8rem;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        color: #fff;
        background: var(--primary);
}

.ebook-purchase-icon svg {
        width: 1.35rem;
        height: 1.35rem;
        fill: currentColor;
}

.ebook-purchase-card h2 {
        margin: 1rem 0 0;
        color: #000;
        font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.ebook-purchase-card > p {
        margin: 0.7rem 0 0;
        color: rgba(0, 0, 0, 0.66);
        line-height: 1.65;
}

.ebook-purchase-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1.25rem;
        padding: 0.9rem 1rem;
        border-radius: 0.85rem;
        color: #000;
        background: #f0f8f1;
}

.ebook-purchase-summary strong {
        max-width: 70%;
        line-height: 1.35;
}

.ebook-purchase-summary span {
        color: var(--primary);
        font-weight: 900;
        white-space: nowrap;
}

.ebook-purchase-actions {
        display: flex;
        justify-content: flex-end;
        gap: 0.7rem;
        margin-top: 1.35rem;
}

.ebook-purchase-cancel,
.ebook-purchase-confirm {
        min-height: 42px;
        padding: 0.6rem 1rem;
        border: 0;
        border-radius: 999px;
        font: inherit;
        font-size: 0.88rem;
        font-weight: 850;
        cursor: pointer;
}

.ebook-purchase-cancel {
        color: #000;
        background: #edf2ed;
}

.ebook-purchase-confirm {
        color: #fff;
        background: var(--primary);
        box-shadow: 0 10px 22px rgba(85, 177, 110, 0.22);
}

body.ebook-purchase-is-open {
        overflow: hidden;
}

.project-archive-hero,
.project-detail-hero {
        padding: clamp(6rem, 11vw, 9.5rem) 0 4rem;
        color: #fff;
        background: radial-gradient(circle at 80% 20%, rgba(85, 177, 110, 0.2), transparent 38%), #07110a;
}

.project-archive-hero-inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
}

.project-archive-hero h1 {
        max-width: 760px;
        margin: 0.8rem 0 0;
        color: #fff;
        font-size: clamp(2.35rem, 6vw, 5.2rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
}

.project-archive-hero p {
        max-width: 620px;
        margin: 1.25rem 0 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 1.05rem;
        line-height: 1.7;
}

.project-archive-section {
        background: #f7faf7;
}

.project-archive-heading,
.project-detail-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
        margin-bottom: 2rem;
}

.project-archive-heading h2,
.project-detail-heading h1 {
        margin: 0.65rem 0 0;
}

.project-archive-count {
        color: var(--primary);
        font-size: 0.85rem;
        font-weight: 850;
        white-space: nowrap;
}

.project-archive-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.15rem;
        align-items: stretch;
}

.project-archive-card {
        display: flex;
        flex: 1 1 300px;
        flex-direction: column;
        overflow: hidden;
        max-width: 390px;
        border: 1px solid var(--border);
        border-radius: 1.35rem;
        color: inherit;
        background: #fff;
        text-decoration: none;
        box-shadow: var(--shadow-soft);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-archive-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
}

.project-archive-image {
        position: relative;
        height: 245px;
        overflow: hidden;
        background: #e7efe8;
}

.project-archive-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
}

.project-archive-card:hover .project-archive-image img {
        transform: scale(1.04);
}

.project-archive-image > span {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
        padding: 0.5rem 0.75rem;
        border-radius: 999px;
        color: #fff;
        background: rgba(0, 0, 0, 0.68);
        font-size: 0.75rem;
        font-weight: 800;
}

.project-archive-card-body {
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 0.65rem;
        padding: 1.2rem;
}

.project-archive-card-body h2 {
        margin: 0;
        color: var(--dark);
        font-size: 1.18rem;
        line-height: 1.2;
}

.project-archive-card-body p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: rgba(0, 0, 0, 0.66);
        line-height: 1.6;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
}

.project-empty-state {
        padding: 4rem 1.5rem;
        border: 1px dashed rgba(85, 177, 110, 0.45);
        border-radius: 1.25rem;
        text-align: center;
        background: #fff;
}

.project-empty-state h2 {
        margin: 0;
}

.project-empty-state p {
        margin: 0.75rem 0 0;
        color: rgba(0, 0, 0, 0.62);
}

.project-breadcrumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
}

.project-breadcrumbs a {
        color: #9be2a8;
        text-decoration: none;
}

.project-detail-heading {
        align-items: center;
        margin: 4rem 0 0;
}

.project-detail-heading h1 {
        max-width: 900px;
        color: #fff;
        font-size: clamp(2.25rem, 5vw, 4.8rem);
        line-height: 1;
        letter-spacing: -0.05em;
}

.project-back-link {
        flex: 0 0 auto;
        color: #fff;
        font-size: 0.85rem;
        font-weight: 800;
        text-decoration: none;
}

.project-detail-section {
        background: #f7faf7;
}

.project-detail-layout {
        display: flex;
        align-items: flex-start;
        gap: clamp(2rem, 6vw, 6rem);
}

.project-detail-copy {
        position: sticky;
        top: 6rem;
        flex: 0 1 31%;
}

.project-detail-kicker {
        color: var(--primary);
        font-size: 0.74rem;
        font-weight: 850;
        letter-spacing: 0.1em;
        text-transform: uppercase;
}

.project-detail-copy h2 {
        margin: 0.75rem 0 1rem;
        font-size: clamp(1.65rem, 3vw, 2.55rem);
        line-height: 1.08;
}

.project-detail-description {
        color: rgba(0, 0, 0, 0.7);
        line-height: 1.85;
        white-space: normal;
}

.project-detail-copy .btn {
        margin-top: 1.6rem;
}

.project-gallery {
        display: flex;
        flex: 1 1 69%;
        flex-wrap: wrap;
        gap: 0.85rem;
        align-items: stretch;
}

.project-gallery-item {
        flex: 1 1 calc(33.333% - 0.6rem);
        height: 210px;
        overflow: hidden;
        margin: 0;
        border-radius: 1rem;
        background: #e7efe8;
        box-shadow: var(--shadow-soft);
}

.project-gallery-item.is-featured {
        flex-basis: 100%;
        height: 390px;
}

.project-gallery-item img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.project-detail-layout {
        display: flex;
        flex-direction: column;
        gap: clamp(2.25rem, 5vw, 4.5rem);
}

.project-detail-copy {
        width: min(100%, 860px);
}

.project-gallery {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        gap: 0.85rem;
}

.project-gallery-item,
.project-gallery-item.is-featured {
        flex: 1 1 calc(33.333% - 0.6rem);
        min-width: 180px;
        height: auto;
        aspect-ratio: 4 / 3;
}

.project-gallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 0.85rem;
}

.project-gallery-item,
.project-gallery-item.is-featured {
        min-width: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
}
/* Mission and vision */
.home-page .purpose-section {
        position: relative;
        background: linear-gradient(180deg, #fff 0%, #f3f8f4 100%);
}

.home-page .purpose-panel {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: clamp(1.8rem, 4vw, 3rem);
        overflow: hidden;
        padding: clamp(1.5rem, 4vw, 3.5rem);
        border: 1px solid rgba(85, 177, 110, 0.2);
        border-radius: clamp(1.5rem, 3vw, 2.4rem);
        color: #fff;
        background:
                radial-gradient(circle at 94% 8%, rgba(85, 177, 110, 0.3), transparent 26%),
                radial-gradient(circle at 8% 100%, rgba(85, 177, 110, 0.16), transparent 30%),
                linear-gradient(135deg, #050706 0%, #0d130f 58%, #071009 100%);
        box-shadow: 0 30px 70px rgba(8, 34, 15, 0.16);
}

.home-page .purpose-panel::before {
        content: '';
        position: absolute;
        top: -7rem;
        right: -5rem;
        width: 18rem;
        height: 18rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        box-shadow:
                0 0 0 2rem rgba(255, 255, 255, 0.025),
                0 0 0 5rem rgba(255, 255, 255, 0.018);
        pointer-events: none;
}

.home-page .purpose-heading {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: clamp(1.5rem, 5vw, 4.5rem);
}

.home-page .purpose-heading > div {
        flex: 1 1 58%;
        min-width: 0;
}

.home-page .purpose-heading h2 {
        max-width: 760px;
        margin: 0.75rem 0 0;
        color: #fff;
        font-size: clamp(2rem, 4.3vw, 3.65rem);
        line-height: 1.04;
        letter-spacing: -0.045em;
}

.home-page .purpose-heading > p {
        flex: 0 1 410px;
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 1rem;
        line-height: 1.75;
}

.home-page .purpose-cards {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: stretch;
        gap: clamp(1rem, 2.2vw, 1.5rem);
}

.home-page .purpose-card {
        display: flex;
        flex: 1 1 0;
        flex-direction: column;
        min-width: 0;
        padding: clamp(1.35rem, 2.7vw, 2rem);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 1.4rem;
        background: rgba(255, 255, 255, 0.055);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(10px);
}

.home-page .purpose-card-vision {
        background: linear-gradient(145deg, rgba(85, 177, 110, 0.18), rgba(255, 255, 255, 0.045));
}

.home-page .purpose-card-head {
        display: flex;
        align-items: center;
        gap: 0.9rem;
}

.home-page .purpose-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        flex: 0 0 3rem;
        border-radius: 0.9rem;
        color: #050705;
        background: #55b16e;
        box-shadow: 0 12px 28px rgba(85, 177, 110, 0.22);
}

.home-page .purpose-icon svg {
        width: 1.45rem;
        height: 1.45rem;
        fill: currentColor;
}

.home-page .purpose-card-head span:not(.purpose-icon) {
        display: block;
        margin-bottom: 0.2rem;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.72rem;
        font-weight: 750;
        letter-spacing: 0.11em;
        text-transform: uppercase;
}

.home-page .purpose-card h3 {
        margin: 0;
        color: #fff;
        font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.home-page .purpose-card > p {
        margin: 1.35rem 0 1.5rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: clamp(0.96rem, 1.4vw, 1.04rem);
        line-height: 1.75;
}

.home-page .purpose-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: auto;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.home-page .purpose-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 2rem;
        padding: 0.35rem 0.75rem;
        border: 1px solid rgba(85, 177, 110, 0.24);
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.76);
        background: rgba(85, 177, 110, 0.08);
        font-size: 0.75rem;
        font-weight: 700;
}
/* Consultation confirmation modal */
.consultation-confirmation-modal {
        position: fixed;
        z-index: 320;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition:
                opacity 0.22s ease,
                visibility 0s linear 0.22s;
}

.consultation-confirmation-modal.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0s;
}

.consultation-confirmation-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(2, 8, 4, 0.76);
        backdrop-filter: blur(7px);
}

.consultation-confirmation-card {
        position: relative;
        z-index: 1;
        width: min(100%, 520px);
        overflow: hidden;
        padding: clamp(1.4rem, 4vw, 2.15rem);
        border: 1px solid rgba(85, 177, 110, 0.25);
        border-radius: 1.6rem;
        color: #111;
        background:
                radial-gradient(circle at 100% 0%, rgba(85, 177, 110, 0.16), transparent 32%),
                #fff;
        box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
        transform: translateY(1rem) scale(0.975);
        transition: transform 0.22s ease;
        outline: 0;
}

.consultation-confirmation-modal.is-open .consultation-confirmation-card {
        transform: translateY(0) scale(1);
}

.consultation-confirmation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #55b16e, #9bd9ab);
}

.consultation-confirmation-close {
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        display: inline-flex;
        width: 2.15rem;
        height: 2.15rem;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        color: rgba(0, 0, 0, 0.58);
        background: #edf6ef;
        font: inherit;
        font-size: 1.35rem;
        line-height: 1;
        cursor: pointer;
        transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.consultation-confirmation-close:hover,
.consultation-confirmation-close:focus-visible {
        color: #000;
        background: #dff0e3;
        transform: rotate(4deg);
}

.consultation-confirmation-icon {
        display: inline-flex;
        width: 3rem;
        height: 3rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        border-radius: 1rem;
        color: #fff;
        background: linear-gradient(135deg, #55b16e, #32864a);
        box-shadow: 0 12px 26px rgba(85, 177, 110, 0.25);
}

.consultation-confirmation-icon svg {
        width: 1.45rem;
        height: 1.45rem;
        fill: currentColor;
}

.consultation-confirmation-kicker {
        display: block;
        color: #3e8e54;
        font-size: 0.72rem;
        font-weight: 850;
        letter-spacing: 0.12em;
        text-transform: uppercase;
}

.consultation-confirmation-card h2 {
        margin: 0.55rem 0 0;
        color: #000;
        font-size: clamp(1.45rem, 4vw, 2rem);
        line-height: 1.12;
        letter-spacing: -0.035em;
}

.consultation-confirmation-card > p:not(.consultation-fee-note) {
        margin: 0.8rem 0 0;
        color: rgba(0, 0, 0, 0.66);
        line-height: 1.65;
}

.consultation-fee-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1.3rem;
        padding: 1rem 1.1rem;
        border: 1px solid rgba(85, 177, 110, 0.2);
        border-radius: 1rem;
        background: linear-gradient(135deg, #eff8f1, #f8fcf9);
}

.consultation-fee-summary span {
        color: rgba(0, 0, 0, 0.62);
        font-size: 0.85rem;
        font-weight: 750;
}

.consultation-fee-summary strong {
        color: #277c40;
        font-size: clamp(1.35rem, 4vw, 1.8rem);
        letter-spacing: -0.03em;
        white-space: nowrap;
}

.consultation-fee-note {
        margin: 0.8rem 0 0;
        padding-left: 0.8rem;
        border-left: 3px solid rgba(85, 177, 110, 0.55);
        color: rgba(0, 0, 0, 0.54);
        font-size: 0.79rem;
        line-height: 1.55;
}

.consultation-confirmation-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.7rem;
        margin-top: 1.5rem;
}

.consultation-confirmation-cancel,
.consultation-confirmation-proceed {
        min-height: 42px;
        padding: 0.65rem 1.1rem;
        border: 0;
        border-radius: 999px;
        font: inherit;
        font-size: 0.87rem;
        font-weight: 850;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.consultation-confirmation-cancel {
        color: #151515;
        background: #edf2ee;
}

.consultation-confirmation-proceed {
        color: #fff;
        background: linear-gradient(135deg, #55b16e, #3b9854);
        box-shadow: 0 11px 24px rgba(85, 177, 110, 0.25);
}

.consultation-confirmation-cancel:hover,
.consultation-confirmation-cancel:focus-visible,
.consultation-confirmation-proceed:hover,
.consultation-confirmation-proceed:focus-visible {
        transform: translateY(-1px);
}

.consultation-confirmation-proceed:hover,
.consultation-confirmation-proceed:focus-visible {
        box-shadow: 0 14px 30px rgba(85, 177, 110, 0.32);
}

.consultation-confirmation-proceed:disabled {
        opacity: 0.65;
        cursor: wait;
}

body.consultation-confirmation-is-open {
        overflow: hidden;
}
