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

:root {
    --ink: #2d3748;
    --ink-soft: #64748b;
    --surface: #ffffff;
    --line: rgba(45, 55, 72, 0.08);
    --brand-a: #667eea;
    --brand-b: #764ba2;
    --brand-c: #ff6b6b;
    --hero-shadow: 0 24px 80px rgba(44, 24, 82, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    overflow-x: hidden;
    background: #ffffff;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    pointer-events: none;
}

.gradient-bg::after {
    display: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.68;
    z-index: 0;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 84px;
    left: -120px;
    background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 72%);
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    right: -60px;
    top: 120px;
    background: radial-gradient(circle, rgba(255,107,107,0.34) 0%, rgba(255,107,107,0) 70%);
}

.hero-orb-three {
    width: 220px;
    height: 220px;
    right: 16%;
    bottom: 32px;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 75%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 0 1rem;
    text-align: left;
}

.logo-shell {
    position: relative;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    box-shadow: var(--hero-shadow);
    border: 1px solid rgba(255,255,255,0.22);
    overflow: hidden;
    animation: logoGlowPulse 3.2s ease-in-out infinite;
    flex: 0 0 auto;
}

.logo-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.logo-shell:hover {
    transform: rotate(-3deg) scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.logo {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    letter-spacing: -0.03em;
}

.logo-shell::after {
    content: '';
    position: absolute;
    top: -46%;
    left: -88%;
    width: 56%;
    height: 240%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.16) 16%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.18) 82%, rgba(255,255,255,0) 100%);
    filter: blur(8px);
    transform: rotate(20deg);
    opacity: 0;
    pointer-events: none;
    animation: logoImageSweep 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 28ch;
}

.hero {
    text-align: center;
    padding: 3rem 0 6rem;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(14px);
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    box-shadow: 0 14px 36px rgba(37, 20, 72, 0.2);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    text-shadow: 0 10px 30px rgba(23, 16, 46, 0.34);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #ffffff, #f0f9ff 82%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 14px rgba(22, 16, 42, 0.18);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    min-height: 58px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-panels {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: stretch;
}

.hero-panel {
    position: relative;
    padding: 1.6rem;
    border-radius: 28px;
    text-align: left;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--hero-shadow);
    overflow: hidden;
}

.hero-panel-primary {
    background: linear-gradient(180deg, rgba(255,255,255,0.17), rgba(255,255,255,0.08));
}

.hero-panel-primary::after {
    top: -30%;
    left: -42%;
    width: 34%;
    height: 170%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.22) 20%, rgba(255,255,255,0.98) 50%, rgba(255,255,255,0.24) 80%, rgba(255,255,255,0) 100%);
    filter: blur(12px);
    opacity: 0;
    transform: rotate(16deg);
    animation: panelSweep 2.9s linear infinite;
}

.hero-panel-metrics {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    display: grid;
    gap: 0.9rem;
}

.shine-panel {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.shine-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(10,16,31,0.24) 0%, rgba(10,16,31,0.08) 24%, rgba(255,255,255,0) 58%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: scaleX(1);
}

.shine-panel::after {
    content: '';
    position: absolute;
    top: -45%;
    left: -110%;
    width: 58%;
    height: 210%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 12%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.1) 88%, rgba(255,255,255,0) 100%);
    mix-blend-mode: screen;
    filter: blur(6px);
    opacity: 0;
    transform: rotate(16deg) translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 2;
}

.shine-panel::after {
    animation: cardShine 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.reveal,
.hero-stage,
.contact-btn[data-reveal] {
    position: relative;
}

.reveal::selection,
.hero-stage::selection {
    background: rgba(118, 75, 162, 0.24);
}

.motion-ready [data-reveal] {
    opacity: 0;
    filter: blur(10px) brightness(0.72);
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        filter 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    filter: blur(0) brightness(1);
}

.motion-ready [data-reveal="rise"] {
    transform: translate3d(0, 70px, 0);
}

.motion-ready [data-reveal="pop"] {
    transform: translate3d(0, 38px, 0) scale(0.92);
}

.motion-ready [data-reveal="bounce"] {
    transform: translate3d(0, -70px, 0) scale(0.88);
    transition-timing-function: cubic-bezier(0.18, 0.88, 0.22, 1.28);
}

.motion-ready [data-reveal="left"] {
    transform: translate3d(-110px, 0, 0);
}

.motion-ready [data-reveal="right"] {
    transform: translate3d(110px, 0, 0);
}

.motion-ready [data-reveal].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .shine-panel.is-visible::before,
.motion-ready .hero-stage.is-visible.shine-panel::before {
    animation: shadeSweep 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.panel-label,
.section-kicker,
.stat-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
}

.panel-label {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.85rem;
}

.hero-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: #fff;
    text-shadow: 0 4px 18px rgba(22, 16, 42, 0.24);
}

.hero-panel p {
    margin: 0;
    max-width: none;
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
}

