@charset "UTF-8";
/* ==========================================================================
   AWWWARDS-LEVEL DIGITAL MARKETING AGENCY STYLES
   Pure CSS, No Frameworks.
   ========================================================================== */

/* --- CSS Variables & Theme (Logo-derived Dark High-Contrast) --- */
:root {
    --bg-primary: #050507;
    --bg-secondary: #0f1015;
    --bg-glass: rgba(15, 16, 21, 0.65);

    --accent-primary: #4361ee;
    --accent-secondary: #f72585;
    --accent-glow: rgba(67, 97, 238, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #a0aab2;
    --text-dark: #050507;

    --border-color: rgba(255, 255, 255, 0.08);

    --font-heading: 'Syne', 'Clash Display', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'SF Pro Display', system-ui, sans-serif;

    --easing-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 90px;
}

/* --- Resets & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection */
::selection {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-secondary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: var(--accent-glow);
    border-color: transparent;
    mix-blend-mode: difference;
}

/* --- Universal Header (Strictly Consistent) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    transition: background 0.4s var(--easing-premium), backdrop-filter 0.4s var(--easing-premium), border-bottom 0.4s;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    filter: invert(1);
    width: auto;
    display: block;
    transition: transform 0.3s var(--easing-premium);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-primary), #2a41b5);
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s var(--easing-bounce), box-shadow 0.3s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-secondary), #b5175d);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s var(--easing-premium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* --- Global Section Settings --- */
section {
    padding: 120px 20px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: var(--accent-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

/* --- Hero Section (3D & Particles) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
    perspective: 1000px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 30px;
    position: relative;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: heroTextReveal 1.2s var(--easing-premium) forwards;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0;
    animation: fadeUp 1s 0.8s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeUp 1s 1s forwards;
}

/* Pure CSS 3D Orb in Hero Background */
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, var(--accent-primary), transparent 60%),
        radial-gradient(circle at 70% 70%, var(--accent-secondary), transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: orbFloat 10s infinite alternate linear;
    pointer-events: none;
}

/* --- Marquee / Clients --- */
.marquee-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.marquee-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
    margin: 0 40px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--text-secondary);
    color: transparent;
    transition: 0.3s;
}

.marquee-item:hover {
    color: var(--text-primary);
    -webkit-text-stroke: 0px;
}

/* --- About / Vision --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s var(--easing-premium), transform 0.8s var(--easing-premium);
}

.about-visual:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* --- Services Grid (3D Hover) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    perspective: 1500px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--easing-premium), border-color 0.4s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    border-color: var(--accent-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    fill: var(--accent-primary);
    transform: translateZ(30px);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    transform: translateZ(40px);
}

.service-card p {
    color: var(--text-secondary);
    transform: translateZ(20px);
}

/* --- Industry Specifics --- */
.industries-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: padding 0.4s var(--easing-premium);
}

.industry-row h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-secondary);
    transition: color 0.4s, transform 0.4s;
}

.industry-row:hover {
    padding: 40px 20px;
}

.industry-row:hover h3 {
    color: var(--text-primary);
    transform: translateX(20px);
}

.industry-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.industry-row:hover .industry-arrow {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: rotate(-45deg);
}

/* --- Interactive Campaign Reports --- */
.report-section {
    background: var(--bg-secondary);
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 300px;
    border-bottom: 2px solid var(--border-color);
    border-left: 2px solid var(--border-color);
    padding: 0 0 20px 20px;
}

.chart-bar {
    flex: 1;
    background: var(--accent-primary);
    border-radius: 8px 8px 0 0;
    position: relative;
    transform-origin: bottom;
    animation: growUp 2s var(--easing-premium) forwards;
}

.chart-bar:nth-child(2) {
    background: var(--accent-secondary);
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    background: var(--text-primary);
    animation-delay: 0.4s;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
}

.chart-bar:hover::after {
    opacity: 1;
}

/* --- ROI Calculator --- */
.calculator-box {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-group {
    margin-bottom: 40px;
}

.calc-group label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.calc-result h4 {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.calc-result h2 {
    font-size: 4rem;
    color: var(--accent-secondary);
}

/* --- Testimonials --- */
.testimonial-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.test-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-author div h5 {
    font-size: 1.1rem;
}

.test-author div p {
    font-size: 0.9rem;
    color: var(--accent-primary);
}

/* --- Contact & Forms --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-block {
    margin-top: 40px;
}

.info-block p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.info-block strong {
    color: var(--text-primary);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-wrap {
    position: relative;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-secondary);
    padding: 15px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-primary);
}

.premium-form label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-secondary);
    pointer-events: none;
    transition: 0.3s ease all;
}

.premium-form input:focus~label,
.premium-form input:valid~label,
.premium-form textarea:focus~label,
.premium-form textarea:valid~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-primary);
}

/* --- Universal Footer (Strictly Consistent) --- */
.site-footer {
    background: var(--bg-secondary);
    padding: 100px 40px 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo img {
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Live Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}

.chat-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--accent-glow);
    transition: transform 0.3s var(--easing-bounce);
}

.chat-btn:hover {
    transform: scale(1.1);
}

.chat-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s var(--easing-premium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--accent-primary);
    padding: 20px;
    color: white;
    font-family: var(--font-heading);
}

.chat-body {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    background: var(--bg-primary);
    padding: 12px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

.chat-msg.bot {
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 15px;
    color: white;
    outline: none;
}

.chat-input-area button {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-weight: bold;
}

/* --- Legal Pages specific styling --- */
.legal-page {
    padding-top: 180px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--accent-primary);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 10px;
}

/* --- Animations --- */
@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-40%, -60%) scale(1.1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes growUp {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Intersection Observer Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--easing-premium);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 400px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.5s var(--easing-premium);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .btn-primary.header-btn {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-page {
        padding-top: 140px;
    }
}