header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 35, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    transition: var(--transition);
}

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 70px;
    height: 70px;
    display: block;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    transition: var(--transition);
}

.logo-container:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.8)) hue-rotate(45deg) brightness(1.2);
    transform: none;
    animation: logo-color-change 3s ease-in-out infinite;
}

@keyframes logo-color-change {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.8));
    }
    33% {
        filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.8));
    }
    66% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

.tagline {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.header-nav {
    display: flex;
    gap: 1rem;
}

/* Улучшенный Main */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logo-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo {
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #e2e8f0;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    margin: 2rem auto;
    color: #10b981;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.security-badge:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

/* Улучшенные Features */
.features {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    flex: 0 1 250px;
    min-width: 300px; 
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
    animation: slideUpFadeIn 0.6s ease forwards;
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.feature-item:hover p {
    opacity: 1;
}

/* Улучшенные Services Section */
.services-section {
    padding: 6rem 0;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    letter-spacing: 1px;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-decoration: none;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.6s ease;
    z-index: -1;
}

.tab-btn.active {
    color: white;
    border-color: transparent;
}

.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-img {
    height: 200px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-img i {
    transition: all 0.5s ease;
    color: white;
}

.service-card:hover .service-img i {
    animation: float-icon-hover 2s ease-in-out;
    color: #ffd700;
}

.service-card:nth-child(1) .service-img i {
    animation-delay: 0s;
}
.service-card:nth-child(2) .service-img i {
    animation-delay: 0.2s;
}
.service-card:nth-child(3) .service-img i {
    animation-delay: 0.4s;
}

@keyframes float-icon-hover {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
    }
    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.15);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.05);
    }
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    flex-grow: 1;
    opacity: 0.9;
}

/* Улучшенные кнопки */
.btn-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    width: fit-content;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.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.6s ease;
}

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

.btn-hover {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: fit-content;
    font-size: 0.9rem;
}

.action-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Улучшенные статистики */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.stat-item:hover .stat-label {
    opacity: 1;
    color: white;
}

/* Улучшенные Innovations Section */
.innovations-section {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.05), transparent 70%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.innovation-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.innovation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.innovation-card:hover::after {
    opacity: 1;
}

.innovation-card:hover {
    transform: translateY(-15px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.1) rotate(10deg);
}

.innovation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.innovation-card p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.innovation-features span {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.innovation-features span:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

footer {
    background: rgba(10, 14, 35, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

/* Добавляем небольшой градиент для глубины */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.footer-content .logo-image {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    transition: var(--transition);
}

.footer-content:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.8)) hue-rotate(45deg) brightness(1.2);
    transform: rotate(-5deg);
    animation: logo-color-change 3s ease-in-out infinite;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
    transition: var(--transition);
}

.footer-info p:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Анимации для табов */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-content.active {
    display: block;
}

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

/* Анимация появления элементов */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация чисел статистики */
.stat-number {
    animation: countUp 2s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-logo {
        max-width: 600px;
    }
    .section-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 3rem 0;
    }
    .hero-logo {
        max-width: 500px;
    }
    .services-grid,
    .innovations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    main {
        padding: 2rem 1rem;
    }
    header {
        padding: 1rem;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .header-nav {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .header-nav .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .hero {
        padding: 2rem 0;
    }
    .hero-logo {
        max-width: 300px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
    .services-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    .services-grid,
    .innovations-grid,
    .features {
        grid-template-columns: 1fr;
    }
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        min-width: 250px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem;
    }
    .logo-image {
        width: 56px;
    }
    .tagline {
        font-size: 1rem;
        line-height: 1.4;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .service-card,
    .innovation-card {
        padding: 1.5rem;
    }
    .hero-logo {
        max-width: 250px;
    }
    .btn {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }
    .footer-content {
        gap: 1rem;
    }
    .footer-info p {
        font-size: 0.95rem;
        gap: 0.6rem;
    }
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
}

/* ========== CTA ОТКРЫТИЯ СЧЁТА ========== */
.account-cta {
    position: sticky;
    bottom: 24px;
    z-index: 50;
    margin: 3rem 0 4rem;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.account-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 1.6rem 1.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(6, 182, 212, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
}

.account-cta-text h3 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.account-cta-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
}

.account-cta-note {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #f8fafc;
    opacity: 0.85;
}

.account-cta-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 35, 0.6);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.account-cta-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.account-cta.is-hidden {
    display: none;
}

.account-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .account-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: min(420px, 100%);
    }

    .account-cta-text h3 {
        font-size: 1.4rem;
    }

    .account-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .account-cta-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-page {
        padding-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .account-cta-text p {
        font-size: 0.9rem;
    }
}

.section-title.no-underline .title-decoration {
    display: none;
}

