@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&display=swap');

:root{

    --color-bg: #fafaf7;
    --color-surface: #ffffff;
    --color-surface-2: rgba(255, 255, 255, 0.7);

    --color-text: #141414;
    --color-muted: rgba(20, 20, 20, 0.68);
    --color-border: rgba(20, 20, 20, 0.1);

    --color-accent: #16a34a;
    --color-accent-strong: #15803d;
    --color-accent-soft: rgba(22, 163, 74, 0.12);

    --shadow-soft: 0 18px 40px rgba(20, 20, 20, 0.06);
    --shadow-mid: 0 16px 30px rgba(20, 20, 20, 0.12);

    --font-heading: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: "Source Serif 4", ui-serif, Georgia, "Times New Roman", serif;

    --topbar-height: 38px;
}

html {
    scroll-behavior: smooth;
}

body{
    background: var(--color-bg) !important;
    color: var(--color-text);
    font-family: var(--font-body);
    text-rendering: geometricPrecision;
}

h1, h2, h3, h4, h5, h6,
.font-heading,
.header-nav,
.header-cta,
.btn{
    font-family: var(--font-heading);
    letter-spacing: -0.015em;
}

p{
    color: var(--color-muted);
}

section[id]{
    scroll-margin-top: 96px;
}

header{
    /* background-color: #fff;
    color: #000; */
}

