:root {
    --blue: #026DAF;
    --blue-dark: #004b7d;
    --yellow: #F0B700;

    --black: #07131c;
    --text: #12202b;
    --muted: #667580;

    --white: #ffffff;
    --light: #f7fafc;

    --border: rgba(2, 109, 175, 0.12);

    --shadow:
        0 25px 70px rgba(10, 40, 60, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.section {
    padding: 120px 0;
}

.section-container,
.nav-container,
.hero-container,
.strategy-container,
.cta-container,
.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


 

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 850px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 85% 40%,
            rgba(2, 109, 175, .13),
            transparent 30%),
        radial-gradient(circle at 65% 80%,
            rgba(240, 183, 0, .10),
            transparent 25%),
        #fbfdff;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(rgba(2, 109, 175, .05) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(2, 109, 175, .05) 1px,
            transparent 1px);

    background-size: 70px 70px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent);
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    padding-top: 50px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 0 6px rgba(240, 183, 0, .12);
}

.hero h1 {
    max-width: 650px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(55px,
            6vw,
            82px);

    line-height: .98;

    letter-spacing: -5px;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(100deg,
            var(--blue),
            #008fd1,
            var(--yellow));

    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    max-width: 550px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 23px;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            #008bd0);

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(2, 109, 175, .22);

    transition: .35s;
}

.primary-btn:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 20px 45px rgba(2, 109, 175, .3);
}

.secondary-btn {
    padding: 15px 22px;

    border:
        1px solid #d9e4ea;

    border-radius: 12px;

    background: white;

    font-size: 14px;
    font-weight: 700;

    transition: .3s;
}

.secondary-btn:hover {
    color: var(--blue);

    border-color:
        var(--blue);
}

.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 55px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stats strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;
}

.hero-stats small {
    color: #89959c;

    font-size: 11px;
}


/* =====================================================
   3D SOCIAL DASHBOARD
===================================================== */

.hero-visual {
    min-height: 600px;

    position: relative;

    perspective: 1200px;
}

.social-dashboard {
    width: 440px;

    position: absolute;

    top: 65px;
    left: 50%;

    transform:
        translateX(-50%) rotateY(-12deg) rotateX(5deg);

    border-radius: 25px;

    overflow: hidden;

    color: white;

    background:
        rgba(7, 19, 28, .98);

    border:
        1px solid rgba(255, 255, 255, .12);

    box-shadow:
        40px 45px 90px rgba(0, 30, 50, .25);

    z-index: 5;

    transition:
        transform .2s ease;
}

.social-header {
    height: 62px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.brand-avatar {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            #00a6e8);

    font-size: 9px;
    font-weight: 800;
}

.brand-info strong {
    display: block;

    font-size: 11px;
}

.brand-info small {
    display: block;

    color: #71838e;

    font-size: 8px;

    margin-top: 3px;
}

.verified {
    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background: var(--blue);

    font-size: 8px;
}

.live-badge {
    margin-left: auto;

    padding: 6px 8px;

    border-radius: 6px;

    color: #64d999;

    background:
        rgba(60, 220, 150, .08);

    font-size: 7px;
    font-weight: 800;
}


/* =====================================================
   PROFILE
===================================================== */

.profile-area {
    padding: 15px;
}

.profile-cover {
    height: 65px;

    border-radius: 12px;

    background:
        radial-gradient(circle at 70% 20%,
            rgba(240, 183, 0, .7),
            transparent 20%),
        linear-gradient(120deg,
            #005783,
            #026daf,
            #041a29);
}

.profile-row {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: -18px;

    padding: 0 10px;
}

.profile-picture {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    border:
        3px solid #07131c;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            #00a6e8);

    font-size: 9px;
    font-weight: 800;
}

.profile-details {
    padding-top: 16px;
}

.profile-details strong {
    display: block;

    font-size: 10px;
}

.profile-details small {
    display: block;

    color: #7d909b;

    font-size: 7px;

    margin-top: 3px;
}

.profile-row button {
    margin-left: auto;

    margin-top: 15px;

    padding: 6px 12px;

    border: 0;

    border-radius: 7px;

    color: white;

    background: var(--blue);

    font-size: 7px;
    font-weight: 700;
}

.profile-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 14px;
}

.profile-stats div {
    padding: 9px;

    text-align: center;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, .04);
}

