:root {
    --mint-050: #f4fdf9;
    --mint-100: #e7fbf3;
    --mint-200: #d2f5e9;
    --mint-300: #aeebd4;
    --mint-500: #24be87;
    --mint-600: #1aa978;
    --mint-700: #179f6d;
    --mint-800: #0f7a53;
    --ink-900: #102a22;
    --slate-900: #1f2937;
    --slate-700: #374151;
    --slate-600: #4b5563;
    --slate-400: #94a3b8;
    --white: #ffffff;
    --line: #d6eee4;
    --shadow-sm: 0 6px 18px rgba(23, 159, 109, 0.10);
    --shadow: 0 14px 36px rgba(23, 159, 109, 0.15);
    --shadow-lg: 0 26px 60px rgba(15, 122, 83, 0.20);
    --radius: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--mint-050);
    color: var(--slate-900);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: Manrope, sans-serif;
    color: var(--ink-900);
    letter-spacing: -0.3px;
}

a { color: inherit; }
img { max-width: 100%; }

.container {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--mint-700);
    color: #fff;
    padding: 10px 16px;
    border-radius: 0 0 10px 0;
    z-index: 100;
}
.skip-link:focus { left: 0; }

/* ===== NAV ===== */
.topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 30;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}
.topbar.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.95); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 18px;
}

.logo {
    text-decoration: none;
    font-family: Manrope, sans-serif;
    color: var(--mint-700);
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
}
.logo span {
    display: block;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

.menu {
    display: flex;
    gap: 22px;
    margin-left: auto;
    margin-right: 6px;
}
.menu a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}
.menu a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--mint-500);
    transition: width 0.25s ease;
}
.menu a:hover, .menu a.active { color: var(--mint-700); }
.menu a:hover::after, .menu a.active::after { width: 100%; }

