/* ============================================================
   RESPONSIVE DESIGN
============================================================ */


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1024px) {

    :root {

        --section-padding: 90px;

    }


    .nav-menu,
    .nav-cta {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .mobile-menu {

        position: absolute;

        top: 72px;

        left: 24px;
        right: 24px;

        display: flex;

        flex-direction: column;

        gap: 5px;

        padding: 20px;

        background: rgba(15, 23, 42, 0.96);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);

        border: 1px solid var(--color-border);

        border-radius: 16px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition-medium),
            visibility var(--transition-medium),
            transform var(--transition-medium);

    }


    .mobile-menu.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .mobile-nav-link {

        padding: 14px 12px;

        color: var(--color-text-secondary);

        border-radius: 8px;

        transition:
            background var(--transition-fast),
            color var(--transition-fast);

    }


    .mobile-nav-link:hover,
    .mobile-nav-link.active {

        color: var(--color-text-primary);

        background: rgba(255, 255, 255, 0.04);

    }


    .mobile-menu-cta {

        margin-top: 12px;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap: 50px;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 768px) {

    .container {

        width: min(
            calc(100% - 36px),
            var(--container-width)
        );

    }


    .navbar {

        width: calc(100% - 36px);

        height: 76px;

    }


    .site-header.scrolled .navbar {

        height: 68px;

        padding: 0 16px;

    }


    .logo-image {

        width: 160px;

    }


    .mobile-menu {

        top: 70px;

        left: 18px;
        right: 18px;

    }


    .hero-placeholder {

        padding-top: 100px;

    }


    .hero-placeholder h1 {

        font-size: clamp(
            44px,
            13vw,
            64px
        );

        letter-spacing: -2px;

    }


    .hero-placeholder-text {

        font-size: 16px;

    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .footer-brand {

        max-width: 100%;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 60px;

    }


    .footer-statement {

        font-size: 22vw;

        letter-spacing: -4px;

    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .logo-image {

        width: 140px;

    }


    .hero-placeholder h1 {

        font-size: 42px;

    }


    .section-label {

        font-size: 11px;

    }

}


/* ============================================================
   HERO RESPONSIVE
============================================================ */


/* ---------- Large Tablet ---------- */

@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(420px, 0.9fr);

        gap: 40px;

    }


    .hero-title {

        font-size:
            clamp(50px, 6vw, 70px);

    }


    .hero-visual {

        min-height: 500px;

    }


    .floating-card-top {

        right: -5px;

    }


    .floating-card-bottom {

        left: -5px;

    }

}


/* ---------- Tablet ---------- */

@media (max-width: 900px) {

    .hero {

        padding:
            130px 0
            80px;

    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .hero-content {

        max-width: 760px;

        margin:
            0 auto;

        text-align: center;

    }


    .hero-eyebrow {

        justify-content: center;

    }


    .hero-title {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-actions {

        justify-content: center;

    }


    .hero-note {

        justify-content: center;

    }


    .hero-visual {

        width: 100%;

        min-height: 520px;

    }


    .growth-dashboard {

        width:
            min(90%, 560px);

    }


    .floating-card-top {

        right:
            2%;

    }


    .floating-card-bottom {

        left:
            2%;

    }


    .hero-scroll-indicator {

        display: none;

    }

}


/* ---------- Mobile ---------- */

@media (max-width: 600px) {

    .hero {

        padding:
            115px 0
            60px;

    }


    .hero-container {

        gap: 45px;

    }


    .hero-title {

        font-size:
            clamp(43px, 12vw, 58px);

        letter-spacing:
            -2.5px;

    }


    .hero-description {

        font-size:
            15px;

        line-height:
            1.7;

    }


    .hero-actions {

        flex-direction:
            column;

        width: 100%;

    }


    .btn {

        width: 100%;

        max-width: 280px;

    }


    .hero-note {

        font-size:
            9px;

        letter-spacing:
            1.2px;

    }


    .hero-visual {

        min-height:
            420px;

    }


    .growth-dashboard {

        width:
            100%;

        padding:
            17px;

        border-radius:
            17px;

    }


    .dashboard-header {

        padding-bottom:
            15px;

    }


    .dashboard-label {

        font-size:
            11px;

    }


    .dashboard-subtitle {

        font-size:
            9px;

    }


    .chart-area {

        height:
            190px;

    }


    .growth-chart {

        height:
            155px;

    }


    .dashboard-metrics {

        gap:
            6px;

    }


    .metric-card {

        padding:
            10px;

    }


    .metric-number {

        font-size:
            19px;

    }


    .metric-label {

        font-size:
            7px;

    }


    .floating-card {

        padding:
            8px 10px;

    }


    .floating-card-top {

        top:
            -4%;

        right:
            -2%;

    }


    .floating-card-bottom {

        bottom:
            -3%;

        left:
            -2%;

    }


    .floating-card strong {

        font-size:
            8px;

    }


    .floating-card span {

        font-size:
            6px;

    }


    .floating-icon,
    .floating-check {

        width:
            24px;

        height:
            24px;

    }


    .hero-flash {

        right:
            15%;

    }

}


/* ---------- Small Mobile ---------- */

@media (max-width: 420px) {

    .hero-title {

        font-size:
            40px;

    }


    .hero-visual {

        min-height:
            380px;

    }


    .dashboard-metrics {

        grid-template-columns:
            1fr 1fr 1fr;

    }


    .metric-number {

        font-size:
            17px;

    }


    .metric-unit {

        display:
            none;

    }


    .floating-card-top {

        transform:
            scale(0.85);

        transform-origin:
            right center;

    }


    .floating-card-bottom {

        transform:
            scale(0.85);

        transform-origin:
            left center;

    }

}

/* ============================================================
   BRAND POSITIONING SECTION
============================================================ */

.positioning-section {

    position: relative;

    padding:
        130px 0
        120px;

    background:
        linear-gradient(
            180deg,
            #0F172A 0%,
            #111827 100%
        );

    overflow: hidden;

}


/* ------------------------------------------------------------
   Subtle background glow
------------------------------------------------------------ */

.positioning-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: 50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139, 92, 246, 0.07),
            transparent 70%
        );

    pointer-events: none;

}


