/*=====================================
            FONTS (self-hosted)
=====================================*/

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/inter-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('fonts/inter-800.woff2') format('woff2');
}


/*=====================================
            VARIABLES
=====================================*/

:root {
    --primary: #00A86B;
    --primary-dark: #008b59;
    --primary-light: #1cc98a;

    --secondary: #111111;

    --background: #050505;
    --surface: #101010;
    --surface-light: #181818;

    --white: #FFFFFF;
    --text: #EAEAEA;
    --text-light: #B8B8B8;

    --border: rgba(255, 255, 255, .08);

    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .15);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, .25);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .45);

    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;

    --transition: .3s ease;
    --transition-fast: .2s ease;
    --transition-slow: .6s ease;

    --container: 1280px;
    --section-padding: 120px;
}


/*=====================================
                RESET
=====================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

section {
    padding: var(--section-padding) 0;
    scroll-margin-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
}


/*=====================================
            SCROLLBAR
=====================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/*=====================================
            SELECTION
=====================================*/

::selection {
    background: var(--primary);
    color: #fff;
}


/*=====================================
            SECTION HEADER
=====================================*/

.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header span {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header p {
    margin-top: 20px;
}


/*=====================================
                BUTTONS
=====================================*/

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 600;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}


/*=====================================
            SKIP LINK
=====================================*/

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 99999;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
}

/*=====================================
                HEADER
=====================================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);

    transition: background .3s ease, box-shadow .3s ease;
}

.header.scrolled {
    background: rgba(5, 5, 5, .96);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .25);
}


/* CONTENIDO DEL NAV */

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    min-height: 70px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 105px;
    height: auto;
    transition: .3s ease;
}

.logo:hover img {
    transform: scale(1.04);
}


/* NAV */

.navbar {
    margin-left: auto;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar a {
    position: relative;
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
}

.navbar a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: .3s ease;
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    flex-shrink: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/*=====================================
                HERO
=====================================*/

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(0, 168, 107, .18),
            transparent 45%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin: 14px 0 18px;
}

.hero-content p {
    max-width: 620px;
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(0, 168, 107, .35);
    border-radius: 999px;
    background: rgba(0, 168, 107, .08);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 18px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 168, 107, .15);
    filter: blur(80px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    width: 100%;
    max-width: 620px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    transition: transform .6s ease;
}

.hero-image:hover img {
    transform: translateY(-8px) scale(1.02);
}

.hero-content {
    animation: fadeLeft .9s ease forwards;
}

.hero-image {
    animation: fadeRight .9s ease forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/*=====================================
            CALCULATOR
=====================================*/

.calculator-box {
    max-width: 780px;
    margin-inline: auto;
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    background: var(--surface-light);
    border: 1px solid var(--border);
    text-align: center;
}

.calculator-inputs {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.calc-field label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: .95rem;
}

.calc-value {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 168, 107, .12);
    color: var(--primary-light);
    font-weight: 800;
    font-size: .85rem;
}

.calc-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: var(--border);
    outline: none;
    cursor: pointer;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: var(--transition);
}

.calc-field input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-field input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    cursor: pointer;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 26px;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-result-number {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
}

.calc-result-highlight .calc-result-number {
    color: var(--primary-light);
}

.calc-result-label {
    color: var(--text-light);
    font-size: .8rem;
}

.calc-note {
    margin-bottom: 26px;
    color: var(--text-light);
    font-size: 1rem;
}

.calc-note strong {
    color: var(--primary-light);
}

.calc-cta {
    margin-bottom: 18px;
}

.calc-disclaimer {
    color: #777;
    font-size: .78rem;
}


/*=====================================
                CHAT DEMO
=====================================*/

.chat-demo-box {
    max-width: 480px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    background: var(--surface-light);
    border: 1px solid var(--border);
    overflow: hidden;
}

.chat-demo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.chat-demo-header img {
    border-radius: 50%;
}

.chat-demo-header strong {
    display: block;
    font-size: .95rem;
}

.chat-demo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: .8rem;
}

.chat-demo-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.chat-demo-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 340px;
    padding: 24px 22px;
}

.chat-msg {
    max-width: 82%;
    padding: 11px 16px;
    border-radius: 16px;
    font-size: .9rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.chat-msg.chat-visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-msg a {
    color: inherit;
    text-decoration: underline;
}

.chat-msg-in {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    background: var(--border);
    color: var(--text);
}

.chat-msg-out {
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    background: var(--primary);
    color: #fff;
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: flex-end;
    padding: 13px 16px;
    border-bottom-right-radius: 4px;
    border-radius: 16px;
    background: var(--primary);
    opacity: 0;
    transition: opacity .25s ease;
}

.chat-typing.chat-visible {
    opacity: 1;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: chatTypingBounce 1.1s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
    animation-delay: .15s;
}

.chat-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes chatTypingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: .6;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}


