:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #0059ff;
    --background: #f5f5f5;
    --text: #333333;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    cursor: none;
}

body {
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

/* Cursor */
.cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
}

.logo span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover span:first-child {
    transform: translateY(-5px);
}

.logo:hover span:last-child {
    transform: translateY(5px);
}

.nav-trigger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.nav-trigger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.nav-trigger span:first-child {
    top: 0;
}

.nav-trigger span:last-child {
    bottom: 0;
}

.nav-trigger.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-trigger.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--background);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 2rem 2rem;
}

.nav-menu.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 4rem;
}

.nav-link {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    padding-left: 2rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-menu.active .nav-link {
    opacity: 1;
    transform: translateX(0);
}

.nav-link:hover {
    color: var(--accent);
    padding-left: 3rem;
}

.nav-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    opacity: 0.5;
    font-size: 0.9rem;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 40%;
    max-width: 600px;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero:hover .hero-image {
    transform: translateX(-50%) translateY(0);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero h1 span {
    display: block;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-container {
    display: inline-block;
}

.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
}

.cta-button:active::before {
    width: 300%;
    height: 300%;
    opacity: 0.3;
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--primary);
    color: var(--secondary);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button-2:hover {
    background: var(--primary);
    color: var(--secondary);
}

.cta-button-2:hover svg {
    transform: translateX(5px);
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--secondary);
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    position: relative;
    padding-left: 1.5rem;
    z-index: 99;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.line {
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: 0.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    background: var(--background);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card-content p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: var(--background);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--text);
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    text-align: center;
}

.quote-container {
    max-width: 600px;
    margin-bottom: 2rem;
}

.quote {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.quote-author {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.start-project-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--primary);
    border: none;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    white-space: nowrap;
    min-width: 250px;
}

.start-project-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.start-project-button:hover::before {
    opacity: 0.2;
}

.start-project-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.start-project-button:active {
    transform: scale(0.95);
}

.start-project-button i {
    font-size: 1.2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.start-project-button:hover i {
    transform: translateX(10px) rotate(360deg);
}

/* Explosion Overlay */
.explosion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 20%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.2) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.explosion-overlay.active {
    opacity: 1;
}

/* Particules d'explosion */
.particle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    opacity: 0;
    transform: scale(0);
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: var(--primary);
    color: var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-section p {
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

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

.social-link {
    color: var(--secondary);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.4;
}

/* Animations */
.reveal-text {
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.reveal-text.visible span {
    transform: translateY(0);
}

/* Trusted By Section */
.trusted-by {
    padding: 8rem 2rem;
    background: white;
    overflow: hidden;
    position: relative;
}

.trusted-by::before,
.trusted-by::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trusted-by::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.trusted-by::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.logos-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0 2rem;
    animation: slide 30s linear infinite;
    will-change: transform;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
    flex-shrink: 0;
}

.logos-slide img {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8);
    object-fit: contain;
}

.company-name {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1) translateY(-5px);
}

.logo-item:hover .company-name {
    opacity: 1;
    transform: translateY(-5px);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

/* Recent Projects Section */
.projects {
    padding: 8rem 2rem;
    background: var(--background);
    position: relative;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card::before {
    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 ease;
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.9rem;
}

.stat i {
    font-size: 1rem;
    color: var(--accent);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tag {
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--accent);
    border: none;
    border-radius: 5px;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

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

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }
}

/* Animations de scroll */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Désactivation du scroll natif */
html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

/* FAQ Styles */
.faq {
    padding: 8rem 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-box:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.faq-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.faq-box.active {
    background: rgba(255, 255, 255, 0.02);
}

.faq-box.active .faq-content {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-box.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 1rem;
    }

    .faq-header {
        padding: 1.5rem;
    }

    .faq-header h3 {
        font-size: 1.1rem;
    }

    .faq-content {
        padding: 0 1.5rem;
    }

    .faq-box.active .faq-content {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.pricing-intro::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.pricing-intro h3 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.pricing-intro p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.pricing-disclaimer {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.4;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: stretch;
}

.pricing-card {
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 1.5rem;
    z-index: -1;
    border: 1px solid rgba(0, 89, 255, 0.1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 89, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card:hover::before {
    background: rgba(0, 89, 255, 0.02);
}

.pricing-card.featured::before {
    background: rgba(0, 89, 255, 0.03);
}

.pricing-card.featured {
    transform: translateY(-10px);
}

.card-content {
    padding: 3.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
    flex: 1;
}

.features li {
    color: var(--text-color);
    opacity: 0.7;
    padding: 1rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
    border-bottom: 1px solid rgba(0, 89, 255, 0.05);
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0.3;
    font-size: 1.2rem;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.3;
}

.price-range {
    margin-bottom: 3.5rem;
}

.price-range .from {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.4;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.price-range .amount {
    font-size: 4rem;
    font-weight: 200;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-note {
    margin-bottom: 3.5rem;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.5;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-button-2 {
    width: 100%;
    padding: 1.4rem;
    background: transparent;
    border: 1px solid rgba(0, 89, 255, 0.2);
    color: var(--accent-color);
    font-size: 1.1rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 89, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button-2:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.cta-button-2:hover::before {
    opacity: 1;
}

.pricing-footer {
    text-align: center;
    margin-top: 8rem;
    position: relative;
}

.pricing-footer::before {
    content: '';
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

.pricing-footer p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pricing {
        padding: 4rem 1rem;
    }

    .pricing-intro h3 {
        font-size: 2.2rem;
    }

    .card-content {
        padding: 2.5rem;
    }

    .price-range .amount {
        font-size: 3.5rem;
    }
}

.pricing-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(0, 89, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(0, 89, 255, 0.1);
    animation: pulse 2s infinite;
}

.pricing-bonus i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.pricing-bonus span {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.disclaimer-content {
    background: rgba(182, 180, 180, 0.651);
    padding: 3rem;
    max-width: 600px;
    color:rgb(51, 51, 51);
    text-align: center;
    border: 2px solid rgb(0, 89, 255);
    animation: fadeIn 0.5s ease;
}

.disclaimer-content h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.disclaimer-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.disclaimer-button {
    background: var(--accent-color);
    color: rgb(51, 51, 51);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.disclaimer-button:hover {
    transform: translateY(-2px);
    background: rgba(0, 89, 255, 0.9);
    color: rgb(194, 194, 194);
}

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