.profile-stats strong {
    display: block;

    font-size: 11px;
}

.profile-stats span {
    display: block;

    color: #70828d;

    font-size: 7px;

    margin-top: 3px;
}


/* =====================================================
   SOCIAL POST
===================================================== */

.social-post {
    margin: 0 15px 15px;

    overflow: hidden;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .045);
}

.post-header {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px;
}

.mini-avatar {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: var(--blue);

    font-size: 7px;
    font-weight: 800;
}

.post-header strong {
    display: block;

    font-size: 8px;
}

.post-header small {
    display: block;

    color: #6e818d;

    font-size: 6px;

    margin-top: 2px;
}

.post-header>span {
    margin-left: auto;

    color: #728692;

    font-size: 10px;
}

.post-visual {
    height: 175px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #004c79,
            #026daf,
            #07131c);
}

.post-circle {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .15);
}

.circle-one {
    width: 240px;
    height: 240px;
}

.circle-two {
    width: 150px;
    height: 150px;

    background:
        radial-gradient(circle,
            rgba(240, 183, 0, .25),
            transparent 65%);
}

.post-copy {
    position: relative;

    z-index: 2;

    text-align: center;
}

.post-copy small {
    color: var(--yellow);

    font-size: 7px;

    letter-spacing: 2px;
}

.post-copy strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 27px;

    line-height: .95;

    letter-spacing: -1px;

    margin-top: 7px;
}

.post-copy span {
    color: var(--yellow);
}

.post-actions {
    display: flex;

    justify-content: space-between;

    padding: 11px;

    color: #b7c8d1;

    font-size: 8px;
}


/* =====================================================
   ANALYTICS
===================================================== */

.analytics {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    padding: 0 15px 18px;
}

.analytics-item {
    padding: 10px;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, .04);
}

.analytics-item small {
    display: block;

    color: #6c808c;

    font-size: 6px;

    margin-bottom: 4px;
}

.analytics-item strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;
}

.analytics-item span {
    color: #5dd694;

    font-size: 7px;
}


/* =====================================================
   ORBITS
===================================================== */

.orbit {
    position: absolute;

    border:
        1px dashed rgba(2, 109, 175, .18);

    border-radius: 50%;
}

.orbit-one {
    width: 550px;
    height: 550px;

    top: 15px;
    left: 50%;

    transform:
        translateX(-50%) rotateX(65deg);
}

.orbit-two {
    width: 390px;
    height: 390px;

    top: 95px;
    left: 50%;

    transform:
        translateX(-50%) rotateY(65deg);
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    border:
        1px solid rgba(255, 255, 255, .7);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .88);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 20px 50px rgba(0, 50, 80, .13);

    animation:
        float 5s ease-in-out infinite;
}

.floating-card strong {
    display: block;

    font-size: 14px;
}

.floating-card small {
    display: block;

    color: #7b8790;

    font-size: 9px;

    margin-top: 2px;
}

.notification-icon,
.follower-icon,
.share-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    font-weight: 800;
}

.notification-icon {
    color: #d44562;

    background:
        rgba(212, 69, 98, .1);
}

.follower-icon {
    color: var(--blue);

    background:
        rgba(2, 109, 175, .1);
}

.share-icon {
    color: #a17b00;

    background:
        rgba(240, 183, 0, .16);
}

.notification-card {
    top: 35px;
    right: -15px;
}

.follower-card {
    bottom: 155px;
    left: -25px;

    animation-delay: 1s;
}

