/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #051360;
    --secondary: #EC4899;
    --accent: #3B82F6;
    --dark: #1F2937;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --gray: #6B7280;
    --cream: #f2efe9;
    --gradient-1: linear-gradient(135deg, #48A6A7 0%, #025c89 100%);
    --gradient-2: linear-gradient(135deg, #48a9c6 0%, #48A6A7 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--cream) !important;
    overflow-x: hidden;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== PARTICLES BACKGROUND ==================== */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand .logo {
    font-weight: 700;
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brand .logo:hover {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 12px rgba(72, 166, 167, 0.2));
}

/* Logo image + text alignment */
.brand .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0px;
}

.brand .logo-text {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand .logo:hover .logo-img, .brand .logo:hover .logo-text {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 12px rgba(72, 166, 167, 0.2));
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    color: #388485;
    text-decoration: none;
    font-weight: 650;
    padding: 9px 33px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid #48A6A7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: linear-gradient(135deg, #48A6A7 0%, #025c89 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 166, 167, 0.35);
    border-color: transparent;
}

.btn-signup {
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 154, 139, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 139, 107, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== USER DROPDOWN ==================== */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-btn {
    background: linear-gradient(135deg, #48A6A7 0%, #025c89 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(72, 166, 167, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    padding: 10px 22px;
    cursor: pointer;
    border: 0;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.user-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.user-btn:hover::before {
    left: 100%;
}

.user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 166, 167, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

.user-btn:active {
    transform: translateY(0);
}

.user-btn i {
    font-size: 18px;
    color: white;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.user-btn:hover .arrow {
    transform: translateY(2px);
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(13, 38, 62, 0.12);
    min-width: 180px;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 60;
    padding: 8px;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 6px rgba(13, 38, 62, 0.04);
    border-radius: 2px;
}

.dropdown-menu .logout-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    color: #1F2937;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}


.dropdown-menu .logout-btn:hover {
    background: linear-gradient(135deg, rgba(72, 166, 167, 0.1) 0%, rgba(2, 92, 137, 0.1) 100%);
    color: #025c89;
    transform: translateX(4px);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-btn {
    width: 100%;
    text-align: center;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(2, 159, 138, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideDown 0.6s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease;
    color: #264f73;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: slideUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideUp 1.2s ease;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(3, 140, 119, 0.3);
    white-space: nowrap;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 138, 121, 0.4);
}

.cta-secondary {
    background: var(--cream);
    color: #337678;
    border: 3px solid #337678;
}

.cta-secondary:hover {
    background: var(--gradient-1);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 138, 121, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeIn 1.5s ease;
}

.stat-mini {
    text-align: center;
    background: var(--cream)!important;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.hero-right {
    position: relative;
    animation: fadeIn 1s ease;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 5;
}

.card-icon {
    font-size: 24px;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* ==================== SECTION COMMON ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 137, 116, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* ==================== HOW IT WORKS ==================== */
.how {
    padding: 100px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-illustration {
    position: relative;
}

.how-illustration img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
    margin-bottom: 58px;
}

.glow-effect {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
}

.step-content {
    color: var(--gray);
    line-height: 1.8;
    padding-left: 70px;
}

.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-1);
    width: 0;
    transition: width 0.6s ease;
}

.step:hover .step-progress {
    width: 100%;
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.comparison-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: white;
    padding: 28px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.comparison-card:hover::before {
    transform: scaleX(1);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.chatbot-card::before {
    background: var(--gradient-1);
}

.tanya-card::before {
    background: var(--gradient-1);
}

.card-icon-large {
    font-size: 44px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    margin-left: 160px;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 18px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.comparison-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.comparison-btn:hover::after {
    left: 120%;
}

.comparison-btn span,
.comparison-btn svg {
    position: relative;
    z-index: 1;
}

.btn-chatbot {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 223, 221, 0.3);
}

.btn-chatbot:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 223, 221, 0.3);
}

.btn-tanya {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(108, 223, 221, 0.3);
}

.btn-tanya:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 223, 221, 0.33);
}

.comparison-divider {
    display: none !important;
}

/* ==================== NUMBERS / STATS ==================== */
.numbers {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--cream);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-value::after {
    content: '+';
    margin-left: 5px;
}

.stat-desc {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* ==================== ABOUT ==================== */
.about-section {
    padding: 100px 0;
}

.about-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
}

.about-icon {
    font-size: 64px;
    margin-bottom: 30px;
}

.about-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

/* ==================== WHY ALCHEMY ==================== */
.why-section {
    padding: 100px 0;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.why-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
}

/* ==================== TEAM ==================== */
.team-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.team-slider {
    position: relative;
    margin-top: 60px;
}

.team-wrapper::-webkit-scrollbar {
    display: none;
}

/* marquee animation */
@keyframes slideLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.team-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;   /* supaya panjang kontennya mengikuti semua team-card */
    animation: slideLoop 20s linear infinite;
}


.team-card {
    min-width: 280px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);

    animation: slideInLeft 1s ease forwards;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-2);
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 154, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--gray);
    font-size: 14px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* ==================== CTA BLOCK BOTTOM ==================== */
.cta-block-b {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
}

.cta-block-b::before {
    content: '';
    position: absolute;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-block-b::after {
    content: '';
    position: absolute;
    bottom: -50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.cta-inner-b {
    background: var(--gradient-1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-action-b {
    min-width: fit-content;
    max-width: 600px;
}

.cta-content-b h3 {
    font-size: 36px;
    color: var(--cream);
    margin-bottom: 15px;
}

.cta-content-b p {
    font-size: 18px;
    color: var(--cream);
}

.cta-large-b {
    background: var(--cream);
    color: var(--gradient-1);
    padding: 18px 20px;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-large-b:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--gradient-1);
    color: var(--cream);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left .logo {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    color: var(--cream);
}

.footer-left p {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-menu h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    font-weight: 500;
}

.footer-contact p {
    color: var(--cream);
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding: 30px 0;
    color: var(--cream);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .auth {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .numbers-grid,
    .why-cards {
        grid-template-columns: 1fr;
    }

    .cta-inner-b {
        flex-direction: column;
        text-align: center;
    }
}
