
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-bg: #0a0a0f;
    --clr-surface: #13131a;
    --clr-surface-2: #1a1a25;
    --clr-border: rgba(255, 255, 255, 0.06);
    --clr-text: #f0eef5;
    --clr-text-muted: #9490a8;
    --clr-accent: #8b5cf6;
    --clr-accent-light: #a78bfa;
    --clr-accent-dark: #7c3aed;
    --clr-gradient-1: #8b5cf6;
    --clr-gradient-2: #a78bfa;
    --clr-gradient-3: #c4b5fd;
    --clr-glass: rgba(19, 19, 26, 0.72);
    --clr-glass-border: rgba(139, 92, 246, 0.15);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.12);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}


.gradient-text {
    background: linear-gradient(135deg, var(--clr-gradient-1), var(--clr-gradient-2), var(--clr-gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--clr-accent);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--clr-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: var(--clr-bg);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--clr-accent);
}

.mobile-nav-cta {
    display: none;
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.75) 50%, rgba(10, 10, 15, 0.85) 100%),
        linear-gradient(to bottom, transparent 60%, var(--clr-bg) 100%);
}


.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 0.6;
        transform: translateY(-30px) scale(1);
    }

    80% {
        opacity: 0.3;
        transform: translateY(-120px) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-160px) scale(0);
    }
}


.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr minmax(0, 440px);
    gap: 60px;
    align-items: center;
    width: 100%;
}


.hero-content {
    opacity: 1;
    transform: translateY(0);
    max-width: 800px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-accent-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}




.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--clr-accent);
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--clr-accent);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border);
}


.hero-form-wrapper {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.form-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.15));
    border-radius: var(--radius-xl);
    z-index: -1;
    filter: blur(1px);
}

.hero-form {
    background: var(--clr-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-header {
    text-align: center;
    margin-bottom: 8px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.form-group {
    width: 100%;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239490a8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.input-wrapper select option {
    background: var(--clr-surface);
    color: var(--clr-text);
}

.input-wrapper input::placeholder {
    color: var(--clr-text-muted);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: rgba(139, 92, 246, 0.45);
    background: rgba(139, 92, 246, 0.04);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.input-wrapper input:focus+.input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--clr-accent);
}


.input-wrapper {
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    flex-shrink: 0;
}

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    border: none;
    border-radius: var(--radius-md);
    color: var(--clr-bg);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 4px;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.form-submit:hover::before {
    transform: translateX(100%);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
}

.btn-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.form-submit:hover .btn-arrow svg {
    transform: translateX(4px);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.03em;
}


.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clr-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.4;
        height: 24px;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.marquee-section {
    padding: 24px 0;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--clr-accent) !important;
}


.features {
    padding: 120px 0;
    background: var(--clr-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}


.experience-clusters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.cluster {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.cluster:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(139, 92, 246, 0.3);
}

.cluster-title {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
}

.cluster-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.exp-number {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-accent);
    opacity: 0.5;
    margin-top: 4px;
}

.exp-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--clr-text);
}

.exp-info p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.exp-item:hover .exp-number {
    opacity: 1;
}

.exp-item:hover h4 {
    color: var(--clr-accent-light);
}

.features-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: var(--clr-bg);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.btn-primary svg {
    transition: transform var(--transition);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.35);
    color: var(--clr-bg);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}


.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--clr-surface);
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    color: var(--clr-bg);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(139, 92, 246, 0.35);
}

.cta-button:hover svg {
    transform: translateX(4px);
}


.footer {
    padding: 60px 0 32px;
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--clr-text);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
    color: var(--clr-accent);
}

.modal-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal-close {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
    border: none;
    border-radius: 50px;
    color: var(--clr-bg);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}


.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-surface-2);
    color: var(--clr-text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) translateX(8px);
    border: 1px solid var(--clr-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}




@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
        padding-top: 40px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content .hero-badge {
        justify-content: center;
    }

    .hero-form-wrapper {
        order: 2;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .experience-clusters {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cluster {
        padding: 24px 20px;
    }

    .features {
        padding: 80px 0;
    }


    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }
}


@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 14px;
    }

    .hero-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-form {
        padding: 28px 24px;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .features {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .features-list li {
        font-size: 0.88rem;
        padding: 6px 0 6px 24px;
    }

    .features-list li::before {
        left: 0;
        top: 6px;
    }

    .scroll-indicator {
        display: none;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .modal-content {
        padding: 36px 28px;
        width: 92%;
    }
}


@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .section-container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-img {
        height: 50px;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-container {
        gap: 24px;
        padding: 0 16px;
        padding-top: 10px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }


    .hero-badge {
        font-size: 0.68rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .hero-form {
        padding: 24px 18px;
        gap: 12px;
        border-radius: var(--radius-lg);
    }

    .form-title {
        font-size: 1.25rem;
    }

    .form-subtitle {
        font-size: 0.78rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        padding: 12px 14px 12px 40px;
        font-size: 0.85rem;
    }

    .input-icon {
        width: 16px;
        height: 16px;
        left: 14px;
    }

    .form-submit {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .form-note {
        font-size: 0.7rem;
    }

    .features {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-tag {
        font-size: 0.68rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .section-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .features-list {
        gap: 10px;
    }

    .features-list li {
        font-size: 0.82rem;
        padding: 4px 0 4px 22px;
    }

    .features-list li::before {
        left: 0;
        top: 4px;
        font-size: 0.75rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .modal-content {
        padding: 32px 20px;
        width: 94%;
    }

    .modal-content h3 {
        font-size: 1.2rem;
    }

    .modal-content p {
        font-size: 0.82rem;
    }

    .modal-close {
        padding: 12px 28px;
        font-size: 0.82rem;
    }
}


@media (max-width: 375px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 1.5rem;
    }


    .hero-form {
        padding: 20px 14px;
    }

    .form-title {
        font-size: 1.15rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        padding: 11px 12px 11px 36px;
        font-size: 0.82rem;
    }

    .form-submit {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-top: 10px;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .hero-form-wrapper {
        order: 2;
    }

    .hero-title {
        font-size: 1.4rem;
    }


    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .hero-form {
        padding: 16px 14px;
        gap: 8px;
    }

    .form-header {
        margin-bottom: 4px;
    }

    .form-title {
        font-size: 1rem;
    }

    .form-subtitle {
        font-size: 0.7rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        padding: 8px 12px 8px 36px;
        font-size: 0.78rem;
    }

    .form-submit {
        padding: 10px 16px;
        font-size: 0.78rem;
    }

    .features {
        padding: 40px 0;
    }
}