.share-card {
    bottom: 55px;
    right: 0;

    animation-delay: 2s;
}

.floating-heart {
    position: absolute;

    right: 25px;
    bottom: 115px;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(135deg,
            #e95b78,
            #c52e52);

    box-shadow:
        0 15px 35px rgba(200, 45, 80, .25);

    font-size: 22px;

    animation:
        float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-15px);
    }

}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    max-width: 720px;

    margin-bottom: 65px;
}

.section-heading h2,
.strategy-content h2,
.cta-container h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px,
            5vw,
            62px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.section-heading h2 span,
.strategy-content h2 span,
.cta-container h2 span {
    color: var(--blue);
}

.section-heading p {
    color: var(--muted);

    line-height: 1.8;

    margin-top: 20px;
}

.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #f7fafc;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 315px;

    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background: white;

    overflow: hidden;

    transition: .4s;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(2, 109, 175, .07);

    transition: .4s;
}

.service-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow);
}

.service-card:hover::before {
    transform:
        scale(2);
}

.service-card.featured {
    color: white;

    background:
        linear-gradient(145deg,
            #005c94,
            #003e66);

    box-shadow:
        0 25px 60px rgba(0, 76, 125, .22);
}

.service-card.featured p {
    color: #c4d8e4;
}

.service-card.featured a {
    color: var(--yellow);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #aebcc4;

    font-size: 11px;
    font-weight: 700;
}

.featured .service-number {
    color: #9fc4d8;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 35px;

    border-radius: 15px;

    color: var(--blue);

    background:
        rgba(2, 109, 175, .09);

    font-size: 18px;
    font-weight: 800;
}

.featured .service-icon {
    color: var(--yellow);

    background:
        rgba(255, 255, 255, .1);
}

.service-card h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 22px;

    margin-bottom: 13px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-card a {
    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
}


/* =====================================================
   STRATEGY
===================================================== */

.strategy-section {
    padding: 130px 0;

    background: white;
}

.strategy-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;
}

.strategy-content>p {
    color: var(--muted);

    line-height: 1.8;

    margin:
        25px 0 35px;
}

.strategy-list {
    display: grid;

    gap: 22px;
}

.strategy-list>div {
    display: flex;

    gap: 15px;
}

.strategy-list>div>span {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--blue);

    background:
        rgba(2, 109, 175, .09);

    font-size: 10px;
    font-weight: 800;
}

.strategy-list strong {
    font-size: 13px;
}

.strategy-list p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

    margin-top: 5px;
}


/* =====================================================
   METRIC DASHBOARD
===================================================== */

.strategy-visual {
    min-height: 470px;

    display: grid;
    place-items: center;

    position: relative;
}

.metric-dashboard {
    width: 470px;

    padding: 28px;

    border:
        1px solid #dce7ed;

    border-radius: 24px;

    background: white;

    box-shadow:
        30px 30px 80px rgba(0, 50, 80, .13);

    transform:
        rotateY(-9deg) rotateX(5deg);
}

.metric-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    border-bottom:
        1px solid #edf1f3;
}

.metric-header strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;
}

.metric-header span {
    color: #8b979e;

    font-size: 9px;
}

.big-metric {
    padding: 25px 0;
}

.big-metric small {
    display: block;

    color: #87949d;

    font-size: 8px;

    margin-bottom: 6px;
}

.big-metric strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 35px;
}

.big-metric span {
    margin-left: 8px;

    color: #159447;

    font-size: 9px;
    font-weight: 800;
}


/* =====================================================
   BAR CHART
===================================================== */

.bar-chart {
    height: 220px;

    display: flex;

    align-items: end;

    gap: 14px;

    padding:
        15px 10px 0;

    border-bottom:
        1px solid #e7eef2;
}