/*=====================================
            PAIN SELECTOR
=====================================*/

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 760px;
    margin-inline: auto;
}

.pain-btn {
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-light);
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    cursor: pointer;
    transition: var(--transition);
}

.pain-btn:hover {
    border-color: rgba(0, 168, 107, .4);
    transform: translateY(-3px);
}

.pain-btn.active {
    border-color: var(--primary);
    background: rgba(0, 168, 107, .1);
}

.pain-answer {
    max-width: 620px;
    margin: 30px auto 0;
    padding: 30px 34px;
    border-radius: var(--radius-lg);
    background: var(--surface-light);
    border: 1px solid rgba(0, 168, 107, .35);
    text-align: center;
    animation: fadeUpIn .4s ease;
}

.pain-answer[hidden] {
    display: none;
}

.pain-answer p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card.plan-pulse {
    animation: planPulse 1.4s ease-in-out 2;
}

@keyframes planPulse {

    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 168, 107, .3);
    }
}


/*=====================================
                SERVICES
=====================================*/

.services {
    position: relative;
    background: var(--surface);
    padding-top: 60px;
}

.services .section-header {
    margin-bottom: 36px;
}


/*=====================================
                PLANS
=====================================*/

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-light);
    overflow: hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 107, .35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.plan-featured {
    color: #fff;
    background: linear-gradient(145deg, #111511 0%, #090b09 100%);
    border-color: rgba(0, 168, 107, .35);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.plan-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 80px rgba(0, 168, 107, .12);
}

.popular-badge {
    position: absolute;
    top: 23px;
    right: 23px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--primary);
    color: #06110c;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-top {
    display: flex;
    align-items: center;
    min-height: 20px;
    margin-bottom: 20px;
}

.plan-number {
    color: var(--text-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.plan-featured .plan-number {
    color: var(--primary);
}

.plan-content {
    flex: 1;
}

.plan-card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 1.8vw, 1.9rem);
    line-height: 1;
    letter-spacing: -1px;
}

.plan-description {
    max-width: 470px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.55;
}

.plan-featured .plan-description {
    color: rgba(255, 255, 255, .65);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 7px;
}

.plan-price strong {
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -2px;
}

.plan-price span {
    color: var(--text-light);
    font-size: .9rem;
}

.plan-featured .plan-price span {
    color: rgba(255, 255, 255, .55);
}

.plan-installation {
    margin: 0;
    color: var(--text-light);
    font-size: .8rem;
}

.plan-featured .plan-installation {
    color: rgba(255, 255, 255, .55);
}

.plan-divider {
    width: 100%;
    height: 1px;
    margin: 18px 0 16px;
    background: var(--border);
}

.plan-featured .plan-divider {
    background: rgba(255, 255, 255, .12);
}

.plan-includes {
    margin-bottom: 12px;
    color: var(--text);
    font-size: .85rem;
    font-weight: 700;
}

.plan-featured .plan-includes {
    color: #fff;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: .84rem;
    line-height: 1.35;
}

.plan-features li span {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(0, 168, 107, .12);
    color: var(--primary);
    font-size: .65rem;
    font-weight: 800;
}

.plan-featured .plan-features li {
    color: rgba(255, 255, 255, .72);
}

.plan-featured .plan-features li span {
    background: rgba(0, 168, 107, .2);
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 22px;
    padding: 12px 20px;
    border-radius: 50px;
    background: #101010;
    color: #fff;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #06110c;
    box-shadow: 0 10px 30px rgba(0, 168, 107, .18);
}

.plan-featured .plan-button {
    background: var(--primary);
    color: #06110c;
}

.plan-featured .plan-button:hover {
    background: #18bd80;
    box-shadow: 0 10px 30px rgba(0, 168, 107, .25);
}

.plan-button span {
    font-size: 1rem;
}

.plan-footer {
    margin: 15px 0 0;
    color: #888;
    font-size: .68rem;
    text-align: center;
}

.plan-featured .plan-footer {
    color: rgba(255, 255, 255, .38);
}


/*=====================================
        SOLUCIÓN PERSONALIZADA
=====================================*/

.custom-plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 25px;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface-light);
}

.custom-content {
    flex: 1;
}

.custom-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.custom-plan h3 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    letter-spacing: -.7px;
}

.custom-plan p {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--text-light);
    line-height: 1.6;
}

.custom-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.custom-features span {
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: .72rem;
}

.custom-action {
    flex-shrink: 0;
    min-width: 200px;
    text-align: center;
}

