:root {
    --primary: #0dc4c3; /* Bright cyan/teal */
    --primary-dark: #099b9a;
    --secondary: #fca5a5; /* Salmon/coral pink */
    --accent: #2d2d2d; /* Dark slate */
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-light: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(13, 196, 195, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 196, 195, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -1px;
    background: var(--text-light);
    color: var(--primary);
    padding: 0.2rem 1rem;
    border-radius: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn-primary-outline) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0ab8b7 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-dark) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-content {
    color: var(--text-light);
}

.hero-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.hero-title .highlight {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    background: var(--secondary);
    color: var(--accent);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.hero-features {
    margin-bottom: 3rem;
}

.hero-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-features ul {
    list-style: none;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-features li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.pricing-badge {
    position: absolute;
    top: 20%;
    right: 50%;
    transform: translate(50%, -50%) rotate(-10deg);
    background: var(--accent);
    color: var(--text-light);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    /* Adding the spiky border effect from flyer using clip-path could be complex, 
       a simple scalloped border or just a circle works well for modern UI */
    border: 4px dashed var(--secondary);
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.badge-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin: 5px 0;
}

.badge-price small {
    font-size: 2rem;
}

.badge-sub {
    font-size: 1rem;
    font-weight: 400;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.8;
}

.floating-mockup {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    background: white;
}

.floating-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.m1 {
    width: 450px;
    top: 10%;
    right: 0;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.m2 {
    width: 220px;
    bottom: 5%;
    left: 0;
    animation: float 5s ease-in-out infinite reverse;
    z-index: 4;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: var(--bg-light);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.portfolio-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.card-content p {
    color: #64748b;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #1e293b;
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method .icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 196, 195, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.method:hover .icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.method h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.method p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 196, 195, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        height: 500px;
    }

    .pricing-badge {
        top: 0;
        right: 0;
        transform: translate(20%, -20%) rotate(-10deg);
        width: 140px;
        height: 140px;
    }
    
    .badge-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile view */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .blob {
        width: 350px;
        height: 350px;
    }
    
    .m1 {
        width: 80%;
    }
    
    .m2 {
        width: 40%;
    }
}

/* Legal / RGPD */
.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links .separator {
    margin: 0 10px;
    color: #475569;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #1e293b;
    color: white;
    padding: 15px 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.cookie-content .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.cookie-content .btn-primary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 3D Showcase Section */
.showcase-3d {
    padding: 8rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 196, 195, 0.06) 0%, rgba(248, 250, 252, 0) 60%), #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.showcase-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(13, 196, 195, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.showcase-3d-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.showcase-3d-content {
    position: relative;
    z-index: 2;
}

.showcase-3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 196, 195, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(13, 196, 195, 0.2);
}

.showcase-3d-title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.showcase-3d-text {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.showcase-3d-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.showcase-3d-bullet {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.showcase-3d-bullet-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 196, 195, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(13, 196, 195, 0.1);
}

.showcase-3d-bullet h4 {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.showcase-3d-bullet p {
    color: #64748b;
    font-size: 0.95rem;
}

.showcase-3d-visual {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    overflow: visible;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1rem 1.5rem 1rem;
    position: relative;
}

.carousel-3d-scene {
    width: 100%;
    height: 380px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-3d-track {
    width: 280px;
    height: 360px;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-3d-card {
    position: absolute;
    width: 280px;
    height: 360px;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.45;
    filter: grayscale(60%);
    will-change: transform, opacity;
}

.carousel-3d-card.active {
    opacity: 1;
    filter: grayscale(0%);
    z-index: 10;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(12px);
}

.carousel-3d-card.active .card-glow {
    opacity: 0.35;
}

.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    color: var(--accent);
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-font-smoothing: antialiased;
    transform: translate3d(0, 0, 0);
}

.carousel-3d-card.active:hover .card-inner {
    transform: translateZ(15px) rotateX(4deg) rotateY(-4deg);
    border-color: rgba(13, 196, 195, 0.5);
    box-shadow: 0 20px 45px rgba(13, 196, 195, 0.15);
}

/* Card layout elements */
.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    transform: translateZ(20px);
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 196, 195, 0.15) 0%, rgba(13, 196, 195, 0.05) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-header span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateZ(10px);
}

.card-footer {
    margin-top: 1.2rem;
    transform: translateZ(20px);
}

/* Card Mock Designs */
.mock-btn {
    width: 100%;
    padding: 0.65rem;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mock-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mock Product Layout */
.mock-product {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mock-img {
    height: 90px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(13, 196, 195, 0.1) 0%, rgba(203, 213, 225, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.mock-img::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 2.2rem;
    color: rgba(13, 196, 195, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mock-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.mock-price {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* Mock Calendar */
.mock-calendar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-cal-day {
    font-size: 0.85rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
}

.mock-cal-slot {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(241, 245, 249, 0.8);
    border: 1px dashed #cbd5e1;
    color: #475569;
}

.mock-cal-slot.active {
    background: rgba(13, 196, 195, 0.08);
    border: 1px solid rgba(13, 196, 195, 0.3);
    color: var(--primary-dark);
    font-weight: 600;
}

/* Mock Dashboard */
.mock-dashboard {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mock-dash-metric {
    display: flex;
    flex-direction: column;
}

.mock-dash-metric span {
    font-size: 0.8rem;
    color: #64748b;
}

.mock-dash-metric strong {
    font-size: 1.4rem;
    color: var(--accent);
}

.mock-dash-progress {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    overflow: hidden;
}

.mock-dash-progress .progress-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.mock-dash-footer {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Mock Chat */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-bubble {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    max-width: 85%;
    line-height: 1.4;
}

.chat-bubble.user {
    align-self: flex-end;
    background: rgba(226, 232, 240, 0.8);
    color: var(--accent);
    border-bottom-right-radius: 2px;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: rgba(13, 196, 195, 0.1);
    color: var(--primary-dark);
    border-bottom-left-radius: 2px;
}

.mock-chat-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(241, 245, 249, 0.8);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #94a3b8;
    border: 1px solid #cbd5e1;
}

/* Mock Notifications */
.mock-notifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-notif {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(241, 245, 249, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.mock-notif i {
    font-size: 0.4rem;
    color: #94a3b8;
}

.mock-notif.active i {
    color: var(--primary);
}

/* Controls */
.carousel-3d-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.carousel-3d-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: white;
    color: var(--accent);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.carousel-3d-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.08);
}

.carousel-3d-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-3d-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-3d-dots .dot.active {
    background: var(--primary);
    transform: scale(1.25);
}

/* Media Queries for 3D Carousel */
@media (max-width: 992px) {
    .showcase-3d-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .showcase-3d-visual {
        height: 480px;
        overflow: visible;
    }
    
    .carousel-3d-track, .carousel-3d-card {
        width: 240px;
        height: 310px;
    }
    
    .carousel-3d-scene {
        height: 320px;
    }
    
    .showcase-3d-title {
        font-size: 2.5rem;
    }
    
    .showcase-3d {
        padding: 5rem 0;
    }
}

/* Promo Section */
.promo-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 20% 30%, rgba(13, 196, 195, 0.08) 0%, rgba(15, 23, 42, 0) 60%), 
                radial-gradient(circle at 80% 70%, rgba(252, 165, 165, 0.06) 0%, rgba(15, 23, 42, 0) 60%),
                #0f172a;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 165, 165, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
    border: 1px solid rgba(252, 165, 165, 0.25);
    animation: pulse-glow 2s infinite alternate;
}

.promo-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-text {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.promo-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.promo-bullet {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.promo-bullet i {
    color: var(--primary);
    font-size: 1.3rem;
}

.promo-actions {
    display: flex;
    gap: 1rem;
}

.btn-promo-cta {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-light) !important;
    padding: 1.1rem 2.5rem;
    box-shadow: 0 0 20px rgba(13, 196, 195, 0.3);
}

.btn-promo-cta:hover {
    background: transparent !important;
    color: var(--primary) !important;
    box-shadow: 0 0 30px rgba(13, 196, 195, 0.5);
}

/* Promo Visual & Card */
.promo-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.promo-card-animated {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(13, 196, 195, 0.15);
    position: relative;
    z-index: 5;
    animation: promo-float 6s ease-in-out infinite;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.promo-card-animated:hover {
    border-color: rgba(13, 196, 195, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(13, 196, 195, 0.3);
}

.promo-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.promo-card-tag {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.promo-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: white;
}

.price-currency {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-val {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.price-decimals {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-period {
    font-size: 1.1rem;
    color: #64748b;
    margin-left: 0.2rem;
}

.promo-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.promo-feature-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.promo-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.promo-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.promo-card-saving {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.promo-card-saving i {
    font-size: 1.2rem;
}

/* Floating Elements */
.floating-badge-discount {
    position: absolute;
    top: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--secondary) 0%, #f43f5e 100%);
    color: var(--accent);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
    z-index: 10;
    transform: rotate(15deg);
    animation: promo-float-reverse 5s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.discount-percent {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.discount-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.4;
}

.fb1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation: promo-drift 8s ease-in-out infinite alternate;
}

.fb2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 5%;
    right: 5%;
    animation: promo-drift 10s ease-in-out infinite alternate-reverse;
}

/* Keyframes */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 165, 165, 0.4);
    }
    100% {
        box-shadow: 0 0 15px 4px rgba(252, 165, 165, 0.2);
    }
}

@keyframes promo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes promo-float-reverse {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(15px) rotate(10deg);
    }
}

@keyframes promo-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .promo-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .promo-badge {
        justify-content: center;
    }
    
    .promo-bullets {
        align-items: center;
    }
    
    .promo-actions {
        justify-content: center;
    }
    
    .promo-visual {
        height: auto;
        padding: 2rem 0;
    }
    
    .floating-badge-discount {
        right: 15%;
        top: 0;
    }
}