/* ------------------------------------------------------------
   Header
------------------------------------------------------------ */

.positioning-header {

    max-width: 780px;

}


.positioning-header h2 {

    margin-top: 22px;

    font-size:
        clamp(38px, 5vw, 64px);

    letter-spacing:
        -2.5px;

    line-height:
        1.02;

}


.positioning-header p {

    max-width: 680px;

    margin-top: 25px;

    font-size: 17px;

    line-height: 1.8;

}


/* ------------------------------------------------------------
   Pillars
------------------------------------------------------------ */

.positioning-pillars {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 80px;

    border-top:
        1px solid
        var(--color-border);

}


.positioning-pillar {

    position: relative;

    min-height: 250px;

    padding:
        32px 35px
        32px 0;

    border-right:
        1px solid
        var(--color-border);

    transition:
        background var(--transition-medium),
        padding var(--transition-medium);

}


.positioning-pillar:not(:first-child) {

    padding-left: 35px;

}


.positioning-pillar:last-child {

    border-right: none;

}


.positioning-pillar:hover {

    background:
        linear-gradient(
            180deg,
            rgba(0, 240, 255, 0.025),
            transparent
        );

}


/* ------------------------------------------------------------
   Number
------------------------------------------------------------ */

.pillar-number {

    color:
        var(--color-accent-cyan);

    font-family:
        var(--font-heading);

    font-size:
        12px;

    font-weight:
        600;

    letter-spacing:
        1.5px;

}


/* ------------------------------------------------------------
   Content
------------------------------------------------------------ */

.pillar-content {

    margin-top:
        45px;

}


.pillar-content h3 {

    font-size:
        27px;

    letter-spacing:
        -0.5px;

}


.pillar-content p {

    max-width:
        260px;

    margin-top:
        12px;

    font-size:
        14px;

    line-height:
        1.7;

}


/* ------------------------------------------------------------
   Arrow
------------------------------------------------------------ */

.pillar-arrow {

    position: absolute;

    right: 25px;

    bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    border:
        1px solid
        var(--color-border);

    border-radius:
        50%;

    color:
        var(--color-text-muted);

    font-size:
        15px;

    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);

}


.positioning-pillar:hover .pillar-arrow {

    color:
        var(--color-accent-cyan);

    border-color:
        rgba(0, 240, 255, 0.35);

    transform:
        translate(3px, -3px);

}


/* ============================================================
   SERVICES RESPONSIVE
============================================================ */

@media (max-width: 1000px) {

    .services-header {

        grid-template-columns:
            1fr;

        gap:
            30px;

    }


    .services-system {

        grid-template-columns:
            1fr;

    }


    .growth-engine {

        min-height:
            650px;

    }

}


