/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* ===== ORBS ===== */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: -80px;
    left: -60px;
    animation: orbMove1 3s ease-in-out infinite;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: #ec4899;
    top: 20px;
    right: 10%;
    animation: orbMove2 4s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: #10b981;
    bottom: -40px;
    left: 25%;
    animation: orbMove3 4s ease-in-out infinite;
}

.hero-orb-4 {
    width: 220px;
    height: 220px;
    background: #f59e0b;
    bottom: -60px;
    right: 20%;
    animation: orbMove4 3.5s ease-in-out infinite;
}

.hero-orb-5 {
    width: 180px;
    height: 180px;
    background: #3b82f6;
    top: 40%;
    left: 45%;
    animation: orbMove5 4s ease-in-out infinite;
}

.hero-orb-6 {
    width: 160px;
    height: 160px;
    background: #a855f7;
    top: 30%;
    right: 5%;
    animation: orbMove6 4s ease-in-out infinite;
}

@keyframes orbMove1 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(80px, 40px); }
    50%  { transform: translate(60px, 100px); }
    75%  { transform: translate(-40px, 80px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes orbMove2 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(-70px, 50px); }
    50%  { transform: translate(-100px, -40px); }
    75%  { transform: translate(40px, -60px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes orbMove3 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(60px, -80px); }
    50%  { transform: translate(-50px, -60px); }
    75%  { transform: translate(-80px, 40px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes orbMove4 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(-80px, -50px); }
    50%  { transform: translate(40px, -90px); }
    75%  { transform: translate(70px, 50px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes orbMove5 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(90px, -60px); }
    50%  { transform: translate(50px, 80px); }
    75%  { transform: translate(-60px, 50px); }
    100% { transform: translate(0px, 0px); }
}

@keyframes orbMove6 {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(-60px, 80px); }
    50%  { transform: translate(70px, 60px); }
    75%  { transform: translate(50px, -70px); }
    100% { transform: translate(0px, 0px); }
}

/* ===== SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* ===== SLIDE ===== */
.hero-slide {
    display: none;
    min-height: 580px;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 64px;
    padding-bottom: 80px;
    width: 100%;
}

/* ===== HERO CONTENT (LEFT) ===== */
.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

/* ===== CTA BUTTONS ===== */
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    transition: background var(--transition), transform var(--transition);
}

.hero-btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-btn-primary:hover svg {
    transform: translateX(3px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
    transition: background var(--transition), transform var(--transition);
}

.hero-btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ===== HERO IMAGE (RIGHT) ===== */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--radius-xl);
}

.hero-image-placeholder {
    width: 100%;
    max-width: 460px;
    height: 340px;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed #b5d4f4;
}

.hero-image-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.hero-image-placeholder p {
    font-size: 13px;
    color: var(--primary);
    opacity: 0.6;
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5d9ee;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--text);
}

.slider-arrow:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.slider-arrow:hover svg {
    color: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-slide.active .hero-content {
    animation: heroFadeIn 0.5s ease forwards;
}

.hero-slide.active .hero-image {
    animation: heroFadeIn 0.5s ease 0.1s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-slide-inner { gap: 40px; }
    .hero-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .hero-slide { min-height: auto; }

    .hero-slide-inner {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 80px;
        gap: 32px;
        text-align: center;
    }

    .hero-content { max-width: 100%; }
    .hero-btns { justify-content: center; }

    .hero-image {
        max-width: 100%;
        width: 100%;
    }

    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }

    .hero-orb-1 { width: 150px; height: 150px; }
    .hero-orb-2 { width: 120px; height: 120px; }
    .hero-orb-3 { width: 100px; height: 100px; }
    .hero-orb-4 { width: 110px; height: 110px; }
    .hero-orb-5 { width: 90px;  height: 90px;  }
    .hero-orb-6 { width: 80px;  height: 80px;  }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    .hero-badge { font-size: 11px; }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-orb-4,
    .hero-orb-5 { display: none; }
}