* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6B2D7E;
    --primary-pink: #E91E8C;
    --gradient-main: linear-gradient(135deg, #6B2D7E 0%, #E91E8C 100%);
    --gradient-reverse: linear-gradient(135deg, #E91E8C 0%, #6B2D7E 100%);
    --dark-bg: #0F0A1A;
    --dark-purple: #1A0F2E;
    --light-bg: #FFFFFF;
    --text-dark: #1A0F2E;
    --text-light: #FFFFFF;
    --accent-cyan: #00D9FF;
    --accent-yellow: #FFD600;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

body {
    font-family: "Onest", sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-main);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-reverse);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-cyan), var(--primary-pink));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 80px) scale(0.9);
    }
    75% {
        transform: translate(70px, -50px) scale(1.05);
    }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(233, 30, 140, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 30, 140, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    backdrop-filter: blur(20px);
    background: rgba(15, 10, 26, 0.8);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    font-family: "Onest", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-domain {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.cta-header {
    padding: 0.9rem 2rem;
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: "Onest", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-header:hover::before {
    left: 100%;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.5);
}

/* Hero Section */
.hero {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    padding: 4rem 5% 4rem;
    position: relative;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;


}

.lang-button {
    height: 40px;
    width: 40px;
    background: linear-gradient(to right, #68226C 0%, #851B6B 30%, #A2156B 70%, #BE0F6B 100%);

    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.lang-button:hover {
    transform: scale(1.1);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-title {
    font-family: "Onest", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-cyan) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.hero-cta-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    padding: 1.2rem 3rem;
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '→';
    position: absolute;
    right: 2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(233, 30, 140, 0.6);
}

.btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-family: "Onest", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-pink);
    background: rgba(233, 30, 140, 0.1);
    transform: translateY(-3px);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

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

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

.stat-number {
    font-family: "Onest", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
}

.floating-card {
    position: absolute;
    /*background: rgba(30, 20, 45, 0.85);*/
    /*backdrop-filter: blur(20px);*/
    /*border: 1px solid rgba(233, 30, 140, 0.2);*/
    border-radius: 25px;
    padding: 2rem;
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);*/
    animation: floatCard 6s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

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

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

.card-3 {
    bottom: 15%;
    left: 15%;
    width: 200px;
    animation-delay: 4s;
}

.person-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    font-family: "Onest", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Features Section */
.features-section {
    padding: 4rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
    animation: fadeIn 0.8s ease-out;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.section-title {
    font-family: "Onest", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: 0;
}

.section-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.features-grid {
    max-width: 1400px;
    margin: 40px auto;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 30px 60px rgba(233, 30, 140, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}

.feature-title {
    font-family: "Onest", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 1.05rem;
    position: relative;
}

/* Numbers Section */
.numbers-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(107, 45, 126, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%);
    position: relative;
}

.numbers-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.number-card {
    text-align: center;
    padding: 2rem;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.number-value {
    font-family: "Onest", sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.number-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 4rem 5%;
}

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

.process-steps {
    display: grid;
    gap: 15px;
    margin-top: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: start;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--primary-pink), transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-main);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Onest", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.4);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-pink);
}

.step-title {
    font-family: "Onest", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1.1rem;
}

.step-list {
    list-style: none;
    /*margin-top: 1.5rem;*/
}

.step-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient-main);
    border-radius: 40px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(233, 30, 140, 0.5);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: "Onest", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn-cta-large {
    padding: 1.5rem 4rem;
    background: white;
    color: var(--primary-purple);
    border: none;
    border-radius: 50px;
    font-family: "Onest", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 20px 5%;
    /*border-top: 1px solid var(--glass-border);*/
    background: rgba(15, 10, 26, 0.8);
    /*backdrop-filter: blur(20px);*/
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    /*grid-template-columns: 2fr 1fr 1fr 1fr;*/
    gap: 4rem;
}

.footer-brand {
    font-family: "Onest", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*margin-bottom: 1rem;*/
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    /*margin-bottom: 2rem;*/
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.footer-links li {
    /*margin-bottom: 1rem;*/
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    max-width: 1400px;
    margin: 15px auto 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .container-header {
        max-width: 1200px;
    }

    .hero-visual {
        order: -1;
    }

    .visual-container {
        height: 400px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .cta-header {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 15px;
        text-align: center;
    }

    .feature-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .numbers-grid {
        grid-template-columns: 2fr;
        gap: 10px;
    }

    .number-value {
        margin-bottom: 10px;
        line-height: 1;
        font-size: 30px;
    }

    .number-label {
        line-height: 1;
        font-size: 20px;
    }

    .number-card {
        padding: 10px;
    }

    .step {
        grid-template-columns: 80px 1fr;
        gap: 10px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .step-content {
        padding: 2rem;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        font-size: 18px;
        height: 60px;
        line-height: 1!important;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tech particles decoration */
.tech-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 10s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -50px);
    }
    50% {
        transform: translate(-50px, -100px);
    }
    75% {
        transform: translate(150px, 50px);
    }
}


.hero-visual {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.products-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.product-item {
    position: absolute;
    opacity: 0;
    animation: fadeInFloat 1s ease-out forwards;
}

.product-item svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(168, 85, 247, 0.3));
}

/* Poziționare produse */
.product-laptop {
    top: 10%;
    left: 10%;
    width: 150px;
    animation-delay: 0.2s;
}

.product-headphones {
    top: 5%;
    right: 15%;
    width: 120px;
    animation-delay: 0.4s;
}

.product-watch {
    top: 35%;
    left: 5%;
    width: 100px;
    animation-delay: 0.6s;
}

.product-phone {
    top: 30%;
    right: 10%;
    width: 90px;
    animation-delay: 0.8s;
}

.product-camera {
    bottom: 25%;
    left: 15%;
    width: 140px;
    animation-delay: 1s;
}

.product-cart {
    bottom: 30%;
    right: 20%;
    width: 110px;
    animation-delay: 1.2s;
}

.product-coffee {
    bottom: 10%;
    left: 25%;
    width: 95px;
    animation-delay: 1.4s;
}

.product-plant {
    bottom: 5%;
    right: 15%;
    width: 100px;
    animation-delay: 1.6s;
}

/* Animații */
@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating animation pentru produse */
.product-laptop {
    animation: fadeInFloat 1s ease-out 0.2s forwards, float 3s ease-in-out 1.2s infinite;
}

.product-headphones {
    animation: fadeInFloat 1s ease-out 0.4s forwards, float 3.5s ease-in-out 1.4s infinite;
}

.product-watch {
    animation: fadeInFloat 1s ease-out 0.6s forwards, float 4s ease-in-out 1.6s infinite;
}

.product-phone {
    animation: fadeInFloat 1s ease-out 0.8s forwards, float 3.2s ease-in-out 1.8s infinite;
}

.product-camera {
    animation: fadeInFloat 1s ease-out 1s forwards, float 3.8s ease-in-out 2s infinite;
}

.product-cart {
    animation: fadeInFloat 1s ease-out 1.2s forwards, float 3.3s ease-in-out 2.2s infinite;
}

.product-coffee {
    animation: fadeInFloat 1s ease-out 1.4s forwards, float 4.2s ease-in-out 2.4s infinite;
}

.product-plant {
    animation: fadeInFloat 1s ease-out 1.6s forwards, float 3.6s ease-in-out 2.6s infinite;
}

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

/* Hover effects */
.product-item:hover {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease;
    z-index: 10;
}

.product-item:hover svg {
    filter: drop-shadow(0 15px 40px rgba(168, 85, 247, 0.5));
}

/* Responsive */
@media (max-width: 1024px) {
    .products-illustration {
        max-width: 400px;
    }

    .product-item {
        transform: scale(0.8);
    }
}

.mobile-img, .mobile-img-div {
    display: none;
}

@media (max-width: 768px) {



    .mobile-img-div {
        display: block;
    }

    .mobile-img {
        display: block;
        max-width: 100%;
        padding: 10px;
    }

    .numbers-section {
        padding: 25px 10px;
    }

    .features-grid {
        margin-top: 20px;
        margin-bottom: 0;
        gap: 15px;
    }

    .stat-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 45px;
        gap: 1.5rem;

    }

    .stat-label {
        order: 1;
        font-size: 20px;
        line-height: 1;
    }

    .stat-number {
        order: 2;
        line-height: 1;
        margin-bottom: 0;
        font-size: 30px;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-cta-group {

        margin-bottom: 0;
    }

    .container-header a {
        line-height: 1;
    }

    .hero {
        padding: 15px 10px 25px 10px;
        max-height: unset;
        min-height: unset;
    }

    .hero-content {
        align-items: unset;
    }

    .hero-cta-group {
        margin-top: 15px;
        order: 2;
    }

    .stats-grid {
        order: 1;
    }

    .hero-text {
        display: grid;
    }

    .hero-visual {
        display: none;
    }

    .features-section {
        padding: 25px 10px;
        position: relative;
    }

    .section-tag {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .section-title {
        line-height: 1;
        margin-bottom: 10px;
        font-size: 26px;
    }

    .section-description {
        line-height: 1.3;
    }

    .hero-subtitle {
        line-height: 1.3;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .section-header {
        margin-bottom: 15px;
    }

    .floating-card-mobile {

        animation: floatCard 5s infinite ease-in-out;
    }

    .process-section {
        padding: 25px 10px;
    }

    .step::after {
        left: 40px;
        top: 80px;
    }

    .step-description {
        line-height: 1.3;
    }

    .process-steps {
        margin-top: 15px;
    }

    .cta-section {
        padding: 25px 10px;
    }

    .cta-container {
        padding: 15px;
        border-radius: 25px;

    }

    .cta-content {
        display: grid !important;
        justify-content: center;
        align-items: center;
    }

    .btn-cta-large {
        line-height: 1;
        border-radius: 20px;
        margin-bottom: 5px;
        height: 50px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-title {
        line-height: 1.3;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 22px;
    }

    .cta-description {
        line-height: 1.3;
        margin-bottom: 20px;
    }

    footer {
        padding: 15px 10px;
    }


    .footer-links {
        display: grid;
        justify-content: center;
        text-align: center;
        gap: 5px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-links li {
        /*margin-bottom: 1rem;*/
    }

    .container-header {
        padding: 10px;
    }

    .footer-bottom {
        line-height: 1.3;
    }

    .hero-subtitle {
        text-align: center;
    }

    p {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .modal-header h2 {
        font-size: 26px !important;
        line-height: 1.2;
    }

    .modal-header {
        margin-bottom: 15px !important;
        display: grid;!important;
    }

    .form-group {
        margin-bottom: 10px !important;
    }

    .form-row {
        gap: 0 !important;
    }

    .form-group label {
        margin-bottom: 5px !important;
        line-height: 1 !important;
        font-size: 16px !important;
    }

    .modal-content {
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .checkbox-group label {
        line-height: 1.1 !important;
    }

    .mobile-cerere-buton {
        font-size: 14px;
        height: 50px;
        line-height: 1;
        border-radius: 16px;
        padding: 0!important;
    }

    .step-list li {
        line-height: 1.2;
    }
    ol, ul {
        padding: 0!important;
    }
}

.topmag-link {
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(
        to right,
        rgb(104, 34, 108) 0%,
        rgb(133, 27, 107) 30%,
        rgb(162, 21, 107) 70%,
        rgb(190, 15, 107) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;}
