/* ============================================
   GADANIE - Магический лендинг
   Premium CSS с анимациями и эффектами
   ============================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Цветовая палитра - Розово-магическая светлая тема */
    --color-primary: #E91E8C;
    --color-primary-light: #FF6BB3;
    --color-primary-dark: #B8157A;
    --color-primary-glow: rgba(233, 30, 140, 0.4);

    --color-secondary: #9C27B0;
    --color-secondary-light: #BA68C8;

    --color-accent-gold: #FFD700;
    --color-accent-gold-light: #FFED4A;

    --color-bg-main: #FFF5F8;
    --color-bg-section: #FFFFFF;
    --color-bg-card: #FFFFFF;

    --color-text-primary: #2D1B4E;
    --color-text-secondary: #6B5B7A;
    --color-text-muted: #9D8BA7;

    --color-white: #FFFFFF;
    --color-black: #1A0A2E;

    /* Градиенты */
    --gradient-hero: linear-gradient(135deg, #FFF5F8 0%, #FFE4EC 30%, #F8E1FF 70%, #E8E0FF 100%);
    --gradient-primary: linear-gradient(135deg, #FF6BB3 0%, #E91E8C 50%, #9C27B0 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 248, 0.95) 100%);
    --gradient-glow: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);

    /* Размеры */
    --container-width: 1320px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Тени */
    --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.08);
    --shadow-md: 0 8px 24px rgba(45, 27, 78, 0.12);
    --shadow-lg: 0 16px 48px rgba(45, 27, 78, 0.16);
    --shadow-glow: 0 0 40px var(--color-primary-glow);

    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== MAGIC PARTICLES ==================== */
.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 6px var(--color-accent-gold);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    z-index: 2;
}

/* Фоновые орбы */
.hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #DDA0DD 0%, #BA55D3 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    top: 50%;
    left: 30%;
    opacity: 0.3;
    animation-delay: -14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Hero контейнер */
.hero__container {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 1;
}

/* Контент */
.hero__content {
    flex: 1;
    max-width: 640px;
}

/* Мистический символ */
.hero__mystic-symbol {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hero__moon-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    animation: moonGlow 3s ease-in-out infinite;
}

@keyframes moonGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px var(--color-primary-glow));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--color-primary-glow));
    }
}

.hero__stars {
    position: absolute;
    width: 120px;
    height: 120px;
}

.hero__star {
    position: absolute;
    font-size: 14px;
    color: var(--color-accent-gold);
    animation: starTwinkle 2s ease-in-out infinite;
}

.hero__star--1 {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.hero__star--2 {
    top: 30%;
    right: 0;
    animation-delay: 0.5s;
}

.hero__star--3 {
    bottom: 0;
    left: 30%;
    animation-delay: 1s;
}

.hero__star--4 {
    top: 40%;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Заголовок */
.hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Описание */
.hero__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

/* CTA кнопки */
.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hero__button--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md), 0 4px 20px var(--color-primary-glow);
}

.hero__button--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 8px 32px var(--color-primary-glow);
}

.hero__button--primary:hover::before {
    opacity: 1;
}

.hero__button--primary:hover .hero__button-icon {
    transform: translateX(4px);
}

.hero__button-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.hero__button--secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid rgba(233, 30, 140, 0.2);
    box-shadow: var(--shadow-sm);
}