.custom-action>span {
    display: block;
    margin-bottom: 14px;
    max-width: 220px;
    color: var(--text);
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.4;
}

.custom-action strong {
    display: block;
    margin-bottom: 18px;
    font-size: 2.4rem;
    line-height: 1;
}

.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 50px;
    background: #101010;
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease;
}

.custom-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #06110c;
}


/*=====================================
                BENEFITS
=====================================*/

.benefits {
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefits-grid article {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.benefits-grid article:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 107, .35);
}

.benefits-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 168, 107, .08),
            transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.benefits-grid article:hover::before {
    opacity: 1;
}

.benefits-grid h3 {
    margin-bottom: 18px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 107, .35);
}

.founder-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: #06110c;
    font-weight: 700;
    font-size: 1.1rem;
}

.founder-card h3 {
    margin-bottom: 4px;
}

.founder-card span {
    color: var(--primary-light);
    font-size: .9rem;
    font-weight: 600;
}

.subsection-label {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/*=====================================
                PROCESS
=====================================*/

.process {
    background: var(--surface);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-grid article {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--background);
    border: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.process-grid article:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 107, .35);
}

.process-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: .88rem;
}

.process-link:hover {
    color: var(--primary);
}

.process-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 168, 107, .08),
            transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.process-grid article:hover::before {
    opacity: 1;
}

.process-grid span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-grid h3 {
    margin-bottom: 15px;
}


/*=====================================
                STATS
=====================================*/

.stats {
    background: linear-gradient(180deg,
            var(--background),
            var(--surface));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    position: relative;
    padding: 50px 35px;
    border-radius: var(--radius-lg);
    background: var(--surface-light);
    border: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 168, 107, .35);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 168, 107, .08),
            transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-card h3 {
    margin-bottom: 12px;
}


/*=====================================
                CTA
=====================================*/

.cta {
    position: relative;
    background: linear-gradient(135deg,
            #00A86B,
            #008B59);
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(255, 255, 255, .12),
            transparent 45%);
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta h2 {
    color: #fff;
    max-width: 900px;
    margin: 0 auto 25px;
}

.cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: #f3f3f3;
    color: var(--primary-dark);
}


/*=====================================
                FAQ
=====================================*/

.faq {
    background: var(--background);
}

.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq details:hover {
    border-color: rgba(0, 168, 107, .35);
}

.faq details[open] {
    border-color: var(--primary);
}

.faq summary {
    cursor: pointer;
    padding: 28px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    list-style: none;
    position: relative;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq details p {
    padding: 0 30px 30px;
}

.faq-more {
    margin-top: 30px;
    text-align: center;
    color: var(--text-light);
    font-size: .95rem;
}

.faq-bot-trigger {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: .95rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-bot-trigger:hover {
    color: var(--primary);
}


/*=====================================
                CONTACT
=====================================*/

.contact {
    background: var(--surface);
}

.contact-form {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 850px;
    margin: 30px auto;
    color: var(--text-light);
    font-size: .9rem;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.whatsapp-btn {
    max-width: 850px;
    margin-inline: auto;
    width: fit-content;
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    padding: 18px 22px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 168, 107, .15);
}

.contact-form button {
    justify-self: start;
}

.error {
    border-color: #e74c3c !important;
}


/*=====================================
                FOOTER
=====================================*/

.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 90px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 25px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer a {
    color: var(--text-light);
}

.footer a:hover {
    color: var(--primary);
}

.footer address {
    font-style: normal;
    color: var(--text-light);
}

.footer hr {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-right: 70px;
}

.footer-bottom p {
    color: #888;
}

.footer-bottom .footer-legal {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
    font-size: .9rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}


/*=====================================
            LEGAL PAGES
=====================================*/

.legal-hero {
    padding-top: 70px;
    padding-bottom: 40px;
}

.legal-updated {
    color: var(--text-light);
    font-size: .9rem;
    margin-top: -10px;
}

.legal-content {
    max-width: 820px;
    margin-inline: auto;
    padding-bottom: var(--section-padding);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 46px;
    margin-bottom: 14px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--white);
}


/*=====================================
            404 PAGE
=====================================*/

.error-404 {
    min-height: calc(100vh - 66px);
    display: flex;
    align-items: center;
}

.error-404 .container {
    text-align: center;
    max-width: 640px;
}

.error-code {
    display: block;
    font-size: clamp(6rem, 14vw, 9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.error-404 h1 {
    margin-bottom: 18px;
}

.error-404 p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/*=====================================
            BOOKING / CAL.COM
=====================================*/

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.booking-tab {
    padding: 12px 26px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-light);
    color: var(--text-light);
    font-weight: 600;
    font-size: .92rem;
    transition: var(--transition);
}

.booking-tab:hover {
    border-color: rgba(0, 168, 107, .35);
    color: var(--white);
}

.booking-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.booking-panel[hidden] {
    display: none;
}

.booking-hours {
    text-align: center;
    color: var(--primary-light);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .3px;
    margin-bottom: 24px;
}

.cal-embed-container {
    min-height: 650px;
    max-width: 780px;
    margin-inline: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.booking-alt {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: .9rem;
}

.booking-alt a {
    color: var(--primary-light);
    font-weight: 700;
}

.booking-alt a:hover {
    color: var(--primary);
}


/*=====================================
            GLOBAL ANIMATIONS
=====================================*/

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: none;
}


/*=====================================
                RIPPLE
=====================================*/

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple .6s linear;
    background: rgba(255, 255, 255, .35);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/*=====================================
                TOAST
=====================================*/

.toast {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #111;
    color: #fff;
    padding: 15px 22px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: .3s;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: none;
}


/*=====================================
        FLOATING WHATSAPP BUTTON
=====================================*/

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 168, 107, .4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: var(--primary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 168, 107, .5);
}

.whatsapp-float.pulse-attention {
    animation: pulseAttention 1s ease-in-out 2;
}

.bot-trigger {
    position: fixed;
    right: 25px;
    bottom: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: var(--surface-light);
    color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
    border: 1px solid var(--border);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

.bot-trigger:hover {
    border-color: rgba(0, 168, 107, .5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .5);
}

@keyframes pulseAttention {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(0, 168, 107, .4);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(0, 168, 107, 0);
    }
}


/*=====================================
            COOKIE BANNER
=====================================*/

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: -200px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 780px;
    margin-inline: auto;
    padding: 22px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(16, 16, 16, .97);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    transition: bottom .4s ease;
}

