@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #08111f;
    --bg-elevated: rgba(8, 17, 31, 0.82);
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(241, 245, 249, 0.82);
    --border: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.2);
    --shadow: 0 24px 80px rgba(3, 7, 18, 0.38);
    --shadow-soft: 0 14px 40px rgba(2, 6, 23, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --section-space: clamp(4.5rem, 8vw, 7rem);
    --container: 1180px;
    --accent: #7c3aed;
    --accent-strong: #4f46e5;
    --accent-soft: rgba(124, 58, 237, 0.22);
    --success: #25d366;
    --grad-c1: #0f172a;
    --grad-c2: #1d4ed8;
    --grad-c3: #4338ca;
    --grad-c4: #0f172a;
    --grad-speed: 20s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 25%),
        linear-gradient(180deg, #040814 0%, #08111f 45%, #0a1323 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
}

.hidden {
    display: none !important;
}

.text-shadow {
    text-shadow: 0 1px 2px rgba(2, 6, 23, 0.32);
}

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.bg-wrapper,
.bg-gradient-animated {
    position: relative;
    min-height: 100vh;
    overflow: clip;
    background:
        radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 24%),
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.07), transparent 20%),
        linear-gradient(135deg, var(--grad-c1) 0%, var(--grad-c2) 35%, var(--grad-c3) 68%, var(--grad-c4) 100%);
    background-size: 180% 180%;
    animation: gradient-animation var(--grad-speed) ease infinite;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(4, 8, 20, 0.16), rgba(4, 8, 20, 0.78)),
        radial-gradient(circle at center, transparent 40%, rgba(3, 7, 18, 0.55) 100%);
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

@keyframes gradient-animation {
    0% { background-position: 0% 45%; }
    50% { background-position: 100% 55%; }
    100% { background-position: 0% 45%; }
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 1rem 0 0;
}

.header-container {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(6, 11, 24, 0.58);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.24);
}

.main-header.is-scrolled .header-container {
    background: rgba(4, 10, 23, 0.88);
    border-color: var(--border-strong);
}

.header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
    padding: 0.9rem 1.15rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-highlight {
    color: color-mix(in srgb, var(--accent) 72%, white);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.desktop-nav a {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.96rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    transition: color 0.24s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: transform 0.24s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: #ffffff;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.language-flags {
    display: flex !important;
    align-items: center;
    gap: 0.55rem !important;
    margin-left: 0.25rem !important;
    padding-left: 0.9rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.language-flags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 1.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.language-flags a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.language-flags svg {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px !important;
}

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.24s ease, transform 0.24s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.85rem;
    padding: 1rem 1.15rem 1.2rem;
    border-radius: 28px;
    background: rgba(6, 11, 24, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.mobile-nav .container {
    width: 100%;
    padding-inline: 0;
}

.mobile-menu-link {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title,
.hero-title {
    margin: 0;
    letter-spacing: -0.04em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
}

.section-subtitle,
.hero-subtitle {
    margin: 1rem auto 0;
    max-width: 720px;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero {
    position: relative;
    min-height: min(92vh, 980px);
    display: flex;
    align-items: center;
    padding-block: clamp(7rem, 11vw, 9rem) 5.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: auto 0 8% 0;
    margin: auto;
    width: min(1100px, 88vw);
    height: 360px;
    filter: blur(50px);
    opacity: 0.42;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, white) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-home .container {
    display: grid;
    gap: 2.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.94;
    max-width: 11ch;
}

.hero-subtitle {
    margin-inline: 0;
    max-width: 58ch;
}

.hero-copy {
    max-width: 700px;
    padding-right: 0.5rem;
}

.hero-panel,
.cta-band,
.media-frame {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel {
    display: grid;
    gap: 1.35rem;
    padding: 1.55rem;
    align-content: start;
}

.hero-panel-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-checklist {
    display: grid;
    gap: 0.9rem;
}

.hero-checklist li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92);
}

.hero-checklist li strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.hero-checklist-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 62%, white), var(--accent-strong));
    color: #08111f;
    font-size: 0.95rem;
    font-weight: 800;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hero-stat {
    display: grid;
    align-content: start;
    gap: 0.6rem;
    min-height: 136px;
    padding: 1.15rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
    display: block;
    color: #ffffff;
    font-size: clamp(1.25rem, 1.4vw, 1.75rem);
    font-weight: 800;
    line-height: 1.05;
    text-wrap: balance;
}

.hero-stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 56px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 92%, white), var(--accent-strong));
    color: #050816;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
    box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 34%, transparent);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px color-mix(in srgb, var(--accent) 40%, transparent);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.cta-button.whatsapp-button {
    background: linear-gradient(135deg, #25d366, #10b981);
    color: #ffffff;
}

.cta-card-center {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.proof-strip {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.proof-strip-label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.93rem;
    font-weight: 500;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.card,
.porque-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.card {
    padding: 1.8rem;
}

.card::before,
.porque-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 38%, transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.card:hover,
.porque-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.16));
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.36);
    background-color: rgba(255, 255, 255, 0.07);
}