@media (max-width: 768px) {

    .services-section {

        padding:
            90px 0;

    }


    .services-heading h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }


    .services-intro {

        padding-bottom:
            0;

    }


    .services-system {

        margin-top:
            60px;

        gap:
            50px;

    }


    .service-item {

        grid-template-columns:
            35px
            1fr
            35px;

        min-height:
            115px;

    }


    .service-main h3 {

        font-size:
            18px;

    }


    .service-main p {

        font-size:
            12px;

    }


    .growth-engine {

        min-height:
            570px;

        border-radius:
            18px;

    }


    .orbit-one {

        width:
            210px;

        height:
            210px;

    }


    .orbit-two {

        width:
            340px;

        height:
            340px;

    }


    .orbit-three {

        width:
            470px;

        height:
            470px;

    }


    .engine-core {

        width:
            125px;

        height:
            125px;

    }


    .engine-core strong {

        font-size:
            18px;

    }


    .engine-node {

        padding:
            7px 9px;

        font-size:
            7px;

    }


    .node-seo {

        left:
            8%;

    }


    .node-content {

        right:
            8%;

    }


    .node-social {

        left:
            2%;

    }


    .node-meta {

        right:
            2%;

    }


    .node-google {

        left:
            8%;

    }


    .node-ppc {

        right:
            7%;

    }

}


@media (max-width: 480px) {

    .services-heading h2 {

        font-size:
            36px;

    }


    .service-item {

        grid-template-columns:
            30px
            1fr
            30px;

    }


    .service-main h3 {

        font-size:
            17px;

    }


    .service-main p {

        max-width:
            240px;

    }


    .growth-engine {

        min-height:
            500px;

    }


    .engine-core {

        width:
            110px;

        height:
            110px;

    }


    .engine-core strong {

        font-size:
            16px;

    }


    .engine-core-small {

        font-size:
            7px;

    }


    .engine-node {

        transform:
            scale(0.85);

    }


    .node-seo {

        top:
            15%;

    }


    .node-content {

        top:
            15%;

    }


    .node-social {

        top:
            42%;

    }


    .node-meta {

        top:
            42%;

    }


    .node-google {

        bottom:
            18%;

    }


    .node-ppc {

        bottom:
            18%;

    }


    .engine-footer {

        gap:
            5px;

        font-size:
            6px;

    }

}


/* ============================================================
   PROCESS RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .process-section {

        padding:
            100px 0;

    }


    .process-header h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }


    .process-timeline {

        margin-top:
            65px;

    }


    .process-timeline::before {

        left:
            24px;

    }


    .process-step {

        grid-template-columns:
            50px
            1fr;

        gap:
            25px;

        min-height:
            0;

        padding-bottom:
            60px;

    }


    .process-marker {

        width:
            50px;

        height:
            50px;

    }


    .process-content h3 {

        font-size:
            25px;

    }


    .process-content p {

        font-size:
            13px;

    }


    .process-side-text {

        display:
            none;

    }


    .process-cta {

        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            30px;

        margin-top:
            70px;

    }

}


@media (max-width: 480px) {

    .process-header h2 {

        font-size:
            36px;

    }


    .process-step {

        gap:
            18px;

    }


    .process-content h3 {

        font-size:
            22px;

    }

}

/* ============================================================
   WORK RESPONSIVE
============================================================ */

@media (max-width: 900px) {

    .work-header {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            25px;

    }


    .featured-project {

        grid-template-columns:
            1fr;

    }


    .campaign-visual {

        min-height:
            500px;

        border-left:
            none;

        border-top:
            1px solid
            var(--color-border);

    }

}


@media (max-width: 768px) {

    .work-section {

        padding:
            100px 0;

    }


    .work-header h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }


    .featured-project {

        min-height:
            auto;

    }


    .project-info {

        padding:
            30px;

        min-height:
            500px;

    }


    .project-copy {

        margin-top:
            80px;

    }


    .project-copy h3 {

        font-size:
            35px;

    }


    .campaign-visual {

        min-height:
            430px;

    }


    .small-projects {

        grid-template-columns:
            1fr;

    }

}


@media (max-width: 480px) {

    .work-header h2 {

        font-size:
            36px;

    }


    .demo-notice {

        font-size:
            7px;

    }


    .project-info {

        padding:
            24px;

    }


    .project-copy h3 {

        font-size:
            30px;

    }


    .campaign-visual {

        min-height:
            360px;

    }


    .campaign-metric {

        padding:
            9px 11px;

    }


    .campaign-metric strong {

        font-size:
            18px;

    }


    .metric-one {

        left:
            6%;

    }


    .metric-two {

        right:
            6%;

    }


    .metric-three {

        right:
            6%;

    }


    .small-project {

        grid-template-columns:
            30px
            1fr
            30px;

        padding:
            24px;

    }


    .small-project-content h3 {

        font-size:
            21px;

    }

}