.hero__button--secondary:hover {
    background: rgba(233, 30, 140, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Статистика */
.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Визуальная часть (Магическая сфера) */
.hero__visual {
    position: relative;
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Внешнее свечение */
.hero__orb-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(233, 30, 140, 0.3) 0%,
            rgba(156, 39, 176, 0.2) 40%,
            transparent 70%);
    animation: orbGlowPulse 4s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes orbGlowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Орбиты с символами */
.hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.hero__orbit--outer {
    width: 380px;
    height: 380px;
    animation: orbitRotate 25s linear infinite;
}

.hero__orbit--inner {
    width: 280px;
    height: 280px;
    animation: orbitRotate 18s linear infinite reverse;
    border-color: rgba(233, 30, 140, 0.2);
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Символы на орбите */
.hero__orbit-symbol {
    position: absolute;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: orbitRotate 25s linear infinite reverse;
}

.hero__orbit-symbol svg {
    width: 20px;
    height: 20px;
    color: #1A0A2E;
}

.hero__orbit-symbol--1 {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__orbit-symbol--2 {
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
}

.hero__orbit-symbol--3 {
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__orbit-symbol--4 {
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
}

/* Точки на внутренней орбите */
.hero__orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-primary-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-primary-glow);
    animation: orbitRotate 18s linear infinite;
}

.hero__orbit-dot--1 {
    top: -5px;
    left: 50%;
}

.hero__orbit-dot--2 {
    bottom: 20%;
    right: -5px;
}

.hero__orbit-dot--3 {
    bottom: 20%;
    left: -5px;
}

/* Магический шар */
.hero__magic-orb {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(26, 10, 46, 0.95) 0%,
            rgba(45, 27, 78, 0.9) 50%,
            rgba(26, 10, 46, 0.95) 100%);
    box-shadow:
        0 0 60px rgba(233, 30, 140, 0.4),
        0 0 120px rgba(156, 39, 176, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: orbFloat 6s ease-in-out infinite;
    overflow: hidden;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Поверхность шара - блики */
.hero__orb-surface {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}

.hero__orb-shine {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 30%;
    height: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(8px);
}

.hero__orb-reflection {
    position: absolute;
    bottom: 15%;
    right: 20%;
    width: 15%;
    height: 10%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(4px);
}

/* Ядро шара - туманность */
.hero__orb-core {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    overflow: hidden;
}

.hero__orb-nebula {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(ellipse at 30% 30%,
            rgba(233, 30, 140, 0.6) 0%,
            rgba(156, 39, 176, 0.4) 30%,
            transparent 70%);
    animation: nebulaSwirl 8s ease-in-out infinite;
}

.hero__orb-nebula--2 {
    background: radial-gradient(ellipse at 70% 70%,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 107, 179, 0.3) 30%,
            transparent 70%);
    animation: nebulaSwirl 10s ease-in-out infinite reverse;
    animation-delay: -3s;
}

@keyframes nebulaSwirl {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Глаз внутри шара */
.hero__orb-eye {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero__eye-svg {
    width: 80px;
    height: 40px;
    color: var(--color-accent-gold);
    opacity: 0.9;
    animation: eyePulse 4s ease-in-out infinite;
}

.hero__eye-pupil {
    animation: pupilLook 5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes eyePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes pupilLook {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Мерцающие звёзды (SVG) */
.hero__sparkle {
    position: absolute;
    color: var(--color-accent-gold);
    animation: sparkleTwinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 4px var(--color-accent-gold));
}

.hero__sparkle--1 {
    width: 16px;
    height: 16px;
    top: 5%;
    right: 15%;
    animation-delay: 0s;
}

.hero__sparkle--2 {
    width: 12px;
    height: 12px;
    top: 20%;
    left: 5%;
    animation-delay: 0.5s;
}

.hero__sparkle--3 {
    width: 20px;
    height: 20px;
    bottom: 25%;
    right: 5%;
    animation-delay: 1s;
}

.hero__sparkle--4 {
    width: 10px;
    height: 10px;
    bottom: 10%;
    left: 20%;
    animation-delay: 1.5s;
}

.hero__sparkle--5 {
    width: 14px;
    height: 14px;
    top: 40%;
    right: 0;
    animation-delay: 2s;
}

@keyframes sparkleTwinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Волна-переход */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: var(--color-bg-section);
    z-index: 2;
}

.hero__wave svg {
    width: 100%;
    height: 100%;
}

/* ==================== TELLERS SECTION ==================== */
.tellers {
    position: relative;
    padding: 60px 0 120px;
    background: var(--color-bg-section);
    z-index: 3;
}

.tellers__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Хедер секции */
.tellers__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.tellers__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tellers__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.tellers__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Слайдер обёртка */
.tellers__slider-wrapper {
    position: relative;
}

.tellers__slider {
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
    cursor: grab;
}

.tellers__slider:active {
    cursor: grabbing;
}

.tellers__track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Карточка гадалки */
.teller-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.teller-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.teller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.teller-card:hover::before {
    opacity: 1;
}

/* Изображение */
.teller-card__image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.teller-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.teller-card:hover .teller-card__image {
    transform: scale(1.05);
}

/* Статус */
.teller-card__status {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.teller-card__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.teller-card__status--online .teller-card__status-dot {
    background: #22C55E;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.teller-card__status--busy .teller-card__status-dot {
    background: #F59E0B;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Контент карточки */
.teller-card__content {
    padding: 24px;
}

.teller-card__name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.teller-card__specialty {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.teller-card__tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(156, 39, 176, 0.08) 100%);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.teller-card__bio {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.teller-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(45, 27, 78, 0.08);
}

.teller-card__rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.teller-card__stars {
    color: var(--color-accent-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.teller-card__reviews {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.teller-card__button {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px var(--color-primary-glow);
}

.teller-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-glow);
}

/* Навигация слайдера */
.tellers__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.tellers__nav-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid rgba(233, 30, 140, 0.2);
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tellers__nav-btn svg {
    width: 24px;
    height: 24px;
}

.tellers__nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.tellers__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.tellers__nav-btn:disabled:hover {
    background: var(--color-white);
    border-color: rgba(233, 30, 140, 0.2);
    color: var(--color-primary);
    transform: none;
}

/* Пагинация */
.tellers__pagination {
    display: flex;
    gap: 8px;
}

.tellers__pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.2);
    transition: all var(--transition-base);
    cursor: pointer;
}

.tellers__pagination-dot:hover {
    background: rgba(233, 30, 140, 0.4);
}

.tellers__pagination-dot--active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .teller-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 992px) {
    .hero__container {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 80px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        width: 320px;
        height: 320px;
    }

    .hero__orb-glow {
        width: 280px;
        height: 280px;
    }

    .hero__orbit--outer {
        width: 300px;
        height: 300px;
    }

    .hero__orbit--inner {
        width: 220px;
        height: 220px;
    }

    .hero__magic-orb {
        width: 160px;
        height: 160px;
    }

    .hero__orbit-symbol {
        width: 28px;
        height: 28px;
    }

    .hero__orbit-symbol svg {
        width: 16px;
        height: 16px;
    }

    .teller-card {
        flex: 0 0 calc(50% - 12px);
    }

    .tellers__container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero__visual {
        display: none;
    }

    .teller-card {
        flex: 0 0 280px;
    }

    .tellers {
        padding: 60px 0 80px;
    }

    .tellers__header {
        margin-bottom: 40px;
    }

    .tellers__nav {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .hero__container {
        padding: 80px 16px 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .teller-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .teller-card__image-wrapper {
        height: 200px;
    }

    .tellers__container {
        padding: 0 16px;
    }
}

/* ==================== SELECTION STYLING ==================== */
::selection {
    background: var(--color-primary-light);
    color: var(--color-white);
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}