:root {
    --blue: #026DAF;
    --blue-dark: #004b7d;
    --yellow: #F0B700;

    --black: #07131c;
    --text: #12202b;
    --muted: #667580;

    --white: #ffffff;
    --light: #f7fafc;

    --border: rgba(2, 109, 175, .12);

    --shadow:
        0 25px 70px rgba(10, 40, 60, .12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: white;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.section {
    padding: 120px 0;
}

.section-container,
.nav-container,
.hero-container,
.identity-container,
.cta-container,
.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: absolute;
    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;

    padding: 22px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.logo-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            #00a6e8);

    box-shadow:
        0 8px 25px rgba(2, 109, 175, .25);

    font-size: 10px;
}

.yellow {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #52616b;

    font-size: 13px;
    font-weight: 600;

    transition: .3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-btn {
    padding: 12px 18px;

    border-radius: 50px;

    color: white;

    background: var(--black);

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.nav-btn:hover {
    background: var(--blue);

    transform: translateY(-3px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 850px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(circle at 85% 35%,
            rgba(2, 109, 175, .13),
            transparent 30%),
        radial-gradient(circle at 70% 85%,
            rgba(240, 183, 0, .09),
            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;
}


/* =====================================================
   HERO 3D VISUAL
===================================================== */

.hero-visual {
    min-height: 600px;

    position: relative;

    perspective: 1300px;
}

.brand-board {
    width: 455px;

    position: absolute;

    top: 65px;
    left: 50%;

    transform:
        translateX(-50%) rotateY(-14deg) rotateX(6deg);

    padding: 25px;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(145deg,
            #0b202d,
            #06131c);

    border:
        1px solid rgba(255, 255, 255, .12);

    box-shadow:
        40px 45px 90px rgba(0, 30, 50, .28);

    transition: transform .2s ease;

    z-index: 5;
}

.board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #78909d;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.board-dots {
    display: flex;
    gap: 5px;
}

.board-dots i {
    width: 5px;
    height: 5px;

    display: block;

    border-radius: 50%;

    background: #5f7784;
}

.brand-main {
    display: flex;
    align-items: center;

    gap: 22px;

    padding:
        55px 10px 35px;
}

.brand-symbol {
    width: 105px;
    height: 105px;

    display: grid;
    place-items: center;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            #00a6e8);

    box-shadow:
        15px 20px 45px rgba(0, 130, 210, .22);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;
    font-weight: 800;

    transform:
        rotate(-5deg);
}

.brand-name small {
    display: block;

    color: #7e919d;

    font-size: 8px;

    letter-spacing: 3px;
}

.brand-name strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 42px;

    line-height: .95;

    letter-spacing: -2px;

    margin: 5px 0;
}

.brand-name span {
    color: var(--yellow);

    font-size: 7px;

    letter-spacing: 2px;
}

.brand-tagline {
    padding:
        17px 0;

    border-top:
        1px solid rgba(255, 255, 255, .08);

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

    color: #b6c6ce;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 16px;
}

.brand-palette {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;

    margin-top: 20px;
}

.palette-card {
    height: 65px;

    position: relative;

    border-radius: 10px;
}

.palette-card span {
    position: absolute;

    left: 7px;
    bottom: 7px;

    color: rgba(255, 255, 255, .8);

    font-size: 7px;
}

.palette-card.blue {
    background: var(--blue);
}

.palette-card.yellow {
    background: var(--yellow);
}

.palette-card.dark {
    background: #182932;
}

.palette-card.light {
    background: #f3f7f9;

    color: #17242b;
}

.palette-card.light span {
    color: #63727a;
}

.brand-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 22px;
}

.brand-bottom small {
    display: block;

    color: #627783;

    font-size: 6px;

    margin-bottom: 5px;
}

.brand-bottom strong {
    font-size: 9px;
}


/* =====================================================
   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, .9);

    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: 13px;
}

.floating-card small {
    display: block;

    color: #7b8790;

    font-size: 9px;

    margin-top: 2px;
}

.mini-logo,
.color-icon,
.creative-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    font-weight: 800;
}

.mini-logo {
    color: var(--blue);
    background: rgba(2, 109, 175, .1);
}

.color-icon {
    color: #9d7800;
    background: rgba(240, 183, 0, .14);
}

.creative-icon {
    color: white;
    background: var(--blue);
}

.logo-card {
    top: 35px;
    right: -15px;
}

.color-card {
    bottom: 155px;
    left: -25px;

    animation-delay: 1s;
}

.creative-card {
    bottom: 45px;
    right: 0;

    animation-delay: 2s;
}

.floating-star {
    position: absolute;

    right: 25px;
    bottom: 115px;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(135deg,
            var(--yellow),
            #d99e00);

    box-shadow:
        0 15px 35px rgba(200, 150, 0, .25);

    font-size: 24px;

    animation:
        float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* =====================================================
   HEADINGS
===================================================== */

.section-heading {
    max-width: 720px;

    margin-bottom: 65px;
}

.section-heading h2,
.identity-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,
.identity-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;
}


/* =====================================================
   IDENTITY
===================================================== */

.identity-section {
    padding: 130px 0;

    background: white;
}

.identity-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 100px;
}

.identity-content>p {
    color: var(--muted);

    line-height: 1.8;

    margin:
        25px 0 35px;
}

.identity-list {
    display: grid;
    gap: 22px;
}

.identity-list>div {
    display: flex;
    gap: 15px;
}

.identity-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;
}