/* ============================================================
   TESTIMONIALS RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .testimonials-section {

        padding:
            100px 0;

    }


    .testimonials-header h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }


    .testimonial-slider {

        min-height:
            530px;

        padding:
            45px 30px;

    }


    .testimonial {

        inset:
            45px 30px 90px;

    }


    .testimonial-content blockquote {

        font-size:
            31px;

        letter-spacing:
            -1px;

    }


    .quote-mark {

        right:
            20px;

        font-size:
            120px;

    }


    .testimonial-navigation {

        right:
            25px;

        bottom:
            25px;

    }

}


@media (max-width: 480px) {

    .testimonials-header h2 {

        font-size:
            36px;

    }


    .testimonial-slider {

        min-height:
            510px;

        padding:
            35px 22px;

    }


    .testimonial {

        inset:
            35px 22px 90px;

    }


    .testimonial-content blockquote {

        font-size:
            27px;

        line-height:
            1.15;

    }


    .testimonial-navigation {

        right:
            18px;

        gap:
            10px;

    }


    .testimonial-progress-line {

        width:
            45px;

    }

}

/* ============================================================
   FINAL CTA RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .final-cta-section {

        padding:
            110px 0;

    }


    .final-cta h2 {

        font-size:
            48px;

        letter-spacing:
            -2.5px;

    }


    .final-cta p {

        font-size:
            14px;

    }

}


@media (max-width: 480px) {

    .final-cta h2 {

        font-size:
            40px;

    }

}

/* ============================================================
   ABOUT PAGE RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .about-hero-visual {

        right: -80px;

        opacity: .7;

    }


    .story-layout {

        grid-template-columns: .2fr 1fr;

        gap: 60px;

    }


    .approach-layout {

        gap: 60px;

    }


    .team-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

}


@media (max-width: 768px) {

    .about-hero {

        min-height: 680px;

        padding: 90px 0;

    }


    .about-hero-content {

        max-width: 600px;

    }


    .about-hero-content h1 {

        font-size: 52px;

        letter-spacing: -2.5px;

    }


    .about-hero-visual {

        width: 380px;

        height: 380px;

        right: -100px;

        top: 60%;

        opacity: .4;

    }


    .about-hero-glow {

        right: -250px;

        top: 60%;

    }


    .story-section,
    .beliefs-section,
    .approach-section,
    .team-section,
    .values-section {

        padding: 90px 0;

    }


    .story-layout {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .story-content h2 {

        font-size: 42px;

    }


    .beliefs-grid {

        grid-template-columns: 1fr;

    }


    .belief-card,
    .belief-card:first-child {

        min-height: 250px;

        padding: 30px 0;

        border-right: none;

        border-bottom: 1px solid var(--color-border);

    }


    .belief-card:last-child {

        border-bottom: none;

    }


    .approach-layout {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .approach-content {

        padding-top: 0;

    }


    .approach-heading h2 {

        font-size: 48px;

    }


    .team-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .team-grid {

        grid-template-columns: 1fr 1fr;

    }


    .values-content h2 {

        font-size: 50px;

        letter-spacing: -2.5px;

    }


    .about-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px;

    }

}


@media (max-width: 480px) {

    .about-hero {

        min-height: 650px;

    }


    .about-hero-content h1 {

        font-size: 43px;

    }


    .about-hero-content p {

        font-size: 14px;

    }


    .about-hero-visual {

        width: 300px;

        height: 300px;

        right: -110px;

    }


    .orbit-a {

        width: 130px;

        height: 130px;

    }


    .orbit-b {

        width: 210px;

        height: 210px;

    }


    .orbit-c {

        width: 290px;

        height: 290px;

    }


    .about-core {

        width: 105px;

        height: 105px;

    }


    .about-core strong {

        font-size: 17px;

    }


    .story-content h2 {

        font-size: 36px;

    }


    .beliefs-header h2 {

        font-size: 38px;

    }


    .approach-heading h2 {

        font-size: 42px;

    }


    .approach-lead {

        font-size: 20px !important;

    }


    .team-grid {

        grid-template-columns: 1fr;

    }


    .values-content h2 {

        font-size: 41px;

    }


    .about-cta-box {

        padding: 28px;

    }

}