:root {
    --primary: #6d28d9;
    --primary-light: #8b5cf6;
    --secondary: #facc15;
    --accent: #f472b6;
    --bg: #ffffff;
    --text: #1f2937;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -2px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    background: #f3f4f6;
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-vibrant {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.25);
}

.btn-vibrant:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.4);
}

.btn-vibrant.active {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.25);
}

.btn-vibrant.active:hover {
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.4);
}

.btn-vibrant.sm {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
}

.btn-vibrant.outline {
    background: transparent;
    border: 3px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-vibrant.full {
    width: 100%;
    text-align: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 90% 10%, #fef3c7 0%, #fff 50%);
    padding-top: 10rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.status-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 0.8rem;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    transform: rotate(2deg);
}

.hero h1 {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.6rem;
    max-width: 600px;
    color: #4b5563;
    margin-bottom: 4rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.play-btn {
    background: transparent;
    border: none;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.play-btn i {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    position: relative;
}

.visual-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--secondary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -10%;
    left: -10%;
    z-index: -1;
    animation: blobMove 10s infinite alternate;
}

@keyframes blobMove {
    from {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    to {
        border-radius: 70% 30% 30% 70% / 60% 40% 40% 60%;
    }
}

.floating-img {
    width: 100%;
    border-radius: 3rem;
    transform: rotate(-5deg);
    box-shadow: 30px 30px 0 var(--primary);
}

/* Sections */
section {
    padding: 10rem 0;
}

.section-header {
    margin-bottom: 6rem;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.section-title span {
    color: var(--primary);
}

.section-header p {
    font-size: 1.5rem;
    color: #6b7280;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    padding: 5rem 3rem;
    border-radius: 4rem;
    text-align: center;
    transition: var(--transition);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

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

.v1 {
    background: #ede9fe;
    color: var(--primary);
}

.v2 {
    background: #fef3c7;
    color: #92400e;
}

.v3 {
    background: #fce7f3;
    color: #9d174d;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.project-card {
    cursor: pointer;
}

.project-img-box {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 3rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    border: 8px solid transparent;
}

.project-card:hover .project-img-box {
    transform: scale(0.95);
    border-color: var(--secondary);
    border-radius: 5rem;
}

.project-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery */
.vibrant-bg {
    background: var(--primary);
    color: var(--white);
    border-radius: 8rem;
    margin: 0 2rem;
}

.vibrant-bg .section-title span {
    color: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 2rem;
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing-card {
    padding: 5rem 3rem;
    background: #f9fafb;
    border-radius: 4rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.main {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.main .tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 900;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    margin: 2rem 0;
}

.price span {
    font-size: 1rem;
    opacity: 0.6;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 4rem;
}

.pricing-card li {
    padding: 1rem 0;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main li {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Reviews */
.review-box {
    background: var(--secondary);
    padding: 8rem;
    border-radius: 6rem;
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
    animation: slideUp 0.5s;
}

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

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

.quote {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--primary);
}

.author {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4b5563;
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.review-nav button {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Contact */
.massive-title {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 6rem;
    text-align: center;
}

.massive-title span {
    color: var(--accent);
}

.vibrant-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

input,
textarea {
    width: 100%;
    padding: 2rem;
    background: #f3f4f6;
    border: 3px solid transparent;
    border-radius: 2rem;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 600;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 8rem;
}

.social-links a {
    font-size: 3rem;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.3) rotate(15deg);
    color: var(--accent);
}

/* Footer */
.footer {
    padding: 5rem 0;
    border-top: 2px solid #f3f4f6;
    text-align: center;
}

.footer p {
    font-weight: 700;
    color: #9ca3af;
}

/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 4rem;
    transition: var(--transition);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
}

.close-drawer {
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.drawer-links a {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
}

.drawer-btn {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    font-size: 1.5rem !important;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 40, 217, 0.9);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 1000px;
    border-radius: 4rem;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: var(--primary);
}

.video-container {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 3rem;
}

.placeholder-video {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

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

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

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

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

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

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

    .section-title {
        font-size: 3.5rem;
    }

    .massive-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .review-box {
        padding: 4rem 2rem;
    }

    .quote {
        font-size: 1.8rem;
    }
}