.identity-list strong {
    font-size: 13px;
}

.identity-list p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

    margin-top: 5px;
}


/* =====================================================
   BRAND BOOK
===================================================== */

.identity-visual {
    min-height: 500px;

    display: grid;
    place-items: center;

    perspective: 1200px;
}

.brand-book {
    width: 470px;
    height: 390px;

    position: relative;

    display: flex;

    transform:
        rotateY(-12deg) rotateX(5deg) rotateZ(2deg);

    filter:
        drop-shadow(30px 35px 35px rgba(0, 40, 65, .18));
}

.book-cover {
    width: 53%;
    height: 100%;

    position: relative;

    padding: 35px 28px;

    overflow: hidden;

    color: white;

    border-radius:
        10px 0 0 10px;

    background:
        linear-gradient(145deg,
            #005a90,
            #003b61);
}

.book-cover::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .15);
}

.book-symbol {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--blue);

    background: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 70px;
}

.book-cover small {
    display: block;

    color: #8fb3c8;

    font-size: 7px;

    letter-spacing: 2px;
}

.book-cover strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 35px;

    line-height: .9;

    letter-spacing: -2px;

    margin: 8px 0;
}

.book-cover span {
    color: var(--yellow);

    font-size: 7px;

    letter-spacing: 1.5px;
}

.cover-line {
    width: 50px;
    height: 2px;

    margin-top: 25px;

    background: var(--yellow);
}

.book-cover em {
    position: absolute;

    bottom: 25px;
    left: 28px;

    color: #83a7bc;

    font-size: 8px;
    font-style: normal;
}

.book-pages {
    width: 47%;
    height: 100%;

    padding: 28px 20px;

    border-radius:
        0 10px 10px 0;

    background:
        #f8fafb;

    color: var(--text);
}

.page-header {
    display: flex;
    justify-content: space-between;

    color: #7c8991;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 1px;
}

.color-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 30px;
}

.large-color {
    height: 90px;

    border-radius: 8px;
}

.large-color.blue {
    background: var(--blue);
}

.large-color.yellow {
    background: var(--yellow);
}

.page-lines {
    display: grid;
    gap: 7px;

    margin-top: 25px;
}

.page-lines i {
    display: block;

    width: 90%;

    height: 5px;

    border-radius: 5px;

    background: #dfe7eb;
}

.page-lines i:nth-child(2) {
    width: 70%;
}

.page-lines i:nth-child(3) {
    width: 82%;
}

.page-lines i:nth-child(4) {
    width: 55%;
}

.type-preview {
    margin-top: 25px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 48px;
    font-weight: 700;

    color: var(--blue);
}


/* =====================================================
   CREATIVE SHOWCASE
===================================================== */

.creative-section {
    background: #f7fafc;
}

