* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary: #06b6d4;
    --accent: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    --accent-light: #fbbf24;
    --dark: #0a0e23;
    --light: #f8fafc;
    --gray: #6c757d;
    --gradient: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-dark: linear-gradient(135deg, #6d28d9, #0891b2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background: linear-gradient(135deg, #0a0e23, #1d2b53, #7e2553);
    color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Космический фон  */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d2b53, #7e2553);
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 7s;
    background: linear-gradient(135deg, #7e2553, #ff004d);
}

.shape-3 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 15%;
    animation-delay: 14s;
    background: linear-gradient(135deg, #0a0e23, #1d2b53);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }

    66% {
        transform: translateY(20px) rotate(-5deg) scale(0.95);
    }
}

/* Звезды */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Частицы */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    animation: particle-float 2s infinite linear;
    background-size: cover;
    background-position: center;
    -webkit-filter: drop-shadow(0 0 15px);
    /*box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);*/
    filter: box-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* анимации для частиц */
@keyframes particle-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.2;
    }

    95% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(3n+1) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.particle:nth-child(3n+2) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.particle:nth-child(3n+3) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.meteors {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.meteor {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    opacity: 0;
    background-size: cover;
    background-position: center;

}

.meteor:nth-child(3n+1) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.meteor:nth-child(3n+2) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.meteor:nth-child(3n+3) {
    background-image: url('/res/va-bank_logo_mini.png');
}

.meteor::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.meteor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 100, 100, 0), transparent);
}

@keyframes meteor {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(-15deg);
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-150vw) translateY(150vh) rotate(-15deg);
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 35, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
}

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

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

.logo-image {
    width: 60px;
    height: auto;
    display: block;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

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

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

.hero-logo {
    max-width: 800px;
    height: auto;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
    line-height: 1.6;
}


/* Services Section */
.services-section {
    padding: 0px 0 20px 0;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    background-image: var(--gradient);
    color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.section-title p {
    color: white;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.tab-btn.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.service-card:hover .service-img::after {
    transform: translateX(100%);
}

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

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    color: #93c5fd;
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(124, 58, 237, 0.3);
}

.service-content p {
    margin-bottom: 20px;
    color: #cbd5e1;
    line-height: 1.6;
    flex-grow: 1;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* innovations Section */
.innovations-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.innovations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(124, 58, 237, 0) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0) 0%, transparent 50%);
    pointer-events: none;
}

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

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.innovation-card:hover::before {
    left: 100%;
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.innovation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.innovation-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.innovation-features span {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.innovation-features span2 {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

/* Новые карточки */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    width: 100%;
    height: 254px;
    border-radius: 20px;
    padding: 5px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(151, 65, 252, 0.4) 0 25px 50px -10px;
}

.card__content {
    background: rgba(5, 6, 45, 0.9);
    border-radius: 17px;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.heading {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #AF40FF, #00DDEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.card p:not(.heading):not(.card-link) {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.card-link {
    color: #AF40FF !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #AF40FF, #00DDEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 20px 44px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: fit-content;
}

.btn-hover {
    padding: 13px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-hover:hover {
    background: rgba(255, 255, 255, 0.2);
    background: var(--gradient);
    transform: translateY(-3px);
}

.btn-primary {
    width: 200px;
    height: 60px;
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    width: 200px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background-image: var(--accent);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 5px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: rgba(10, 14, 35, 0.3);
    padding: 1rem 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    min-height: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    background: var(--gradient);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
    font-size: 0.9rem;
}

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

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

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

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

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


/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-top: 1rem;
    color: #10b981;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 0.8rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Анимация пульсации иконки */
@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Анимация свечения */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.4);
    }
}

/* Анимация плавающего эффекта */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Анимация градиентной полосы */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

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

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: glow 2s ease-in-out infinite;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, pulseIcon 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    animation: gradientShift 1.5s ease infinite, pulseIcon 1s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #60a5fa;
    transform: translateY(-2px);
}

.feature-item p {
    color: #e2e8f0;
    line-height: 1.4;
    font-size: 0.8rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-item:hover p {
    opacity: 1;
    transform: translateY(-1px);
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item {
    animation: float 4s ease-in-out infinite;
}

.feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) {
    animation-delay: 1s;
}

.feature-item:nth-child(4) {
    animation-delay: 1.5s;
}

.feature-item:nth-child(5) {
    animation-delay: 2s;
}

.feature-item:active {
    animation: clickSpin 0.6s ease;
}

@keyframes clickSpin {
    0% {
        transform: scale(0.95) rotate(0deg);
    }

    50% {
        transform: scale(1.05) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }


    .features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .feature-item {
        padding: 1rem 0.5rem;
        animation: float 5s ease-in-out infinite;
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-item p {
        font-size: 0.75rem;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    main {
        padding: 1rem;
    }

    header {
        padding: 1rem;
    }

    .hero-logo {
        max-width: 200px;
    }

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

    .services-tabs {
        flex-direction: column;
        border-radius: 20px;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .services-section {
        padding: 30px 0 10px 0;
    }

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

    .innovations-section {
        padding: 40px 0;
    }

    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .innovation-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    body {
        padding: 1rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: 150px;
    }
}

.actions-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    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;
}

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

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

.action-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.action-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.metrics-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
    text-align: center;
    padding: 15px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background-image: var(--accent);
    color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.9rem;
}