/* Global Styles */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

:root {
    --primary: #0095ff;
    --primary-hover: #007bcc;
    --dark-bg: #0C0F0A;
    --olive-bg: #10110B;
    --light-bg: #F8EFEA;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-muted-dark: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

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

.btn-transparent {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
    background-color: #fff;
    color: #000;
    padding: 8px 24px;
}

.btn-nav:hover {
    background-color: #f0f0f0;
}

.btn-dark {
    background-color: #111;
    color: #fff;
    border-radius: 40px;
    padding: 14px 28px;
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.section-tag {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-tag-orange {
    color: var(--primary);
}

.section-tag-dark {
    color: #000;
}

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

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo img,
.footer-logo img {
    height: 44px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(12, 15, 10, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 900px;
    margin-top: 50px;
}

.hero-date {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Floating 3D Icons */
@keyframes float-icon {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(12deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-icon {
    position: absolute;
    animation: float-icon 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 20px rgba(0,0,0,0.6));
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
}

.float-fb { top: 25%; left: 8%; width: 80px; animation-delay: 0s; }
.float-ig { top: 65%; left: 12%; width: 65px; animation-delay: -2s; }
.float-wa { top: 40%; left: 18%; width: 50px; animation-delay: -4s; filter: blur(2px) drop-shadow(0 25px 20px rgba(0,0,0,0.6)); opacity: 0.5; }
.float-in { top: 15%; right: 22%; width: 55px; animation-delay: -1.5s; filter: blur(1.5px) drop-shadow(0 25px 20px rgba(0,0,0,0.6)); opacity: 0.55; }

.float-google { top: 30%; right: 10%; width: 75px; animation-delay: -1s; }
.float-yt { top: 60%; right: 15%; width: 90px; animation-delay: -3s; }

/* Stats Section */
.stats-section {
    background-color: var(--olive-bg);
    padding: 100px 5%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.stats-heading-text {
    max-width: 800px;
}

.stats-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 24px;
}

.stats-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 60px;
}

.growth-illustration {
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
    filter: drop-shadow(0 20px 30px rgba(0, 149, 255, 0.2));
}

.animated-growth-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-growth 4s ease-out forwards infinite alternate;
}

@keyframes draw-growth {
    0% { stroke-dashoffset: 600; }
    40% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 400;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* How we work Section */
.process-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 100px 5%;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.card {
    padding: 40px;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.card-1 {
    background-color: #faebe2;
}

.card-2 {
    background-color: #fdf3f0;
}

.card-3 {
    background-color: #fdf6f3;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    max-width: 300px;
}

.card-header span {
    font-size: 0.9rem;
    font-weight: 500;
}

.card-icon {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-icon {
    width: 100px;
    height: 100px;
}

.card p {
    font-size: 1rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

/* Split Section */
.split-section {
    display: flex;
    background-color: var(--olive-bg);
    min-height: 480px;
}

.split-text {
    flex: 1 1 50%;
    width: 50%;
    padding: 80px 5% 80px 10%;
    display: flex;
    align-items: center;
}

.split-text-content {
    max-width: 500px;
}

.split-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--primary);
}

.split-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.split-link {
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.split-link:hover {
    gap: 12px;
}

.split-image {
    flex: 1 1 50%;
    width: 50%;
    position: relative;
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 17, 11, 1) 0%, rgba(16, 17, 11, 0) 5%);
}

/* Services Section */
.services-section {
    background-color: var(--dark-bg);
    padding: 100px 5%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--olive-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

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

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

.service-card p {
    color: var(--text-muted);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 149, 255, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

/* Logo Slider */
.logo-slider-section {
    background-color: var(--light-bg);
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.logo-slider {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.logo-slider::before,
.logo-slider::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #faebe2 0%, rgba(250,235,226,0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #faebe2 0%, rgba(250,235,226,0) 100%);
}

.logo-slide-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-logos 30s linear infinite;
    align-items: center;
}

.client-logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 80px;
    margin: 0 15px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-logo img {
    max-height: 55px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-230px * 11)); } /* (200px + 30px margin) * 11 logos */
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 100px 5%;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-wrapper {
    display: grid;
    grid-template-areas: "slide";
    width: 100%;
    max-width: 100vw;
    margin-bottom: 30px;
    align-items: center;
    overflow-x: hidden;
}

.testimonial-slide {
    grid-area: slide;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(30px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-quote {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: center;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.testimonial-controls .control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #111;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-controls .control-btn:hover {
    background-color: #333;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--olive-bg);
    padding: 100px 5%;
}

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

.pricing-top {
    margin-bottom: 5px;
}

/* AI Specific Styles overriding base split section */
.ai-section {
    background-color: var(--dark-bg);
    min-height: 480px;
    flex-direction: row-reverse;
}

.ai-image {
    flex: 1 1 50%;
    width: 50%;
    position: relative;
}

.ai-text {
    flex: 1 1 50%;
    width: 50%;
    padding: 80px 10% 80px 5%;
    display: flex;
    align-items: center;
}

.pricing-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 16px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-cards {
    display: flex;
    gap: 24px;
}

.price-card {
    flex: 1;
    background-color: #FFFbF8;
    color: var(--text-dark);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.plan-name {
    font-weight: 500;
    font-size: 1.1rem;
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    min-height: 70px;
}

.price-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted-dark);
}

.check {
    width: 20px;
    height: 20px;
    border: 1px solid #111;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.price-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.price-wrapper .price {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.price-wrapper .period {
    color: var(--text-muted-dark);
}

.price-bottom .btn {
    margin-top: 0;
    padding: 16px 32px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 17, 11, 1) 0%, rgba(16, 17, 11, 0.3) 50%, rgba(16, 17, 11, 1) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.site-footer {
    background-color: var(--olive-bg);
    padding: 80px 5% 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-column a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 250px;
}

.contact-title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.contact-address {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: -2vw;
}

.giant-text {
    font-size: 18vw;
    font-weight: 700;
    color: var(--primary);
    line-height: 0.8;
    letter-spacing: -2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-family: inherit;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-top {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .split-section {
        flex-direction: column !important;
    }

    .split-image, .split-logo, .split-text {
        position: relative !important;
        width: 100% !important;
        flex: none !important;
        height: auto !important;
        min-height: 350px !important;
    }

    .split-text {
        padding: 60px 5% !important;
    }
}

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

    .process-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .card {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 24px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .price-bottom {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px;
    }
    
    .price-bottom button {
        width: 100% !important;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .floating-icon {
        display: none;
    }
}