:root {
    --eb-bg: #ffffff;
    --eb-accent: #7fbf9b;
    --eb-soft-green: #dcefe6;
    --eb-turquoise: #4f8598;
    --eb-text: #2f2f2f;
    --eb-gray: #6b6b6b;
    --eb-alt-bg: #f7f9fa;
    --eb-radius: 14px;
    --eb-button-radius: 10px;
    --eb-shadow: 0 10px 30px rgba(47, 47, 47, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--eb-text);
    background: var(--eb-bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body.customize-support {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

body:not(.wp-admin) h1,
body:not(.wp-admin) h2,
body:not(.wp-admin) h3,
body:not(.wp-admin) h4 {
    line-height: 1.25;
}

body:not(.wp-admin).eb-google-fonts,
body:not(.wp-admin) .eb-google-fonts {
    font-family: "Open Sans", sans-serif;
}

body:not(.wp-admin).eb-google-fonts h1,
body:not(.wp-admin).eb-google-fonts h2,
body:not(.wp-admin).eb-google-fonts h3,
body:not(.wp-admin).eb-google-fonts h4,
body:not(.wp-admin).eb-google-fonts h5,
body:not(.wp-admin).eb-google-fonts h6 {
    font-family: "Montserrat", sans-serif;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section-space {
    padding: 4.5rem 0;
}

.section-light {
    background: var(--eb-soft-green);
}

.section-alt {
    background: var(--eb-alt-bg);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: #fff;
    color: var(--eb-text);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: 2px solid var(--eb-turquoise);
    z-index: 10000;
}

:focus-visible {
    outline: 3px solid var(--eb-turquoise);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e7ecef;
    z-index: 99;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
}

.logo-link img,
.custom-logo {
    width: auto;
    max-height: 56px;
}

.menu,
.menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 1rem;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: var(--eb-text);
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(220, 239, 230, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: #334;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

.eb-btn,
.wp-block-button__link {
    background: var(--eb-accent);
    border: 2px solid var(--eb-accent);
    color: var(--eb-text);
    padding: 0.72rem 1.2rem;
    border-radius: var(--eb-button-radius);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.eb-btn:hover,
.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--eb-shadow);
}

.eb-btn-outline {
    background: #fff;
    border-color: var(--eb-turquoise);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
    font-weight: 600;
    padding: 1rem 0;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: #fff;
    border-radius: var(--eb-radius);
    padding: 1.3rem;
    box-shadow: var(--eb-shadow);
    border: 1px solid #edf1f3;
}

.text-link {
    color: var(--eb-turquoise);
    font-weight: 600;
}

.steps-list li {
    margin-bottom: 0.55rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.split img {
    width: 100%;
    height: auto;
    border-radius: var(--eb-radius);
}

.testimonial-slider {
    display: grid;
    gap: 0.8rem;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.slider-btn {
    background: #fff;
    border: 1px solid #ccd7dc;
    color: var(--eb-text);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    width: fit-content;
}

.eb-contact-form p {
    margin-bottom: 1rem;
}

.eb-contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.eb-contact-form input,
.eb-contact-form textarea,
.search-field {
    width: 100%;
    border: 1px solid #c8d5db;
    border-radius: 8px;
    padding: 0.72rem;
    font: inherit;
}

.eb-form-errors {
    border-left: 4px solid #b00020;
    padding: 0.8rem;
    background: #fdeff2;
    margin-bottom: 1rem;
}

.eb-form-success {
    border-left: 4px solid #1b7a45;
    padding: 0.8rem;
    background: #edf9f1;
}

.site-footer {
    background: var(--eb-text);
    color: #fff;
    padding: 2rem 0;
}

.site-footer a {
    color: #cce7f2;
}

.footer-social {
    margin-bottom: 1rem;
}

.footer-social-title {
    margin: 0 0 0.6rem;
    font-weight: 700;
}

.footer-social-list {
    list-style: none;
    display: flex;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    text-decoration: none;
}

.footer-social-list a span {
    display: inline-block;
}

.footer-social-list a img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-credential {
    color: #dcefe6;
    font-weight: 600;
}

.meta {
    color: var(--eb-gray);
    font-size: 0.92rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.eb-whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 98;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    box-shadow: var(--eb-shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.eb-whatsapp-float img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

.maintenance-mode {
    min-height: 100vh;
    display: grid;
    place-content: center;
    background: linear-gradient(180deg, #f7f9fa 0%, #dcefe6 100%);
}

.maintenance-card {
    width: min(740px, 92%);
    background: #fff;
    border: 1px solid #d9e4e9;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--eb-shadow);
    text-align: center;
}

.maintenance-card img {
    max-height: 66px;
    width: auto;
}

@media (max-width: 992px) {
    .card-grid-3,
    .card-grid-4,
    .trust-grid,
    .testimonial-track,
    .split {
        grid-template-columns: 1fr 1fr;
    }

    .site-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .card-grid-3,
    .card-grid-4,
    .trust-grid,
    .testimonial-track,
    .split {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 62vh;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
}