.mini-metric {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}

.mini-metric-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.62);
    margin-bottom: 0.15rem;
}

.mini-metric strong {
    color: white;
    font-size: 1.12rem;
    text-shadow: 0 2px 10px rgba(22, 16, 42, 0.22);
}

.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ink);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.feature-card p {
    color: var(--ink-soft);
    line-height: 1.7;
}

.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5.5rem 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-kicker {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0.85rem;
}

.section-heading h2 {
    color: white;
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 0.9rem;
    text-shadow: 0 6px 22px rgba(23, 16, 46, 0.24);
}

.section-heading p {
    color: rgba(255,255,255,0.88);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.08rem;
    text-shadow: 0 2px 12px rgba(23, 16, 46, 0.18);
}

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

.stat-item {
    position: relative;
    overflow: hidden;
    padding: 1.8rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 48px rgba(33, 17, 62, 0.18);
    color: white;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: statPulse 5.5s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
    box-shadow: 0 24px 60px rgba(33, 17, 62, 0.26);
}

.stat-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    right: -60px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.stat-eyebrow {
    color: rgba(255,255,255,0.78);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: white;
    text-shadow: 0 6px 20px rgba(22, 16, 42, 0.3);
}

.stat-item p {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.stat-item small {
    display: block;
    margin-top: 0.7rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact {
    padding: 6rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--ink);
}

.contact p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin-bottom: 3rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2.5rem;
    width: min(100%, 320px);
    min-width: 320px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.email-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes statPulse {
    0%, 100% {
        box-shadow: 0 18px 48px rgba(33, 17, 62, 0.18);
    }

    50% {
        box-shadow: 0 24px 62px rgba(33, 17, 62, 0.3);
    }
}

@keyframes cardShine {
    0%, 52%, 100% {
        opacity: 0;
        transform: rotate(16deg) translate3d(0, 0, 0);
    }

    8% {
        opacity: 0.22;
    }

    20% {
        opacity: 1;
        transform: rotate(16deg) translate3d(420%, 0, 0);
    }

    28% {
        opacity: 0;
        transform: rotate(16deg) translate3d(520%, 0, 0);
    }
}

@keyframes shadeSweep {
    0% {
        opacity: 0.65;
        transform: scaleX(1);
    }

    55% {
        opacity: 0.28;
    }

    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes panelSweep {
    0% {
        transform: translate3d(0, 0, 0) rotate(16deg);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    65% {
        transform: translate3d(360%, 0, 0) rotate(16deg);
        opacity: 0.92;
    }

    100% {
        transform: translate3d(360%, 0, 0) rotate(16deg);
        opacity: 0;
    }
}

@keyframes logoImageSweep {
    0% {
        transform: translate3d(0, 0, 0) rotate(20deg);
        opacity: 0;
    }

    12% {
        opacity: 0.7;
    }

    24% {
        opacity: 1;
    }

    38% {
        transform: translate3d(350%, 0, 0) rotate(20deg);
        opacity: 0.96;
    }

    100% {
        transform: translate3d(350%, 0, 0) rotate(20deg);
        opacity: 0;
    }
}


@keyframes logoTextSweep {
    0% {
        transform: translate3d(0, 0, 0) rotate(18deg);
        opacity: 0;
    }

    14% {
        opacity: 1;
    }

    68% {
        transform: translate3d(360%, 0, 0) rotate(18deg);
        opacity: 0.95;
    }

    100% {
        transform: translate3d(360%, 0, 0) rotate(18deg);
        opacity: 0;
    }
}

@keyframes logoGlowPulse {
    0%, 100% {
        box-shadow: 0 24px 80px rgba(44, 24, 82, 0.22);
    }

    50% {
        box-shadow: 0 24px 100px rgba(255, 255, 255, 0.24);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

@media (max-width: 960px) {
    .container {
        padding: 0 20px;
    }

    .hero-orb-two {
        right: -110px;
        top: 260px;
    }

    .hero-panels {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 4.5rem;
    }

    .logo-shell {
        width: 132px;
        height: 132px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .tagline {
        max-width: 24ch;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .feature-card,
    .stat-item,
    .hero-panel {
        padding: 1.3rem;
        border-radius: 22px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-heading h2 {
        font-size: 2.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-orb-one {
        width: 220px;
        height: 220px;
        top: 40px;
        left: -100px;
    }

    .shine-panel::after {
        width: 72%;
        left: -130%;
    }

    .hero-orb-two,
    .hero-orb-three {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 2rem 0 4.25rem;
    }

    .logo-shell {
        width: 116px;
        height: 116px;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2.2rem;
    }

    .features,
    .stats,
    .contact {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .features-grid {
        gap: 1.15rem;
    }

    .feature-card,
    .stat-item,
    .hero-panel,
    .contact-btn {
        border-radius: 20px;
    }

    .contact-btn {
        min-width: 0;
        width: min(100%, 340px);
    }
}