.creative-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-auto-rows: 330px;

    gap: 18px;
}

.creative-tile {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    border:
        1px solid var(--border);

    transition: .4s;
}

.creative-tile:hover {
    transform: translateY(-8px);

    box-shadow:
        var(--shadow);
}

.tile-large {
    grid-row: span 2;
}

.tile-wide {
    grid-column: span 2;
}

.tile-number {
    position: absolute;

    top: 20px;
    right: 22px;

    z-index: 5;

    color: rgba(255, 255, 255, .6);

    font-size: 10px;
    font-weight: 800;
}

.tile-art {
    height: 75%;

    position: relative;

    overflow: hidden;
}

.art-one {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #004b78,
            #026daf);
}

.art-circle {
    width: 280px;
    height: 280px;

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .2);

    box-shadow:
        0 0 0 50px rgba(255, 255, 255, .025),
        0 0 0 100px rgba(255, 255, 255, .02);
}

.art-one strong {
    position: relative;
    z-index: 2;

    color: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 42px;

    line-height: .9;

    letter-spacing: -2px;

    text-align: center;
}

.art-two {
    display: grid;
    place-items: center;

    background:
        #f1f5f7;
}

.product-box {
    width: 120px;
    height: 150px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(145deg,
            var(--blue),
            #004b7d);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;
    font-weight: 800;

    box-shadow:
        20px 25px 30px rgba(0, 50, 80, .2);

    transform:
        rotate(-8deg) perspective(300px) rotateY(-15deg);
}

.art-three {
    display: grid;
    place-items: center;

    background:
        var(--yellow);
}

.poster-text {
    color: #07131c;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 48px;
    font-weight: 800;

    letter-spacing: -4px;

    transform:
        rotate(-8deg);
}

.poster-line {
    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    border:
        3px solid rgba(7, 19, 28, .8);
}

.art-four {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(120deg,
            #07131c,
            #004c79);
}

.floating-word {
    position: absolute;

    color: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 46px;
    font-weight: 800;

    letter-spacing: -3px;

    transform:
        rotate(-8deg);

    opacity: .9;
}

.floating-word.second {
    transform:
        translate(60px, 45px) rotate(-8deg);

    color: var(--yellow);

    opacity: .8;
}

.floating-word.third {
    transform:
        translate(120px, 90px) rotate(-8deg);

    color: #49b7e8;

    opacity: .7;
}

.tile-info {
    height: 25%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px 20px;
}

.tile-info small {
    color: #87949d;

    font-size: 7px;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.tile-info strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;
}


/* =====================================================
   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: 650px;
    height: 650px;

    top: -330px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(2, 109, 175, .35),
            transparent 70%);
}

.cta-shapes span {
    position: absolute;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 50%;
}

.cta-shapes span:nth-child(1) {
    width: 300px;
    height: 300px;

    left: 5%;
    bottom: -180px;
}

.cta-shapes span:nth-child(2) {
    width: 180px;
    height: 180px;

    right: 10%;
    top: 30px;
}

.cta-shapes span:nth-child(3) {
    width: 100px;
    height: 100px;

    left: 30%;
    top: 70px;
}

.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;
    }

    .brand-board {
        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;
    }

    .identity-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .identity-content {
        text-align: center;
    }

    .identity-list {
        max-width: 480px;

        margin: auto;

        text-align: left;
    }

    .creative-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .tile-large {
        grid-row: span 1;
    }

    .tile-wide {
        grid-column: span 2;
    }

}


@media(max-width:600px) {

    .section {
        padding: 80px 0;
    }

    .section-container,
    .nav-container,
    .hero-container,
    .identity-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;
    }

    .brand-board {
        width: 410px;
    }

    .service-grid,
    .process-grid,
    .creative-grid {
        grid-template-columns: 1fr;
    }

    .tile-wide {
        grid-column: span 1;
    }

    .identity-visual {
        min-height: 400px;
    }

    .brand-book {
        width: 400px;
        height: 330px;
    }

    .section-heading h2,
    .identity-content h2,
    .cta-container h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }

    .floating-card {
        display: none;
    }

    .footer-container {
        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

}