.card:hover::before,
.porque-card:hover::before {
    opacity: 1;
}

.card-grid > .card,
.card-grid > .porque-card {
    height: 100%;
}

.card-number {
    display: inline-flex;
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--accent) 65%, white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.card-icon,
.porque-icon,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    flex-shrink: 0;
    border-radius: 18px;
    color: color-mix(in srgb, var(--accent) 72%, white);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, transparent), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-title,
.porque-card h3,
.testimonial-author-name {
    margin: 0 0 0.8rem;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}

.card-text,
.porque-card p,
.feature-text,
.testimonial-author-title,
.footer-grid p,
.footer-grid li,
.footer-grid a {
    color: rgba(255, 255, 255, 0.92);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-card .card-icon {
    margin-bottom: 0.85rem;
}

.porque-maudy-grid,
.feature-list {
    display: grid;
    gap: 1.2rem;
}

.porque-card {
    padding: 1.65rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.feature-text {
    margin: 0;
}

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

.testimonial-image {
    width: 104px;
    height: 104px;
    margin: 0 auto 1.15rem;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(3, 7, 18, 0.34);
}

.testimonial-text {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.96);
}

.profile-shot-link {
    display: inline-block;
}

.profile-shot {
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.profile-shot-link:hover .profile-shot {
    transform: scale(1.06);
    border-color: color-mix(in srgb, var(--accent) 55%, rgba(255, 255, 255, 0.2));
    box-shadow: 0 24px 52px rgba(2, 6, 23, 0.36);
}

.wave-divider {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 72px;
}

.wave-divider .shape-fill {
    fill: #08111f;
}

.main-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    padding-block: 3.2rem 2.4rem;
}

.footer-grid {
    display: grid;
    gap: 1.8rem;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.footer-grid ul {
    display: grid;
    gap: 0.55rem;
}

.footer-grid h4 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom h2 {
    margin: 0 0 0.4rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.social-links svg {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: color-mix(in srgb, var(--accent) 22%, rgba(255, 255, 255, 0.06));
    border-color: color-mix(in srgb, var(--accent) 40%, rgba(255, 255, 255, 0.18));
}

.media-frame {
    padding: 0.55rem;
}

.media-frame iframe,
.media-frame img {
    width: 100%;
    border: 0;
    border-radius: calc(var(--radius-md) - 4px);
}

.cta-band {
    padding: clamp(1.8rem, 3vw, 2.8rem);
    text-align: center;
}

.cta-band h2,
.cta-band h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.cta-band p {
    margin: 1rem auto 0;
    max-width: 56ch;
    color: var(--text-soft);
}

.lang-switcher,
.lang-link {
    display: none;
}

.text-white { color: #ffffff !important; }
.text-white\/90 { color: rgba(255, 255, 255, 0.96) !important; }
.text-white\/80 { color: rgba(255, 255, 255, 0.9) !important; }
.text-cyan-300 { color: #67e8f9 !important; }
.text-green-300 { color: #86efac !important; }
.text-orange-400 { color: #fb923c !important; }
.text-purple-300 { color: #d8b4fe !important; }
.font-bold { font-weight: 700 !important; }
.leading-relaxed { line-height: 1.75 !important; }
.text-lg { font-size: 1.1rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: clamp(1.35rem, 2vw, 1.65rem) !important; }
.text-4xl { font-size: clamp(2rem, 4vw, 3rem) !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.flex-grow { flex-grow: 1 !important; }

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

    .mobile-menu-toggle {
        display: none;
    }

    .main-header {
        padding-top: 1.2rem;
    }

    .hero-home .container {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        align-items: center;
    }

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

    .porque-maudy-grid,
    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1080px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .main-header {
        padding-top: 0.8rem;
    }

    .header-container {
        border-radius: 26px;
    }

    .header-nav-wrapper {
        min-height: 68px;
        padding: 0.8rem 0.9rem;
    }

    .language-flags {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: 7rem;
    }

    .proof-strip {
        margin-top: 1.6rem;
    }

    .section-header {
        margin-bottom: 2.4rem;
    }

    .card,
    .porque-card {
        padding: 1.3rem;
    }

    .hero-panel {
        padding: 1.25rem;
    }

    .cta-button {
        width: 100%;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