.bar-chart>div {
    height: var(--h);

    flex: 1;

    position: relative;

    border-radius:
        8px 8px 2px 2px;

    background:
        linear-gradient(to top,
            var(--blue),
            #54b9e8);

    transform-origin:
        bottom;

    animation:
        barGrow 1s ease forwards;
}

.bar-chart>div:nth-last-child(1) {
    background:
        linear-gradient(to top,
            var(--yellow),
            #ffd75a);
}

.bar-chart span {
    position: absolute;

    bottom: -18px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #8b979e;

    font-size: 7px;
}

@keyframes barGrow {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }

}

.metric-bottom {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.metric-bottom small {
    display: block;

    color: #87949d;

    font-size: 8px;

    margin-bottom: 5px;
}

.metric-bottom strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 18px;
}

.strategy-bubble {
    position: absolute;

    padding: 12px 16px;

    border-radius: 12px;

    color: white;

    background:
        var(--black);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;

    animation:
        float 5s ease-in-out infinite;
}

.strategy-bubble small {
    display: block;

    color: #84939c;

    font-family: "Inter";

    font-size: 8px;

    margin-top: 3px;
}

.bubble-one {
    top: 55px;
    right: -15px;
}

.bubble-two {
    bottom: 65px;
    left: -15px;

    animation-delay: 1s;
}


/* =====================================================
   PLATFORMS
===================================================== */

.platforms {
    background: #f7fafc;
}

.platform-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.platform {
    height: 120px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: white;

    transition: .3s;
}

.platform:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 20px 40px rgba(2, 109, 175, .12);
}

.platform-logo {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 18px;

    font-weight: 800;
}

.instagram {
    background:
        linear-gradient(135deg,
            #f9ce34,
            #ee2a7b,
            #6228d7);
}

.facebook {
    background: #1877f2;
}

.youtube {
    background: #ff0000;
}

.linkedin {
    background: #0077b5;
}

.x {
    background: #111;
}

.pinterest {
    background: #e60023;
}

.platform strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 13px;
}

.platform small {
    display: block;

    color: #87949d;

    font-size: 9px;

    margin-top: 5px;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
    background: white;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.process-item {
    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: white;

    transition: .35s;
}

.process-item:hover {
    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);
}

.process-item>span {
    display: block;

    color: var(--yellow);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;

    margin-bottom: 50px;
}

.process-item h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    margin-bottom: 12px;
}

.process-item p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    color: white;

    background: #06141e;
}

.cta-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(2, 109, 175, .35),
            transparent 70%);
}

.cta-container {
    position: relative;

    text-align: center;
}

.cta-badge {
    display: inline-block;

    padding: 9px 14px;

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 50px;

    color: #9ab2c1;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.cta-container h2 {
    max-width: 850px;

    margin: auto;
}

.cta-container h2 span {
    color: var(--yellow);
}

.cta-container p {
    max-width: 560px;

    margin:
        25px auto 35px;

    color: #9caeb9;

    line-height: 1.8;
}

.large {
    padding: 18px 27px;
}


 

/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1050px) {

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .social-dashboard {
        width: 410px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width:800px) {

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;

        padding:
            140px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .strategy-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .strategy-content {
        text-align: center;
    }

    .strategy-list {
        max-width: 480px;

        margin: auto;

        text-align: left;
    }

    .platform-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width:600px) {

    .section {
        padding: 80px 0;
    }

    .section-container,
    .nav-container,
    .hero-container,
    .strategy-container,
    .cta-container,
    .footer-container {
        width:
            min(100% - 28px,
                1180px);
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -3px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats strong {
        font-size: 18px;
    }

    .hero-visual {
        min-height: 440px;

        transform: scale(.75);

        margin-left: -50px;
        margin-right: -50px;
    }

    .social-dashboard {
        width: 410px;
    }

    .service-grid,
    .process-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .metric-dashboard {
        width: 100%;

        transform: none;
    }

    .strategy-bubble {
        display: none;
    }

    .section-heading h2,
    .strategy-content h2,
    .cta-container h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }

    .footer-container {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

}