/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.sidebar-logo-image {
    display: block;
    width: 175px;
    height: 60px;
    object-fit: contain;
}

button,
input,
textarea,
select {
    font: inherit;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================
   GLOBAL
========================================================= */

:root {
    --primary: #1769e0;
    --primary-dark: #0e4eaf;
    --secondary: #13b89a;

    --dark: #101828;
    --dark-2: #172033;

    --text: #536174;
    --muted: #78869a;

    --light: #f5f8fc;
    --border: #e4eaf2;

    --white: #ffffff;

    --container: 1180px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 10px 0 18px;
    color: var(--dark);
}

.section-heading p {
    color: var(--text);
    font-size: 17px;
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light p {
    color: #b9c4d4;
}

.eyebrow {
    display: inline-block;
    /* color: var(--primary); */
    color: #90C841;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.btn-primary {
    /* background: var(--primary); */
    background: #90C841;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #cbd5e1;
    color: var(--dark);
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-2px);
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    /* color: var(--primary); */
    color: #90C841;
    font-weight: 750;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 25px;
    font-weight: 850;
    color: var(--dark);
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

nav {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #354052;
    font-size: 14px;
    font-weight: 650;
    padding: 27px 0;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
}

.dropdown-arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: -18px;

    width: 180px;
    padding: 10px;

    list-style: none;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    color: var(--dark);
    font-size: 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: #eef5ff;
    color: var(--primary);
}

.nav-cta {
    padding: 11px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle,
.mobile-toggle {
    display: none;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(23, 105, 224, 0.10), transparent 35%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 60%, #f3f8ff 100%);
}

.hero-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    transform: translateX(30px);

    animation: heroFade 15s infinite;
}

.hero-slide-1 {
    animation-delay: 0s;
}

.hero-slide-2 {
    animation-delay: 5s;
}

.hero-slide-3 {
    animation-delay: 10s;
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    5%,
    30% {
        opacity: 1;
        transform: translateX(0);
    }

    35%,
    100% {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-content h1 {
    margin: 13px 0 20px;
    color: var(--dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.2px;
}

.hero-content h1 span,
.service-hero h1 span {
    display: block;
    /* color: var(--primary); */
    color: #90C841;
}

.hero-content > p:not(.hero-subtitle) {
    max-width: 650px;
    color: var(--text);
    font-size: 17px;
}

.hero-subtitle {
    color: var(--dark);
    font-size: 22px;
    font-weight: 750;
    margin-bottom: 10px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 42px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 25px;
    color: var(--dark);
    line-height: 1.1;
}

.hero-stats span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-card,
.ad-performance-card,
.marketplace-card {
    width: 100%;
    max-width: 470px;
    padding: 28px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e2eaf4;
    border-radius: 20px;

    box-shadow: 0 30px 70px rgba(21, 57, 100, 0.14);
}

.dashboard-top,
.performance-header,
.marketplace-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    font-size: 13px;
    font-weight: 750;
    color: var(--dark);
}

.status-dot {
    color: #159f78;
    font-size: 11px;
}

.growth-number {
    margin-top: 45px;
}

.growth-number small,
.performance-main small {
    display: block;
    color: var(--muted);
}

.growth-number strong {
    display: block;
    margin-top: 3px;
    font-size: 48px;
    line-height: 1;
    color: var(--dark);
}


    .whatsapp-float {
        position: fixed;
        width: 58px;
        height: 58px;
        right: 25px;
        bottom: 25px;

        display: flex;
        align-items: center;
        justify-content: center;

        background-color: #25D366;
        color: #ffffff;

        text-decoration: none;

        border-radius: 50%;

        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

        z-index: 9999;

        transition: transform 0.2s ease,
                    box-shadow 0.2s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        color: #ffffff;
    }

    @media (max-width: 576px) {
        .whatsapp-float {
            width: 52px;
            height: 52px;
            right: 16px;
            bottom: 16px;
        }

        .whatsapp-float svg {
            width: 27px;
            height: 27px;
        }
    }


.chart {
    height: 180px;
    margin: 30px 0;

    display: flex;
    align-items: end;
    gap: 12px;

    border-bottom: 1px solid var(--border);
}

.bar {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(
        to top,
        var(--primary),
        #77b0ff
    );
}

.bar-1 { height: 35%; }
.bar-2 { height: 45%; }
.bar-3 { height: 52%; }
.bar-4 { height: 63%; }
.bar-5 { height: 58%; }
.bar-6 { height: 78%; }
.bar-7 { height: 94%; }

.dashboard-bottom,
.performance-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dashboard-bottom div,
.performance-row div {
    padding: 13px;
    background: #f6f9fd;
    border-radius: 9px;
}

.dashboard-bottom small,
.performance-row small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.dashboard-bottom strong,
.performance-row strong {
    color: var(--dark);
    font-size: 18px;
}

.performance-main {
    margin: 42px 0 25px;
}

.performance-main strong {
    display: block;
    margin: 3px 0;
    color: var(--dark);
    font-size: 43px;
    line-height: 1;
}

.performance-main span {
    color: #159f78;
    font-size: 12px;
    font-weight: 700;
}

.performance-row {
    grid-template-columns: repeat(2, 1fr);
}

.keyword-list {
    margin-top: 25px;
}

.keyword-list div {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.keyword-list b {
    color: var(--primary);
}

.marketplace-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.marketplace-item:last-child {
    border-bottom: 0;
}

.marketplace-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #edf4ff;
    color: var(--primary);
    font-size: 18px;
    font-weight: 850;
}

.marketplace-item > div:nth-child(2) {
    flex: 1;
}

.marketplace-item strong {
    display: block;
    color: var(--dark);
}

.marketplace-item small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.marketplace-item > b {
    color: #159f78;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d4e4;
}

.slider-dots span:first-child {
    width: 26px;
    border-radius: 20px;
    background: var(--primary);
}


/* =========================================================
   FEATURED SERVICES
========================================================= */

.service-grid {
    display: grid;
    gap: 25px;
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-number {
    display: inline-flex;
    color: var(--primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1px;
}

.service-card h3 {
    margin: 12px 0 15px;
    font-size: 23px;
    line-height: 1.25;
    color: var(--dark);
}

.service-card p {
    margin-bottom: 10px;
    color: var(--text);
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-visual {
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #e9f3ff,
            #f6fbff
        );
}

.about-visual.large {
    min-height: 460px;
}

.experience-box {
    width: 260px;
    height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--primary);
    color: var(--white);

    text-align: center;
    box-shadow: 0 25px 50px rgba(23, 105, 224, 0.25);
}

.experience-box strong {
    font-size: 65px;
    line-height: 1;
}

.experience-box span {
    max-width: 150px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.floating-card {
    position: absolute;
    right: 30px;
    bottom: 35px;

    min-width: 145px;
    padding: 20px;

    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.floating-card strong {
    display: block;
    color: var(--primary);
    font-size: 30px;
    line-height: 1;
}

.floating-card span {
    display: block;
    margin-top: 5px;
    color: var(--text);
    font-size: 12px;
}

.section-content h2 {
    margin: 10px 0 20px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.section-content p {
    margin-bottom: 17px;
    color: var(--text);
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-box {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.section-light .feature-box {
    background: var(--white);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 9px;
    background: #edf4ff;
    color: var(--primary);

    font-size: 12px;
    font-weight: 850;
}

.feature-box h3 {
    margin: 18px 0 8px;
    color: var(--dark);
    font-size: 20px;
}

.feature-box p {
    color: var(--text);
    font-size: 14px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    position: relative;
}

.process-item > span {
    display: block;
    margin-bottom: 20px;
    color: #6ba8ff;
    font-size: 13px;
    font-weight: 850;
}

.process-item h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 21px;
}

.process-item p {
    color: #aeb9ca;
    font-size: 14px;
}


/* =========================================================
   RESULTS
========================================================= */

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-card {
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}

.result-card strong {
    display: block;
    color: var(--primary);
    font-size: 42px;
    line-height: 1;
}

.result-card span {
    display: block;
    margin-top: 10px;
    color: var(--text);
    font-size: 13px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.industry-grid span {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    text-align: center;
    font-weight: 700;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.quote-mark {
    color: var(--primary);
    font-size: 45px;
    line-height: 0.8;
}

.testimonial-card p {
    margin: 25px 0;
    color: var(--text);
}

.testimonial-card strong {
    display: block;
    color: var(--dark);
}

.testimonial-card > span {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding: 115px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(23, 105, 224, 0.10), transparent 30%),
        var(--light);
}

.page-hero-content {
    max-width: 850px;
    text-align: center;
}

.page-hero h1 {
    margin: 10px 0 18px;
    color: var(--dark);
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.08;
}

.page-hero p {
    color: var(--text);
    font-size: 18px;
}


/* =========================================================
   SERVICE HERO
========================================================= */

.service-hero {
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(23, 105, 224, 0.13), transparent 35%),
        linear-gradient(135deg, #f8fbff, #ffffff);
}

.service-hero-content {
    max-width: 850px;
    text-align: center;
}

.service-hero h1 {
    margin: 12px 0 20px;
    color: var(--dark);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.06;
}

.service-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text);
    font-size: 18px;
}

.service-hero .hero-buttons {
    justify-content: center;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
    margin-top: 35px;
}

.trust-row span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.walmart-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(18, 119, 64, 0.10), transparent 35%),
        linear-gradient(135deg, #f8fffb, #ffffff);
}

.ebay-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(224, 56, 56, 0.08), transparent 35%),
        linear-gradient(135deg, #fffafa, #ffffff);
}


/* =========================================================
   PLATFORM CARDS
========================================================= */

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.platform-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
    transition: 0.25s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.platform-letter {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 12px;
    background: #edf4ff;
    color: var(--primary);

    font-size: 25px;
    font-weight: 850;
}

.platform-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 23px;
}

.platform-card p {
    color: var(--text);
    font-size: 14px;
}

.platform-card span {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
}


/* =========================================================
   DETAILED SERVICES
========================================================= */

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detailed-service-card {
    position: relative;
    padding: 38px;

    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);

    transition: 0.25s ease;
}

.detailed-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.detailed-service-card h3 {
    margin: 10px 0 14px;
    color: var(--dark);
    font-size: 25px;
}

.detailed-service-card p {
    color: var(--text);
    font-size: 15px;
}

.featured-service {
    border-color: #a9c9fa;
    background: linear-gradient(
        135deg,
        #f4f8ff,
        #ffffff
    );
}


/* =========================================================
   PROJECT / BLOG CARDS
========================================================= */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
    transition: 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.project-cover {
    min-height: 220px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: var(--white);
}

.project-cover span {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-cover strong {
    font-size: 27px;
    line-height: 1.15;
}

.amazon-cover {
    background:
        linear-gradient(
            135deg,
            #1558b0,
            #5d9bea
        );
}

.walmart-cover {
    background:
        linear-gradient(
            135deg,
            #087b4b,
            #42bb88
        );
}

.ebay-cover {
    background:
        linear-gradient(
            135deg,
            #9e3131,
            #e26b6b
        );
}

.project-content {
    padding: 28px;
}

.project-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-meta span {
    padding: 5px 9px;
    border-radius: 5px;
    background: #edf4ff;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-content h3 {
    margin: 15px 0 12px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.3;
}

.project-content p {
    color: var(--text);
    font-size: 14px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin: 10px 0 20px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.contact-info > p {
    color: var(--text);
    margin-bottom: 35px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.contact-item span {
    display: block;
    margin-top: 3px;
    color: var(--text);
    font-size: 14px;
}

.contact-form-wrapper {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: var(--dark);
    font-size: 13px;
    font-weight: 750;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 14px;

    border: 1px solid #d8e0ea;
    border-radius: 8px;

    outline: none;
    color: var(--dark);
    background: var(--white);

    transition: 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.08);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.10), transparent 30%),
        linear-gradient(
            135deg,
            #90C841,
            #90C841
        );
    color: var(--white);
}

.cta-content {
    max-width: 760px;
    text-align: center;
}

.cta-content .eyebrow {
    color: #FFFFFF;
}

.cta-content h2 {
    margin: 10px 0 15px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.cta-content p {
    margin-bottom: 28px;
    color: #FFFFFF;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #0c1320;
    color: #aeb9ca;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 70px 0;
}

.footer-logo {
    display: inline-block;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-grid > div > p {
    max-width: 300px;
    font-size: 13px;
}

.footer-grid h4 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 14px;
}

.footer-grid > div > a:not(.logo) {
    display: block;
    margin-bottom: 7px;
    color: #aeb9ca;
    font-size: 13px;
}

.footer-grid > div > a:not(.logo):hover {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #78869a;
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 18px;
    }

    .navbar {
        gap: 18px;
    }

    .hero-grid {
        gap: 45px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
        margin-left: auto;

        font-size: 26px;
        color: var(--dark);
        cursor: pointer;
        line-height: 1;
    }

    nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        margin: 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 15px 20px;

        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ nav .nav-menu {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;

        display: block;

        padding: 0 0 5px 18px;

        border: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu a {
        padding: 8px 10px;
    }

    .hero-slider {
        min-height: 940px;
    }

    .hero-slide {
        align-items: flex-start;
        padding-top: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-visual {
        padding-bottom: 50px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 70px 0;
    }

    .navbar {
        min-height: 68px;
    }

    nav {
        top: 68px;
    }

    .logo {
        font-size: 22px;
    }

    .hero-slider {
        min-height: 960px;
    }

    .hero-slide {
        padding-top: 55px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-content > p:not(.hero-subtitle) {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 21px;
    }

    .dashboard-card,
    .ad-performance-card,
    .marketplace-card {
        padding: 20px;
    }

    .growth-number {
        margin-top: 30px;
    }

    .growth-number strong {
        font-size: 38px;
    }

    .chart {
        height: 130px;
        gap: 7px;
    }

    .dashboard-bottom {
        gap: 8px;
    }

    .dashboard-bottom div {
        padding: 9px;
    }

    .dashboard-bottom strong {
        font-size: 15px;
    }

    .performance-main strong {
        font-size: 35px;
    }

    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .service-hero {
        padding: 80px 0;
    }

    .service-hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .three-columns,
    .feature-grid,
    .process-grid,
    .results-grid,
    .industry-grid,
    .platform-grid,
    .service-list-grid,
    .project-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-visual,
    .about-visual.large {
        min-height: 330px;
    }

    .experience-box {
        width: 210px;
        height: 210px;
    }

    .experience-box strong {
        font-size: 50px;
    }

    .floating-card {
        right: 15px;
        bottom: 20px;
    }

    .contact-form-wrapper {
        padding: 23px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .cta-section {
        padding: 75px 0;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .hero-slide {
        animation: none;
    }

    .hero-slide-1 {
        opacity: 1;
        transform: none;
    }

    .hero-slide-2,
    .hero-slide-3 {
        display: none;
    }

    * {
        transition: none !important;
    }

  
}

