 :root {
        /* Colors */
        --primary: #112a41;
        --secondary: #9FC131;
        --white: #ffffff;
        --slate-50: #f8fafc;
        --slate-100: #f1f5f9;
        --slate-200: #e2e8f0;
        --slate-300: #cbd5e1;
        --slate-400: #94a3b8;
        --slate-500: #64748b;
        --slate-700: #334155;
        --slate-800: #1e293b;
        --slate-900: #0f172a;
        --slate-950: #020617;

        /* Spacing & Sizing */
        --container-width: 80rem;
        /* 7xl equivalent */
        --header-height: 5rem;
        --radius-sm: 0.25rem;
        --radius-md: 0.5rem;
        --radius-lg: 0.75rem;
        --radius-xl: 1rem;
        --radius-2xl: 1.5rem;
        --radius-full: 9999px;

        /* Base settings */
        --font-family: 'Manrope', sans-serif;
        --transition: 0.3s ease;
    }

    /* Reset & Base */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font-family);
        color: var(--slate-900);
        background-color: var(--white);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        overflow: visible !important;
    }

    html {
        overflow-x: hidden;
        overflow-y: auto;
    }

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

    button,
    input,
    select {
        font-family: inherit;
        border: none;
        outline: none;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    /* Utilities */
    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 1.5rem;
        width: 100%;
    }

    .flex {
        display: flex;
    }

    .flex-col {
        flex-direction: column;
    }

    .items-center {
        align-items: center;
    }

    .justify-between {
        justify-content: space-between;
    }

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

    .gap-2 {
        gap: 0.5rem;
    }

    .gap-3 {
        gap: 0.75rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    .gap-6 {
        gap: 1.5rem;
    }

    .gap-8 {
        gap: 2rem;
    }

    .gap-12 {
        gap: 3rem;
    }

    .grid {
        display: grid;
    }

    .hidden {
        display: none;
    }

    @media (min-width: 768px) {
        .md-flex {
            display: flex;
        }

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

        .md-grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .md-grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .md-grid-cols-5 {
            grid-template-columns: repeat(5, 1fr);
        }

        .md-w-half {
            width: 50%;
        }
    }

    @media (min-width: 1024px) {
        .lg-grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .lg-grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .section-py {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .text-center {
        text-align: center;
    }

    .font-bold {
        font-weight: 700;
    }

    .font-extrabold {
        font-weight: 800;
    }

    .material-symbols-outlined {
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        display: inline-block;
        vertical-align: middle;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--slate-200);
        height: var(--header-height);
    }

    header nav {
        height: 100%;
    }

    .logo-box {
        width: 2.5rem;
        height: 2.5rem;
        background-color: var(--primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .logo-text {
        color: var(--primary);
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -0.025em;
    }

    .nav-link {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .nav-link:hover {
        color: var(--secondary);
    }

    .btn-header {
        display: inline-block;
        background-color: var(--secondary);
        color: var(--primary);
        padding: 0.625rem 1.5rem;
        border-radius: var(--radius-md);
        font-size: 0.875rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 15px -3px rgba(159, 193, 49, 0.2);
        transition: filter var(--transition);
    }

    .btn-header:hover {
        filter: brightness(1.1);
    }

    .hero {
        padding-top: calc(var(--header-height));
        padding-bottom: 4rem;
        background-color: var(--primary);
        color: var(--white);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('http://lugotech.pt/wp-content/uploads/2026/01/blurred-open-office-background.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: -1;
        pointer-events: none;
    }

    .hero-bg-accent {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background-color: var(--secondary);
        border-radius: 50%;
        filter: blur(100px);
        transform: translate(30%, -30%);
        opacity: 0.1;
        pointer-events: none;
        max-width: 100vw;
    }

    @media (min-width: 768px) {
        .hero-bg-accent {
            width: 500px;
            height: 500px;
            filter: blur(120px);
            transform: translate(50%, -50%);
        }
    }

    .hero-badge {
        display: inline-block;
        padding: 0.375rem 1rem;
        background-color: rgba(159, 193, 49, 0.1);
        border: 1px solid rgba(159, 193, 49, 0.2);
        color: var(--secondary);
        border-radius: var(--radius-full);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 2rem;
        letter-spacing: -0.025em;
    }

    @media (min-width: 768px) {
        .hero h1 {
            font-size: 3.75rem;
        }
    }

    .hero h1 span {
        color: var(--secondary);
    }

    .hero p {
        color: var(--slate-300);
        font-size: 1.125rem;
        margin-bottom: 1rem;
        max-width: 36rem;
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        display: inline-block;
        background-color: var(--secondary);
        color: var(--primary);
        padding: 1rem 2rem;
        border-radius: var(--radius-xl);
        font-size: 1.125rem;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 20px 25px -5px rgba(159, 193, 49, 0.2);
        transition: transform var(--transition);
    }

    .btn-primary:hover {
        transform: scale(1.05);
    }

    .btn-outline {
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: var(--radius-xl);
        font-size: 1.125rem;
        font-weight: 700;
        background: transparent;
        cursor: pointer;
        transition: background-color var(--transition);
    }

    .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    /* Hero Image Area */
    .hero-img-container {
        padding: 0 3rem;
        margin-bottom: -1.5rem;
        position: relative;
        scale: 1.27;
    }

    /* .hero-card-bg {
            aspect-ratio: 1/1;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2.5rem;
             40px
            padding: .5em;
            position: relative;
        } */

    .hero-img {
        width: 100%;
        height: 100%;
        border-radius: 1.875rem;
        /* 30px */
        background-size: cover;
        background-position: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .hero-float-card {
        /* Positioning (kept from original) */
        position: absolute;
        bottom: -1.5rem;
        left: -1.5rem;
        z-index: 20;

        /* User requested styles */
        width: 200px;
        height: 200px;
        background: rgba(59, 113, 151, 0.6);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow:
            0 2px 5px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1),
            inset 0 0 28px 14px rgba(255, 255, 255, 0.3);
        overflow: hidden;

        /* Interior Layout */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

    }

    @media (max-width: 768px) {
        .hero-float-card {
            left: 50% !important;
            bottom: -2rem !important;
            transform: translateX(-50%) !important;
            margin-left: 0 !important;
        }
    }

    .hero-float-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.8),
                transparent);
    }

    .hero-float-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.8),
                transparent,
                rgba(255, 255, 255, 0.3));
    }

    /* Adjust text colors for better contrast on glass */
    .hero-float-card .icon {
        font-size: 3rem;
        color: var(--secondary);
        margin-bottom: 0.25rem;
    }

    .hero-float-card .num {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--white);
        line-height: 1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero-float-card .label {
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--white);
        letter-spacing: 0.05em;
    }

    /* Pain Points */
    .pain-points {
        background-color: var(--white);
    }

    .section-header h2 {
        font-size: 1.75rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    @media (min-width: 768px) {
        .section-header h2 {
            font-size: 2.25rem;
        }
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--slate-500);
    }

    .pain-card {
        padding: 3rem 2rem 2rem;
        /* Added top padding for icon space */
        border-radius: 1.5rem;
        /* More rounded */
        background-color: var(--white);
        border: 1px solid var(--slate-100);
        text-align: center;
        /* Centered text */
        position: relative;
        margin-top: 3rem;
        /* Space for the floating icon */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        transition: transform var(--transition);
    }

    .pain-card:hover {
        transform: translateY(-5px);
    }

    .pain-card-icon {
        position: absolute;
        top: -3rem;
        /* Adjusted for larger box */
        left: 50%;
        transform: translateX(-50%);
        width: 75px;
        /* Fixed square box */
        height: 75px;
        /* Fixed square box */
        object-fit: contain;
        /* Ensures harmonic sizing */
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    }

    .pain-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--primary);
        /* More contrast */
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .pain-card p {
        font-size: 1rem;
        color: var(--slate-500);
        line-height: 1.5;
    }

    /* Features */
    .features {
        background-color: #ebecf0;
    }

    .feature-icon-box {
        width: 3rem;
        height: 3rem;
        background-color: var(--primary);
        color: var(--secondary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .feature-h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .feature-p {
        color: var(--slate-500);
        font-size: 0.875rem;
        line-height: 1.6;
    }

    @media (min-width: 768px) {
        .features .grid>div {
            position: relative;
        }

        .features .grid>div::after {
            content: '';
            position: absolute;
            top: 10%;
            height: 80%;
            right: -1rem;
            width: 1px;
            background-color: #e5ff8e;
            display: block;
        }

        /* Tablet (2 cols): Hide on 2nd and 4th items */
        .features .grid>div:nth-child(even)::after {
            display: none;
        }
    }

    @media (min-width: 1024px) {

        /* Desktop (4 cols): Show on even items too (except last) */
        .features .grid>div:nth-child(even)::after {
            display: block;
        }

        .features .grid>div:last-child::after {
            display: none;
        }
    }

    /* Partners */
    .partners {
        background-color: var(--primary);
        color: var(--white);
        overflow: hidden;
        position: relative;
    }

    .partners h2 {
        font-size: 2.25rem;
        font-weight: 800;
        margin-bottom: 2rem;
    }

    .partners-desc {
        color: var(--slate-300);
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .benefit-item {
        display: flex;
        gap: 1rem;
    }

    .benefit-item span {
        color: var(--secondary);
        font-size: 1.875rem;
    }

    .benefit-item h4 {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 0.25rem;

    }

    .benefit-item p {
        color: var(--slate-400);
        font-size: 0.875rem;
    }

    /* Modals */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
        display: flex;
        opacity: 1;
    }

    .modal-content {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 1.5rem;
        max-width: 800px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }

    .modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--slate-400);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-close:hover {
        color: var(--primary);
    }

    .modal-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    .modal-text {
        color: var(--slate-500);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .modal-text p {
        margin-bottom: 1rem;
    }

    .testimonial-glass {
        background: rgba(255, 255, 255, 0.05);
        padding: 0.25rem;
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .glass-card {
        background: rgba(17, 42, 65, 0.5);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 1.375rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .guarantee {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .guarantee-icon {
        width: 3rem;
        height: 3rem;
        background: rgba(159, 193, 49, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
    }

    .guarantee-text p:first-child {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--secondary);
    }

    .guarantee-text p:last-child {
        font-size: 1.25rem;
        font-weight: 700;
    }

    blockquote {
        font-size: 1.25rem;
        font-weight: 500;
        font-style: italic;
        color: var(--slate-300);
        margin-bottom: 2rem;
        border: none;
        padding: 0;
    }

    .client-profile {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .client-img {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background-color: var(--slate-700);
    }

    .client-info p:first-child {
        font-weight: 700;
    }

    .client-info p:last-child {
        font-size: 0.875rem;
        color: var(--slate-400);
    }

    /* Stats */
    .stats-section {
        background-color: var(--white);
    }

    .stat-card {
        padding: 2.5rem;
        border-radius: 1.5rem;
        background-color: var(--slate-50);
        border: 1px solid #e5ff8e;
        text-align: center;
    }

    #benefits {
        padding-top: 0px;
    }

    .stat-val {
        color: var(--secondary);
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 1rem;
        line-height: 1;
    }

    .stat-label {
        color: var(--primary);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .stat-desc {
        color: var(--slate-500);
        font-size: 0.875rem;
    }

    /* Audience */
    .audience {
        padding: 5rem 0;
        border-top: 1px solid var(--slate-100);
        border-bottom: 1px solid var(--slate-100);
    }

    .audience-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    /* .audience-list:hover {
        opacity: 1;
        filter: grayscale(0);
    } */

    .audience-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background-color: rgba(159, 193, 49, 0.1);
        border: 2px solid var(--secondary);
        padding: 1rem 1.5rem;
        border-radius: var(--radius-lg);
        transition: transform var(--transition);
    }

    .audience-item:hover {
        transform: translateY(-5px);
    }

    .audience-item span:first-child {
        font-size: 1.875rem;
    }

    .audience-item span:last-child {
        font-size: 1.25rem;
        font-weight: 700;
    }

    /* Conversion */
    .conversion {
        background-color: var(--slate-50);
    }

    .conversion-box {
        background-color: var(--white);
        border-radius: 2rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        border: 1px solid var(--slate-200);
        display: flex;
        flex-direction: column;
    }

    @media (min-width: 768px) {
        .conversion-box {
            flex-direction: row;
        }
    }

    .conv-left {
        background-color: var(--primary);
        padding: 3rem;
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .conv-left h2 {
        font-size: 2.25rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .conv-left p {
        color: var(--slate-300);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .checklist li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .checklist span {
        color: var(--secondary);
    }

    .conv-right {
        padding: 3rem;
        background-color: var(--white);
    }

    .form-grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
        .form-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .col-span-2 {
            grid-column: span 2;
        }
    }

    .form-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--slate-500);
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .form-input,
    .form-select {
        width: 100%;
        background-color: var(--slate-50);
        border: 1px solid var(--slate-200);
        border-radius: var(--radius-lg);
        padding: 0.75rem 1rem;
        transition: all var(--transition);
    }

    .form-input:focus,
    .form-select:focus {
        outline: 2px solid var(--secondary);
        border-color: var(--secondary);
    }

    .btn-submit {
        width: 100%;
        padding: 1rem;
        background-color: var(--secondary);
        color: var(--primary);
        font-weight: 900;
        font-size: 1.125rem;
        border-radius: var(--radius-xl);
        margin-top: 1.5rem;
        cursor: pointer;
        box-shadow: 0 10px 15px -3px rgba(159, 193, 49, 0.3);
        transition: all var(--transition);
    }

    .btn-submit:hover {
        filter: brightness(1.1);
    }

    .btn-submit:active {
        transform: scale(0.95);
    }

    /* FAQ */
    .faq {
        background-color: var(--white);
    }

    .faq h2 {
        font-size: 1.875rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 4rem;
    }

    .faq-item {
        border: 1px solid var(--slate-100);
        border-radius: 1rem;
        background-color: rgba(248, 250, 252, 0.5);
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .faq-summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        cursor: pointer;
        list-style: none;
        width: 100%;
        box-sizing: border-box;
    }

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

    .faq-summary span:first-child {
        font-weight: 700;
        font-size: 1.125rem;
    }

    .faq-details {
        padding: 0 1.5rem 1.5rem;
        color: var(--slate-500);
        line-height: 1.6;
    }

    details[open] .material-symbols-outlined {
        transform: rotate(180deg);
    }

    /* Footer */
    footer {
        background-color: var(--primary);
        color: var(--slate-400);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 4rem 0;
    }

    .footer-logo {
        display: flex;
        width: 12em;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo-box {
        width: 2rem;
        height: 2rem;
        background-color: var(--secondary);
        border-radius: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
    }

    .footer-logo-text {
        color: var(--white);
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -0.025em;
    }

    .footer-desc {
        max-width: 20rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .footer-heading {
        color: var(--white);
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-links li {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }

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

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .social-links {
        display: flex;
        gap: 1.5rem;
    }

    .social-links a:hover {
        color: var(--white);
    }
