@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #7209b7;
    --secondary: #4cc9f0;
    --accent: #f72585;
    --background: #050614;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
}

body {
    background-color: var(--background);
    color: var(--text-light);
    overflow-x: hidden;
    height: 100vh;
}

.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(114, 9, 183, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(247, 37, 133, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    opacity: 0.4;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.glow-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.3;
}

.glow-orb-2 {
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.2;
}

.glow-orb-3 {
    top: 40%;
    left: 60%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    margin-top: 140px;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-effect {
    position: relative;
}

.underline-effect:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    opacity: 0.3;
    z-index: -1;
    transform: skew(-15deg);
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(114, 9, 183, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: rgba(76, 201, 240, 0.1);
    transform: translateY(-5px);
}

.btn i {
    font-size: 1.2rem;
}

.trusted-by {
    margin-top: 20px;
}

.trusted-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.brand-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}

.brand-logo {
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    height: 30px;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.platforms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate-slow 30s infinite linear;
}

@keyframes rotate-slow {
    0% {
        transform: rotateY(0) rotateX(10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.platform {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform img {
    width: 50px;
    height: auto;
}

.platform:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(114, 9, 183, 0.3);
    border-color: var(--accent);
}

.central-sphere {
    position: relative;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, var(--primary), var(--background));
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px var(--primary);
    }

    50% {
        box-shadow: 0 0 50px var(--accent);
    }

    100% {
        box-shadow: 0 0 30px var(--primary);
    }
}

.sphere-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
}

.sphere-icon {
    font-size: 5rem;
    color: white;
    opacity: 0.9;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.connections {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.connection {
    position: absolute;
    width: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform-origin: left center;
}

.stats-ring {
    position: absolute;
    width: 800px;
    height: 800px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stat-card {
    position: absolute;
    left: 90px;
    padding: 20px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 20px 40px rgba(114, 9, 183, 0.3);
}

.stat-card:nth-child(1) {
    top: 10%;
    left: 80%;
}

.stat-card:nth-child(2) {
    top: 70%;
    left: 25%;
}

.stat-card:nth-child(3) {
    top: 35%;
    left: 85%;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.mouse-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(247, 37, 133, 0.5), transparent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: screen;
}

.influencer-bubbles {
    position: initial;
    pointer-events: none;
}

.influencer-bubble {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    transform: translate(-50%, -50%);
    animation: float-random 6s infinite ease-in-out;
}

@keyframes float-random {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
}

.bubble-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid white;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    height: 50px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    animation: wave 20s linear infinite;
}

.wave-1 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(114, 9, 183, 0.03)'%3E%3C/path%3E%3C/svg%3E");
    animation-duration: 25s;
    opacity: 0.3;
    z-index: 3;
}

.wave-2 {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(247, 37, 133, 0.03)'%3E%3C/path%3E%3C/svg%3E");
    animation-duration: 15s;
    animation-direction: reverse;
    opacity: 0.2;
    z-index: 2;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.5;
    }

    100% {
        top: 10px;
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 20px 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .stats-ring {
        width: 600px;
        height: 600px;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .trusted-by {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        height: 400px;
        margin-top: 20px;
    }

    .stat-card:nth-child(1) {
        top: 15%;
        left: 75%;
    }

    .stat-card:nth-child(2) {
        top: 75%;
        left: 30%;
    }

    .stat-card:nth-child(3) {
        top: 40%;
        left: 80%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        height: 200vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        height: 300px;
    }

    .stats-ring {
        width: 400px;
        height: 400px;
    }

    .central-sphere {
        width: 120px;
        height: 120px;
    }

    .sphere-icon {
        font-size: 3rem;
    }

    .platform {
        width: 60px;
        height: 60px;
    }

    .platform img {
        width: 35px;
    }

    .stat-card {
        padding: 10px 20px;
        min-width: 120px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-title {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .brand-logos {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .central-sphere {
        width: 100px;
        height: 100px;
    }

    .stats-ring {
        width: 300px;
        height: 300px;
    }

    .stat-card:nth-child(1) {
        top: 20%;
        left: 70%;
    }

    .stat-card:nth-child(2) {
        top: 70%;
        left: 35%;
    }

    .stat-card:nth-child(3) {
        top: 45%;
        left: 80%;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.grow-animation {
    animation: grow 0.5s ease-out forwards;
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(247, 37, 133, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes grow {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.cursor-effect {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

.influencer-marketing {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--text-dim);
}

.stat-highlight {
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.2rem;
}

.platforms-showcase {
    margin-bottom: 100px;
    text-align: center;
}

.platforms-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.platforms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.platform-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.platform-icon.tiktok {
    background: linear-gradient(45deg, #010101, #69C9D0, #EE1D52);
}

.platform-icon.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.platform-icon.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0D8ED9);
}

.platform-icon.linkedin {
    background: linear-gradient(45deg, #0077B5, #00669C);
}

.platform-icon.pinterest {
    background: linear-gradient(45deg, #E60023, #BD081C);
}

.platform-icon.snapchat {
    background: linear-gradient(45deg, #FFFC00, #FFFC00);
}

.platform-icon.twitch {
    background: linear-gradient(45deg, #6441A5, #6C5B7B);
}

.platform-icon.reddit {
    background: linear-gradient(45deg, #FF4500, #FF4500);
}

.platform-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.platform-icon.discord {
    background: linear-gradient(45deg, #7289DA, #4F545C);
}

.platform-icon.telegram {
    background: linear-gradient(45deg, #0088CC, #0077B5);
}

.platform-icon.facebook {
    background: linear-gradient(45deg, #3b5998, #8b9dc3);
}

.platform-icon.tumblr {
    background: linear-gradient(45deg, #35465C, #2D3E50);
}

.platform-icon.quora {
    background: linear-gradient(45deg, #A82400, #C92A00);
}

.platform-icon.flickr {
    background: linear-gradient(45deg, #FF0084, #FF0084);
}

.platform-icon.vimeo {
    background: linear-gradient(45deg, #1AB7EA, #1AB7EA);
}

.platform-icon.wechat {
    background: linear-gradient(45deg, #7BB32A, #7BB32A);
}

.platform-icon.line {
    background: linear-gradient(45deg, #00B900, #00B900);
}

.platform-icon.viber {
    background: linear-gradient(45deg, #8B5A9B, #8B5A9B);
}

.platform-icon.skype {
    background: linear-gradient(45deg, #00AFF0, #00AFF0);
}

.platform-icon.slack {
    background: linear-gradient(45deg, #4A154B, #4A154B);
}

.platform-icon.mixcloud {
    background: linear-gradient(45deg, #FF4F00, #FF4F00);
}

.platform-icon.periscope {
    background: linear-gradient(45deg, #E03C31, #E03C31);
}

.platform-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.platform-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-container {
    background: linear-gradient(145deg, rgba(114, 9, 183, 0.1), rgba(76, 201, 240, 0.1));
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.cta-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature i {
    color: var(--secondary);
}

.cta-feature span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.cta-testimonial {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.cta-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-element {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary), transparent 80%);
    animation: pulse 3s infinite alternate ease-in-out;
}

.graphic-element:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: rotate-slow 20s infinite linear;
}

.graphic-element:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent), transparent 80%);
    animation: pulse 3s infinite alternate-reverse ease-in-out;
}

.floating-analytics {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 2;
    perspective: 1000px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotateX(10deg) rotateY(-15deg);
    animation: float 6s infinite ease-in-out;
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.analytics-header i {
    color: var(--accent);
}

.analytics-header span {
    font-size: 0.9rem;
    font-weight: 600;
}

.analytics-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 10px;
    padding: 0 10px;
}

.chart-bar {
    width: 20%;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: height 0.5s ease;
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-bar:hover .chart-tooltip {
    opacity: 1;
    transform: translateY(-5px);
}

.chart-tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.chart-tooltip:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--accent);
}

.analytics-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.analytics-notification {
    position: absolute;
    bottom: -40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    animation: float 5s 1s infinite ease-in-out;
}

.analytics-notification i {
    font-size: 1.2rem;
    color: var(--accent);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-text {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(114, 9, 183, 0.4);
    transform: rotate(10deg);
    animation: float 4s 0.5s infinite ease-in-out;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.pulse-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pulse-circle-1 {
    width: 300px;
    height: 300px;
    animation: pulse-ring 3s infinite;
}

.pulse-circle-2 {
    width: 400px;
    height: 400px;
    animation: pulse-ring 3s 0.5s infinite;
}

.pulse-circle-3 {
    width: 500px;
    height: 500px;
    animation: pulse-ring 3s 1s infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.floating-platforms {
    position: absolute;
    z-index: 3;
}

.floating-platform {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-platform.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    top: 20px;
    left: 30px;
    animation: float 5s infinite ease-in-out;
}

.floating-platform.tiktok {
    background: linear-gradient(45deg, #010101, #69C9D0, #EE1D52);
    top: 100px;
    left: -20px;
    animation: float 4s 0.3s infinite ease-in-out;
}

.floating-platform.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    top: 180px;
    left: 20px;
    animation: float 6s 0.6s infinite ease-in-out;
}

@keyframes rotate-slow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .cta-container {
        display: block;
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-description {
        font-size: 14px!important;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-features {
        justify-content: left;
    }

    .cta-graphic {
        height: 450px;
    }

    .floating-analytics {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto;
        transform: scale(0.9);
    }

    .analytics-notification {
        right: 0;
    }

    .floating-badge {
        left: 20px;
    }

    .floating-platforms {
        display: none;
    }

    .graphic-element {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .influencer-marketing {
        padding: 80px 0 60px;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 24px!important;
    }

    .features-grid {
        margin-bottom: 60px;
    }

    .platforms-showcase {
        margin-bottom: 60px;
    }

    .cta-title {
        font-size: 18px!important;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 30px 20px;
    }

    .platform-item {
        padding: 20px 15px;
    }

    .cta-container {
        padding: 30px 20px;
    }
}

.pricing-section {
    background-color: var(--background);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

@media screen and (max-width: 768px){
.section-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
}
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
}

.toggle-option {
    font-size: 1rem;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-option.active {
    color: var(--text-light);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked+.toggle-slider {
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

input:checked+.toggle-slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.highlight {
    background: linear-gradient(145deg, rgba(114, 9, 183, 0.15), rgba(76, 201, 240, 0.05));
    border: 2px solid rgba(114, 9, 183, 0.3);
    box-shadow: 0 20px 40px rgba(114, 9, 183, 0.2);
    transform: translateY(-15px) scale(1.03);
    z-index: 2;
}

.pricing-card.highlight:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(114, 9, 183, 0.3);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(114, 9, 183, 0.4), transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(114, 9, 183, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-dim);
    margin-left: 5px;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.card-features {
    margin-bottom: 30px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 3px;
}

.feature-item.disabled {
    color: var(--text-dim);
    opacity: 0.6;
}

.feature-item.disabled i {
    color: var(--text-dim);
}

.card-cta {
    text-align: center;
}

.plan-btn {
    width: 100%;
    padding: 14px 20px;
}

.pricing-card.professional .btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

.pricing-features {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.common-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.common-feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.common-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.guarantee-box {
    background: linear-gradient(145deg, rgba(114, 9, 183, 0.1), rgba(76, 201, 240, 0.05));
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(114, 9, 183, 0.2);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(114, 9, 183, 0.3);
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-content p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.pricing-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.shape-2 {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent);
}

.shape-3 {
    top: 60%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 24px;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.highlight {
        transform: translateY(0) scale(1);
    }

    .pricing-card.highlight:hover {
        transform: translateY(-10px) scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .common-features {
        gap: 20px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }

    .toggle-option {
        font-size: 0.9rem;
    }
}