.mobile-menu-toggle {
    display: none;
    background: var(--mint-100);
    border: 1px solid var(--line);
    color: var(--mint-700);
    font-size: 1.1rem;
    width: 42px; height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    color: var(--white);
    background: linear-gradient(120deg, var(--mint-700), var(--mint-500));
    box-shadow: 0 10px 26px rgba(36, 190, 135, 0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
    border-color: var(--mint-300);
    color: var(--mint-700);
    background: var(--white);
}
.btn-outline:hover { background: var(--mint-100); transform: translateY(-2px); }
.btn.full { width: 100%; justify-content: center; }
.btn-light {
    background: #fff;
    color: var(--mint-700);
    border-color: #fff;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: center;
    padding: 72px 0 64px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint-100);
    color: var(--mint-700);
    border: 1px solid var(--mint-300);
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 600;
    font-size: 0.84rem;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 16px;
}
.hero-content > p {
    color: var(--slate-600);
    font-size: 1.05rem;
    margin-bottom: 26px;
    max-width: 56ch;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-badges li {
    color: var(--slate-600);
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-badges i { color: var(--mint-600); margin-right: 6px; }

.hero-visual { position: relative; }
.hero-illustration {
    width: 100%;
    display: block;
    border-radius: 18px;
    -webkit-mask-image: radial-gradient(125% 115% at 52% 45%, #000 58%, rgba(0, 0, 0, 0.45) 80%, transparent 94%);
    mask-image: radial-gradient(125% 115% at 52% 45%, #000 58%, rgba(0, 0, 0, 0.45) 80%, transparent 94%);
    filter: saturate(1.05);
}
.photo-panel {
    background: linear-gradient(140deg, var(--mint-200) 0%, #f6fffc 100%);
    border: 1px solid var(--mint-300);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
}
.photo-panel img {
    width: 100%;
    border-radius: 18px;
    display: block;
}
.photo-fallback {
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-fallback::after {
    content: attr(data-initials);
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--mint-700);
    opacity: 0.85;
    letter-spacing: 2px;
}
.mini-stat {
    position: absolute;
    right: 6px;
    bottom: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow);
}
.mini-stat strong {
    display: block;
    color: var(--mint-700);
    font-family: Manrope, sans-serif;
    font-size: 1.05rem;
}
.mini-stat strong i { color: #fbbc04; }
.mini-stat span { font-size: 0.82rem; color: var(--slate-600); }

/* ===== TRUST STRIP ===== */
.trust {
    background: linear-gradient(120deg, var(--mint-700), var(--mint-500));
    color: #fff;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 26px 0;
}
.trust-grid article {
    text-align: center;
    padding: 6px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.trust-grid article:first-child { border-left: none; }
.trust-grid strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 1.4rem;
}
.trust-grid span { font-size: 0.86rem; color: #e3fff4; }

/* ===== SECTION HEADERS ===== */
.section-head { margin-bottom: 34px; }
.section-head.center { text-align: center; max-width: 760px; margin-inline: auto; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mint-700);
    margin-bottom: 10px;
}
.eyebrow.light { color: var(--mint-200); }
.section-head h2, .about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 12px;
}
.lead { color: var(--slate-600); font-size: 1.02rem; }

/* ===== ABOUT ===== */
.about-section { padding: 76px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}
.about-text p { color: var(--slate-600); margin-bottom: 14px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}
.about-stats div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}
.about-stats strong {
    display: block;
    font-family: Manrope, sans-serif;
    color: var(--mint-700);
    font-size: 1.4rem;
}
.about-stats span { font-size: 0.8rem; color: var(--slate-600); }

/* ===== HIGHLIGHTS ===== */
.highlights {
    background: var(--mint-100);
    border-top: 1px solid var(--mint-200);
    border-bottom: 1px solid var(--mint-200);
    padding: 72px 0;
}
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.highlight-grid article {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.highlight-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.highlight-grid i {
    color: var(--mint-700);
    font-size: 1.5rem;
    margin-bottom: 12px;
    background: var(--mint-100);
    width: 52px; height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
.highlight-grid h3 { font-size: 1.08rem; margin-bottom: 8px; }
.highlight-grid p { color: var(--slate-600); font-size: 0.94rem; }

/* ===== ONLINE WORLDWIDE ===== */
.global {
    background: linear-gradient(125deg, #0f5a44 0%, #1f8f6c 100%);
    color: #fff;
    padding: 78px 0;
}
.global-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: center;
}
.global-text h2 { color: #fff; }
.global-text p { color: #d7ece5; margin-bottom: 14px; }
.global-actions { margin-top: 20px; }
.global-countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.global-countries span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.global-countries i { color: var(--mint-200); }

@media (max-width: 960px) {
    .global-grid { grid-template-columns: 1fr; }
}

/* ===== CONCERNS ===== */
.concerns { padding: 76px 0; }
.chip-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.chip-grid li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 500;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.chip-grid li:hover { border-color: var(--mint-300); transform: translateY(-3px); }
.chip-grid i {
    color: var(--mint-700);
    width: 22px;
    text-align: center;
}

/* ===== FOCUS ===== */
.focus {
    background: var(--mint-100);
    border-top: 1px solid var(--mint-200);
    border-bottom: 1px solid var(--mint-200);
    padding: 76px 0;
}
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.focus-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--slate-700);
}
.focus-item i {
    color: var(--white);
    background: linear-gradient(135deg, var(--mint-600), var(--mint-500));
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== SERVICES ===== */
.services { padding: 76px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--mint-300); }
.service-card i {
    color: var(--mint-700);
    font-size: 1.3rem;
    margin-bottom: 12px;
    background: var(--mint-100);
    width: 52px; height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { color: var(--slate-600); font-size: 0.92rem; }

/* ===== WHO ===== */
.who {
    background: var(--mint-100);
    border-top: 1px solid var(--mint-200);
    border-bottom: 1px solid var(--mint-200);
    padding: 76px 0;
}
.who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.who-grid span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 600;
    color: var(--slate-700);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.who-grid span:hover { background: var(--mint-700); color: #fff; transform: translateY(-3px); }
.who-grid span:hover i { color: #fff; }
.who-grid i { color: var(--mint-700); }

/* ===== GROUPS ===== */
.groups { padding: 76px 0; }
.groups-card {
    background: linear-gradient(125deg, #0f5a44 0%, #1f8f6c 100%);
    border-radius: 26px;
    padding: 44px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.groups-card h2 { color: #fff; }
.groups-text p { color: #d7ece5; margin-top: 8px; }
.groups-list {
    list-style: none;
    display: grid;
    gap: 10px;
}
.groups-list li {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}
.groups-list i { color: var(--mint-200); }

/* ===== TESTIMONIALS / GOOGLE REVIEWS ===== */
.testimonials { padding: 76px 0; background: var(--mint-050); }
.google-reviews {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
}
.gr-score { text-align: center; }
.gr-num {
    font-family: Manrope, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
}
.gr-stars { color: #fbbc04; font-size: 1.15rem; margin: 8px 0 6px; letter-spacing: 2px; }
.gr-count { display: block; font-size: 0.85rem; color: var(--slate-600); }
.gr-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    color: var(--slate-700);
    border-left: 1px solid var(--line);
    padding-left: 28px;
}
.gr-brand i { font-size: 1.8rem; color: #4285f4; }
.gr-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

@media (max-width: 600px) {
    .google-reviews { grid-template-columns: 1fr; text-align: center; }
    .gr-brand { border-left: none; padding-left: 0; justify-content: center; }
}

/* ===== FAQ ===== */
.faq { padding: 76px 0; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item:focus-visible { outline: 2px solid var(--mint-500); }
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
}
.faq-header h3 { font-size: 1.02rem; margin: 0; }
.faq-header i { color: var(--mint-700); transition: transform 0.25s ease; }
.faq-item.active { box-shadow: var(--shadow-sm); }
.faq-item.active .faq-header i { transform: rotate(45deg); }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}
.faq-item.active .faq-body { max-height: 240px; padding: 0 22px 20px; }
.faq-body p { color: var(--slate-600); }

/* ===== CONTACT ===== */
.contact { padding: 76px 0 90px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 10px;
    box-shadow: var(--shadow);
}
.contact-info {
    background: linear-gradient(150deg, #0f5a44, #1f8f6c);
    color: #fff;
    border-radius: 20px;
    padding: 38px;
}
.contact-info h2 { color: #fff; }
.contact-info > p { color: #d7ece5; margin-top: 6px; }
.contact-details {
    list-style: none;
    margin: 24px 0;
    display: grid;
    gap: 14px;
}
.contact-details li { display: flex; align-items: center; gap: 14px; }
.contact-details a { color: #fff; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-details i {
    background: rgba(255, 255, 255, 0.15);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-socials { display: flex; gap: 12px; margin-top: 8px; }
.contact-socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}
.contact-socials a:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }

.contact-form { padding: 30px; display: grid; gap: 16px; align-content: start; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--slate-700); }
.contact-form input,
.contact-form textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--slate-900);
    background: var(--mint-050);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    resize: vertical;
}
.form-note { font-size: 0.8rem; color: var(--slate-600); text-align: center; margin-top: -4px; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--mint-500);
    box-shadow: 0 0 0 3px rgba(36, 190, 135, 0.18);
    background: #fff;
}

/* ===== FOOTER ===== */
.footer { background: var(--ink-900); color: #cfe9df; padding-top: 48px; }
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 32px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { color: #9fc4b6; margin-top: 8px; max-width: 40ch; font-size: 0.92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.footer-links a { text-decoration: none; color: #cfe9df; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 18px 0; }
.footer-bottom p { font-size: 0.85rem; color: #9fc4b6; }

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 42, 34, 0.55);
    backdrop-filter: blur(3px);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: min(460px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.25s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-sub { color: var(--slate-600); font-size: 0.92rem; margin-bottom: 18px; }
.modal form { display: grid; gap: 14px; }
.modal .field { display: grid; gap: 6px; }
.modal label { font-weight: 600; font-size: 0.86rem; color: var(--slate-700); }
.modal input,
.modal select,
.modal textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--slate-900);
    background: var(--mint-050);
    resize: vertical;
}
.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--mint-500);
    box-shadow: 0 0 0 3px rgba(36, 190, 135, 0.18);
    background: #fff;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--slate-600);
    cursor: pointer;
}
.modal-close:hover { color: var(--mint-700); }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 18px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55); }
.wa-float i { font-size: 1.4rem; }

/* ===== BACK TO TOP ===== */
.to-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 40;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--mint-700);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--mint-700); color: #fff; }

@media (max-width: 600px) {
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero, .about-grid, .groups-card, .contact-grid { grid-template-columns: 1fr; }
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .focus-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid article:nth-child(3) { border-left: none; }
    .about-photo { max-width: 380px; margin: 0 auto; }
    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px 22px;
        gap: 6px;
        box-shadow: var(--shadow);
        display: none;
    }
    .menu.open { display: flex; }
    .menu a { padding: 10px 0; }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 600px) {
    .highlight-grid, .services-grid, .focus-grid, .trust-grid { grid-template-columns: 1fr; }
    .trust-grid article { border-left: none; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .groups-card, .contact-info, .contact-form { padding: 26px; }
    .mini-stat { right: 8px; bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