.cookie-banner.visible {
    bottom: 20px;
}

.cookie-banner p {
    flex: 1;
    min-width: 240px;
    color: var(--text-light);
    font-size: .88rem;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 10px 20px;
    font-size: .85rem;
    min-height: auto;
}

.footer-cookie-reopen {
    color: #888;
    font-size: .9rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.footer-cookie-reopen:hover {
    color: var(--primary-light);
}


/*=====================================
                RESPONSIVE
=====================================*/

@media (max-width:1100px) {

    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        text-align: center;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .plan-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
}


@media (max-width:900px) {

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card,
    .plan-card:last-child {
        grid-column: auto;
        max-width: none;
        min-height: auto;
        padding: 30px 25px 25px;
    }

    .custom-plan {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-action {
        width: 100%;
        min-width: 0;
    }

    .custom-button {
        width: 100%;
    }
}


@media (max-width:768px) {

    :root {
        --section-padding: 80px;
    }

    body {
        padding-top: 65px;
    }

    .header .container {
        min-height: 65px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        z-index: 999;

        max-height: 0;
        overflow: hidden;
        visibility: hidden;

        background: rgba(5, 5, 5, .97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid transparent;

        margin-left: 0;

        transition: max-height .35s ease, border-color .35s ease, visibility 0s linear .35s;
    }

    .navbar.active {
        max-height: 420px;
        visibility: visible;
        border-bottom-color: var(--border);
        transition: max-height .35s ease, border-color .35s ease, visibility 0s linear 0s;
    }

    .navbar ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 25px 20px;
    }

    .navbar a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .navbar a::after {
        display: none;
    }

    .benefits-grid,
    .stats-grid,
    .process-grid,
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 35px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .header-actions .btn {
        width: auto;
        padding: 10px 18px;
        font-size: .82rem;
        white-space: nowrap;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services .section-header {
        margin-bottom: 45px;
    }

    .plan-card h3 {
        font-size: 2rem;
    }

    .plan-description {
        min-height: auto;
        margin-bottom: 28px;
    }

    .plan-price strong {
        font-size: 3.5rem;
    }

    .popular-badge {
        top: 18px;
        right: 18px;
        font-size: .6rem;
        padding: 8px 11px;
    }

    .custom-plan {
        gap: 30px;
        padding: 30px 25px;
    }

    .custom-action {
        width: 100%;
        min-width: 0;
    }

    .custom-button {
        width: 100%;
    }

    .logo img {
        width: 42px;
    }
}


@media (max-width:480px) {

    .plan-card {
        border-radius: 18px;
    }

    .plan-top {
        margin-bottom: 28px;
    }

    .plan-price strong {
        font-size: 3.1rem;
        letter-spacing: -2px;
    }

    .plan-features {
        gap: 11px;
    }

    .plan-features li {
        font-size: .82rem;
    }
}


@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}