.site-header{
    position: sticky !important;
    top: var(--topbar-height);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    height: auto !important;
    z-index: 50;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(20, 20, 20, 0.03);
    pointer-events: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled::before{
    background: var(--color-surface-2);
    border-bottom-color: rgba(20, 20, 20, 0.08);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled{
    box-shadow: 0 10px 26px rgba(20, 20, 20, 0.06);
}

.topbar{
    position: sticky;
    top: 0;
    z-index: 60;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(20, 20, 20, 0.06);
    backdrop-filter: blur(14px);
}

.topbar-inner{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(20, 20, 20, 0.72);
}

.topbar-left,
.topbar-right{
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.topbar-item{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.topbar-item i{
    color: rgba(20, 20, 20, 0.6);
}

.topbar-link{
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-link:hover{
    color: var(--color-accent-strong);
}

.whatsapp-float{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(20, 20, 20, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(20, 20, 20, 0.22);
}

.whatsapp-float i{
    font-size: 26px;
    line-height: 1;
}

@media not all and (min-width: 768px) {
    .whatsapp-float{
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

.topbar-flags{
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.topbar-flag{
    width: 18px;
    height: 12px;
    border-radius: 3px;
    object-fit: cover;
    border: 1px solid rgba(20, 20, 20, 0.08);
}

@media not all and (min-width: 768px) {
    :root{
        --topbar-height: 44px;
    }

    .topbar{
        padding: 0 1rem;
    }

    .topbar-inner{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.35rem;
        font-size: 0.82rem;
    }

    .topbar-right{
        justify-content: center;
        flex-wrap: wrap;
    }
}

.header-brand{
    align-self: center;
}

.header-brand-logo{
    width: clamp(34px, 4vw, 48px);
    height: clamp(34px, 4vw, 48px);
}

.header-brand-text{
    font-size: clamp(0.95rem, 1.1vw, 1.25rem);
    line-height: 1;
}

header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}

.header-nav{
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 20, 20, 0.08);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.06);
    backdrop-filter: blur(14px);
}

.header-cta .btn{
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.header-cta .btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(20, 20, 20, 0.12);
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    color: rgba(20, 20, 20, 0.78);
    background-color: transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}


.header-links:hover {
    color: var(--color-text);
    background-color: var(--color-accent-soft);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.14);
}

.material-icons.md-40 { 
    font-size: 40px; 
}

.primary-text-color{
    color: var(--color-text);
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 25px;
    color: #ffffff;
    background-color: var(--color-accent);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(22, 163, 74, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover{
    transform: translateY(-2px);
    background-color: var(--color-accent-strong);
    box-shadow: 0 18px 32px rgba(22, 163, 74, 0.22);
}

.btn:disabled{
    cursor: default;
}

.btn-secondary{
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
    border: 1px solid rgba(20, 20, 20, 0.12);
    box-shadow: 0 10px 22px rgba(20, 20, 20, 0.06);
}

.btn-secondary:hover{
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(20, 20, 20, 0.08);
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 25px;
    /* outline: none; */
    min-width: 100px;
    border: 1.5px solid rgba(20, 20, 20, 0.18);
    transition: border 0.3s;
}

.input:active, .input:focus, .input:focus-within{
    border: 1.5px solid var(--color-accent);
}

.input-error{
    border-bottom: 3px solid #ff1e1e;
}

.input-error:focus-within{
    border-bottom: 3px solid #fd0101;
}


/* Navigation dots styling */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.newsletter-card{
    max-width: 720px;
    padding: 1.2rem;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, #ffffff 55%, rgba(22, 163, 74, 0.05) 100%);
    box-shadow: var(--shadow-soft);
}

.newsletter-title{
    font-weight: 600;
}

.newsletter-form{
    width: 100%;
}

.newsletter-pill{
    width: 100%;
    max-width: 520px;
    padding: 0.4rem;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.newsletter-input{
    border: none;
    border-radius: 999px;
    background-color: transparent;
    box-shadow: none;
}

.newsletter-input:active, .newsletter-input:focus, .newsletter-input:focus-within{
    border: none;
    box-shadow: none;
}

.newsletter-btn{
    min-width: 120px;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(22, 163, 74, 0.35);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.newsletter-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(22, 163, 74, 0.22);
}

.newsletter-status{
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.92rem;
    color: #5a5a5a;
    text-align: center;
}

.newsletter-status.is-success{
    color: #2d6d00;
}

.newsletter-status.is-error{
    color: #b42318;
}

.footer-shell{
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
}

.footer-card{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(170px, 0.85fr) minmax(170px, 0.85fr);
    align-items: start;
    justify-content: space-between;
    column-gap: 2rem;
    row-gap: 1.25rem;
    padding: 1.25rem 1.5rem 1rem;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, #ffffff 55%, rgba(22, 163, 74, 0.05) 100%);
    box-shadow: var(--shadow-soft);
}

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 340px;
}

.footer-logo{
    display: inline-flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: fit-content;
}

.footer-logo img{
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
}

.footer-brand-text{
    padding-top: 0.15rem;
}

.footer-eyebrow{
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5c5c5c;
}

.footer-brand-copy{
    margin-top: 0.2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.4;
    color: rgba(20, 20, 20, 0.78);
}

.footer-address{
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4b4b4b;
}

.footer-socials{
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    background-color: #ffffff;
    color: #111111;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-link:hover{
    transform: translateY(-3px);
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 12px 20px rgba(22, 163, 74, 0.22);
}

.footer-nav-group{
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-title{
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-links{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
}

.footer-link{
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    color: #3f3f3f;
    background-color: transparent;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.footer-link:hover{
    color: var(--color-text);
    background-color: var(--color-accent-soft);
    transform: translateX(4px);
}

.footer-bottom{
    width: 100%;
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(20, 20, 20, 0.08);
    font-size: 0.82rem;
    color: #666666;
}

.section-shell{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.section-kicker{
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(20, 20, 20, 0.55);
}

.section-title{
    font-family: var(--font-heading);
    font-weight: 650;
    letter-spacing: -0.03em;
}

.card{
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(20, 20, 20, 0.06);
    backdrop-filter: blur(10px);
}

.blob-muted{
    background: rgba(22, 163, 74, 0.12);
}

.blob-accent{
    background: rgba(22, 163, 74, 0.2);
}

.feature-card{
    padding: 1.25rem 1.15rem;
}

.feature-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    color: var(--color-accent-strong);
}

.feature-icon svg{
    width: 22px;
    height: 22px;
}

.feature-title{
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.feature-copy{
    margin-top: 0.35rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-muted);
}

.testimonial-card{
    padding: 1.25rem;
}

.testimonial-quote{
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(20, 20, 20, 0.78);
}

.testimonial-person{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(20, 20, 20, 0.12);
}

.testimonial-meta{
    display: flex;
    flex-direction: column;
}

.testimonial-name{
    font-family: var(--font-heading);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.testimonial-role{
    font-size: 0.92rem;
    color: rgba(20, 20, 20, 0.62);
}

.swiper{
    padding: 6px !important;
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    opacity: 1;
    background: rgba(20, 20, 20, 0.12);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.swiper-pagination-bullet:hover{
    background: rgba(20, 20, 20, 0.18);
    transform: translateY(-1px);
}

.swiper-pagination-bullet-active{
    background: var(--color-accent) !important;
}


.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: #f3f0f0;
    color: #2b2929;
    /* cursor: pointer; */
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

.collapsible .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: var(--color-bg);
        color: #000000;
        overflow-y: auto;
        box-shadow: -12px 0 28px rgba(20, 20, 20, 0.18);
    }

    .header-nav{
        width: 100%;
        align-items: stretch;
        gap: 0.7rem;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .header-links{
        color: black;
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        background-color: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(20, 20, 20, 0.06);
    }

    .header-cta{
        width: 100%;
        justify-content: center;
    }

    .header-cta .btn{
        width: 100%;
        max-width: 220px;
    }

    .header-brand{
        gap: 0.65rem;
    }

    .header-brand-logo{
        width: clamp(30px, 7vw, 40px);
        height: clamp(30px, 7vw, 40px);
    }

    .header-brand-text{
        font-size: clamp(0.9rem, 3vw, 1.05rem);
    }
    
}

@media not all and (min-width: 768px) {
    .newsletter-card{
        padding: 1rem;
        border-radius: 24px;
    }

    .newsletter-pill{
        height: auto;
        flex-direction: column;
        border-radius: 24px;
    }

    .newsletter-btn{
        width: 100%;
    }

    .footer-shell{
        padding-top: 1rem;
        padding-bottom: 1.25rem;
    }

    .footer-card{
        grid-template-columns: 1fr;
        padding: 1rem;
        border-radius: 20px;
        row-gap: 1rem;
    }

    .footer-brand{
        max-width: 100%;
    }

    .footer-bottom{
        flex-direction: column;
    }
}

.policy-card{
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(18px, 3vw, 28px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 13, 13, 0.08);
    box-shadow: 0 18px 40px rgba(13, 13, 13, 0.06);
}

.policy-card h1,
.policy-card h2,
.policy-card h3{
    letter-spacing: -0.01em;
}

.policy-card p,
.policy-card div{
    line-height: 1.7;
}

.faq-list{
    display: grid;
    gap: 0.75rem;
}

.faq-item{
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 14px;
    background: rgba(237, 236, 236, 0.5);
    overflow: hidden;
}

.faq-question{
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1rem;
    color: #0d0d0d;
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

.faq-item summary{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.faq-item summary::after{
    content: "+";
    font-size: 1.15rem;
    line-height: 1;
    opacity: 0.65;
}

.faq-item[open] summary::after{
    content: "–";
    opacity: 0.8;
}

.faq-answer{
    padding: 0 1rem 1rem;
    color: rgba(13, 13, 13, 0.72);
}
