:root {
    /* Brand Colors */
    --color-primary: #AB68FD;
    /* Lavender Purple */
    --color-secondary: #5C1DBA;
    /* Deep Purple */
    --color-accent-1: #DCA7FF;
    /* Soft Lilac */
    --color-accent-2: #FFE066;
    /* Warm Yellow */
    --color-accent-3: #FF8A80;
    /* Coral Pink */
    --color-white: #FFFFFF;
    --color-text-main: #1A1A1A;
    --color-text-light: #666666;
    --color-bg-light: #F9F9F9;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 24px;
    --border-radius-sm: 12px;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.btn-dark {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.btn-text {
    color: var(--color-text-main);
    font-weight: 600;
    margin-left: 16px;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.25rem;
    /* Slightly smaller to fit full name */
    font-weight: 700;
    color: var(--color-text-main);
    max-width: 300px;
    /* Ensure it wraps if needed on very small screens */
    line-height: 1.2;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-light);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FFF0F5 0%, #F3E5F5 100%);
    /* Soft pink/purple gradient base */
    position: relative;
    overflow: hidden;
}

/* Add a large decorative background circle */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-accent-1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 0;
}

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

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 400px;
}

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

/* Abstract Shapes for Hero */
.shape-circle-main {
    width: 350px;
    height: 350px;
    background-color: var(--color-primary);
    /* Lavender Purple */
    border-radius: 50%;
    position: absolute;
    /* Add a subtle gradient or shadow to make it pop */
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-1));
    box-shadow: 0 20px 40px rgba(171, 104, 253, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-logo {
    width: 85%;
    height: auto;
    mix-blend-mode: multiply;
    /* Removes white background */
    opacity: 0.9;
}

.shape-star {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: spin 10s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.megaphone-container {
    position: absolute;
    width: 200px;
    height: 200px;
    /* Simple representation */
    background: white;
    border: 2px solid var(--color-text-main);
    border-radius: 20px;
    display: none;
    /* Replaced by CSS art if time permits, or just use shapes */
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    background: var(--color-white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.icon-linkedin {
    top: 20%;
    right: 20%;
    color: #0077b5;
}

.icon-facebook {
    bottom: 20%;
    right: 10%;
    background: var(--color-text-main);
    color: white;
}

.icon-web {
    bottom: 30%;
    left: 10%;
    background: var(--color-accent-3);
    /* Coral Pink */
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 400px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /* overflow-x: auto; Removed for stacked layout */
    /* padding-bottom: 20px; Removed */
}

.service-card {
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

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

.card-white {
    background-color: var(--color-white);
}

.card-dark {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.card-dark p {
    color: #aaa;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.profile-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
    /* background-color: var(--color-white); */
    mix-blend-mode: multiply;
    /* Simulates transparency for white backgrounds */
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.about-cta {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--color-accent-2);
}

.about-cta p {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 20px;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        /* Image on top on mobile */
        text-align: center;
    }

    .profile-img {
        max-width: 100%;
    }
}

/* Blog Section Removed */
.blog-section {
    padding: 100px 0;
}

.blog-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.blog-card {
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.bg-orange {
    background-color: #FFECD1;
    /* Light orange */
}

.bg-pink {
    background-color: #FFD1DC;
    /* Light pink */
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.blog-card p {
    position: relative;
    z-index: 1;
}

.center-btn {
    text-align: center;
}

/* Social Proof Collage */
.social-proof-section {
    padding: 40px 0 80px;
    overflow: hidden;
}

.collage-container {
    display: flex;
    gap: 0;
    /* Removed gap for overlap */
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.collage-item {
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin: -15px;
    /* Negative margin for overlap */
    position: relative;
    z-index: 1;
}

.comment-img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* Random rotations and positions for messy look */
.collage-item:nth-child(odd) {
    transform: rotate(-3deg) translateY(10px);
}

.collage-item:nth-child(even) {
    transform: rotate(4deg) translateY(-5px);
}

.collage-item:nth-child(3n) {
    transform: rotate(-5deg) translateX(5px);
}

.collage-item:nth-child(4n) {
    transform: rotate(2deg) translateY(15px);
}

.collage-item:nth-child(5n) {
    transform: rotate(-2deg) translateX(-10px);
}

/* Hover effect to make readable */
.collage-item:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Client Transformation Section */
.transformation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.transformation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trans-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 400px;
}

.trans-card h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.trans-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
}

.trans-arrow {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .transformation-grid {
        flex-direction: column;
        gap: 20px;
    }

    .trans-arrow {
        transform: rotate(90deg);
    }
}

/* Removed old hover and nth-child rules that might conflict */

.comment-placeholder {
    font-size: 0.9rem;
}

.cp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cp-avatar {
    width: 32px;
    height: 32px;
    background-color: var(--color-accent-1);
    border-radius: 50%;
}

.cp-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.cp-text {
    color: var(--color-text-light);
    font-style: italic;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: left;
    /* Changed from center to left */
}

.video-placeholder-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-wrapper {
    width: 100%;
}

.video-container {
    width: 100%;
    max-width: 500px;
    /* Reduced from 800px */
    margin: 40px auto 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Removed testimonial-grid and client-wins styles */

/* Removed placeholder styles as they are no longer needed */

/* Footer */
.footer {
    padding: 80px 0 20px;
    background-color: var(--color-white);
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
        gap: 12px;
    }

    .logo {
        font-size: 0.95rem;
        max-width: 160px;
    }

    .header .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .nav {
        display: none;
        /* Implement mobile menu in JS */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

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

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

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

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .section-header {
        max-width: 100%;
    }

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

    .collage-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .collage-item {
        margin: 0;
        max-width: 90%;
        transform: none !important;
    }

    .collage-item:hover {
        transform: scale(1.02) !important;
    }

    .video-container {
        max-width: 100%;
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}