/* =========================================================
   AZUL DIGITAL MARKETING
   COMPLETE WEBSITE STYLES
========================================================= */

/* =========================================
   HERO WELCOME
========================================= */

.hero-welcome {
    display: flex;
    align-items: baseline;
    gap: 10px;

    margin-bottom: 22px;
}


.hero-welcome span {
    color: #f4511e;

    font-family:
        "Segoe Script",
        "Brush Script MT",
        cursive;

    font-size: 28px;

    font-weight: 500;

    line-height: 1;

    transform: rotate(-2deg);
}


.hero-welcome strong {
    color: #1238c7;

    font-family:
        "Aptos",
        Arial,
        sans-serif;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;
}

/* =========================================
   HERO BUTTON ARROWS
========================================= */

.btn-arrow {
    display: inline-block;

    margin-left: 8px;

    font-size: 16px;

    line-height: 1;

    transition: transform 0.3s ease;
}

/* =========================================
   HERO HIGHLIGHTS
========================================= */

.hero-highlights {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    max-width: 720px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(18, 56, 199, 0.12);
}


.hero-highlight {
    padding: 0 22px;

    border-right: 1px solid rgba(18, 56, 199, 0.12);
}


.hero-highlight:first-child {
    padding-left: 0;
}


.hero-highlight:last-child {
    border-right: none;
}


.hero-highlight strong {
    display: block;

    margin-bottom: 6px;

    color: #1238c7;

    font-family:
        "Aptos",
        Arial,
        sans-serif;

    font-size: 23px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.hero-highlight:first-child strong,
.hero-highlight:nth-child(3) strong {
    color: #f4511e;
}


.hero-highlight span {
    display: block;

    color: #667085;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 600;
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

/* =========================================================
   1. GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Aptos", "Segoe UI", Arial, sans-serif;

    background: #ffffff;

    color: #101828;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


img {
    display: block;

    max-width: 100%;
}


.container {
    width: min(90%, 1200px);

    margin: 0 auto;
}


.section {
    position: relative;
}


/* Azul brand colours

   BLUE  = #1238C7
   ORANGE = #F4511E
*/


/* =========================================================
   2. NAVIGATION
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid #eeeeee;

    backdrop-filter: blur(12px);
}


.navbar {
    width: min(90%, 1240px);

    min-height: 84px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.brand {
    flex-shrink: 0;
}


.brand img {
    width: 135px;

    height: auto;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 34px;

    list-style: none;

    margin-left: auto;
}


.nav-links a {
    position: relative;

    color: #101828;

    font-size: 14px;

    font-weight: 600;

    transition: color 0.3s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #f4511e;

    transition: width 0.3s ease;
}


.nav-links a:hover {
    color: #1238c7;
}


.nav-links a:hover::after {
    width: 100%;
}


.nav-cta {
    flex-shrink: 0;

    padding: 13px 24px;

    border-radius: 6px;

    background: #1238c7;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.nav-cta:hover {
    background: #f4511e;

    transform: translateY(-2px);
}


/* =========================================================
   3. HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 84px);

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);

    align-items: center;

    gap: 30px;

    padding: 70px max(5%, calc((100vw - 1200px) / 2));

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(18, 56, 199, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(244, 81, 30, 0.08),
            transparent 28%
        ),
        #ffffff;
}


/* Large background ring */

.hero::before {
    content: "";

    position: absolute;

    width: 620px;

    height: 620px;

    border: 1px solid rgba(18, 56, 199, 0.08);

    border-radius: 50%;

    right: -250px;

    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;
}


/* Left content */

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 720px;
}


.eyebrow {
    margin-bottom: 24px;

    color: #f4511e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3.5px;
}


.eyebrow span {
    padding: 0 5px;
}


.hero h1 {
    max-width: 720px;

    color: #101828;

    font-size: clamp(50px, 5.7vw, 82px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;
}


.hero h1 span {
    display: block;

    color: #1238c7;
}


.hero-text {
    max-width: 590px;

    margin-top: 30px;

    color: #667085;

    font-size: 18px;

    line-height: 1.75;
}


.hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 38px;
}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.btn-primary {
    background: #1238c7;

    color: #ffffff;

    box-shadow: 0 12px 28px rgba(18, 56, 199, 0.20);
}


.btn-primary:hover {
    background: #f4511e;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(244, 81, 30, 0.22);
}


.btn-secondary {
    background: #ffffff;

    border: 1px solid #d0d5dd;

    color: #101828;
}


.btn-secondary:hover {
    border-color: #1238c7;

    color: #1238c7;

    transform: translateY(-3px);
}


.btn-white {
    background: #ffffff;

    color: #1238c7;

    margin-top: 30px;
}


.btn-white:hover {
    background: #101828;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   5. HERO ART
========================================================= */

.hero-art {
    position: relative;

    width: 100%;

    height: 540px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 3;
}


/* Rings */

.art-ring {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.ring-large {
    width: 500px;

    height: 500px;

    border: 1px solid rgba(18, 56, 199, 0.13);

    animation: slowRotate 30s linear infinite;
}


.ring-medium {
    width: 390px;

    height: 390px;

    border: 1px solid rgba(244, 81, 30, 0.12);

    animation: slowRotateReverse 22s linear infinite;
}


.ring-small {
    width: 280px;

    height: 280px;

    border: 1px dashed rgba(18, 56, 199, 0.15);

    animation: slowRotate 18s linear infinite;
}


/* Growth card */

.growth-card {
    position: relative;

    width: 285px;

    height: 355px;

    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #173fd4 0%,
            #1238c7 45%,
            #0a238f 100%
        );

    color: #ffffff;

    box-shadow:
        0 35px 70px rgba(18, 56, 199, 0.28);

    transform: rotate(4deg);

    z-index: 5;

    transition: transform 0.5s ease;
}


.hero-art:hover .growth-card {
    transform: rotate(1deg) translateY(-8px);
}


.growth-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.75;
}


.growth-heading {
    display: flex;

    flex-direction: column;

    margin-top: 65px;

    font-size: 31px;

    line-height: 1;
}


.growth-heading span {
    color: #ffffff;
}


.growth-heading strong {
    margin-top: 4px;

    color: #ff6a2a;

    font-size: 34px;
}


/* Chart */

.growth-chart {
    position: relative;

    height: 105px;

    margin-top: 34px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    overflow: hidden;
}


.chart-path {
    position: absolute;

    left: 8px;

    bottom: 18px;

    width: 205px;

    height: 70px;

    border-top: 3px solid #ff6a2a;

    transform: skewY(-20deg);

    filter: drop-shadow(
        0 0 8px rgba(255, 106, 42, 0.7)
    );
}


.chart-point {
    position: absolute;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #ff6a2a;

    box-shadow:
        0 0 12px rgba(255, 106, 42, 0.8);
}


.point-1 {
    left: 12px;

    bottom: 22px;
}


.point-2 {
    left: 65px;

    bottom: 40px;
}


.point-3 {
    left: 120px;

    bottom: 58px;
}


.point-4 {
    left: 175px;

    bottom: 78px;
}


.growth-bottom {
    display: flex;

    justify-content: space-between;

    margin-top: 20px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.growth-bottom strong {
    color: #ff6a2a;
}


/* Floating labels */

.floating-label {
    position: absolute;

    z-index: 10;

    padding: 10px 17px;

    border: 1px solid #e4e7ec;

    border-radius: 50px;

    background: #ffffff;

    color: #1238c7;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    box-shadow:
        0 15px 30px rgba(16, 24, 40, 0.10);
}


.label-social {
    top: 85px;

    left: 25px;

    animation: floatUp 4s ease-in-out infinite;
}


.label-branding {
    top: 220px;

    right: 5px;

    color: #f4511e;

    animation: floatDown 5s ease-in-out infinite;
}


.label-results {
    bottom: 80px;

    left: 45px;

    animation: floatUp 4.5s ease-in-out infinite;
}


/* Orange decorative orb */

.orange-orb {
    position: absolute;

    width: 45px;

    height: 45px;

    right: 65px;

    bottom: 70px;

    border-radius: 50%;

    background: #f4511e;

    box-shadow:
        0 0 35px rgba(244, 81, 30, 0.35);

    animation: pulseOrb 3s ease-in-out infinite;
}


/* =========================================================
   6. ABOUT
========================================================= */

.about {
    padding: 140px 0;

    background: #f8faff;
}


.section-tag {
    margin-bottom: 20px;

    color: #f4511e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.section-tag.light {
    color: #ff8a63;
}


.about-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 100px;

    align-items: start;
}


.about h2,
.section-heading h2,
.work-heading h2,
.contact h2 {
    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.about h2 span,
.section-heading h2 span,
.work-heading h2 span {
    color: #1238c7;
}


.about-content {
    padding-top: 8px;
}


.about-content p {
    margin-bottom: 22px;

    color: #667085;

    font-size: 17px;

    line-height: 1.8;
}

/* =========================================================
   7. ABOUT PRINCIPLES
========================================================= */

.about-principles {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    margin-top: 80px;

    border-top: 1px solid #dfe4ec;

    border-bottom: 1px solid #dfe4ec;
}


.principle {
    display: grid;

    grid-template-columns: auto 1fr;

    gap: 25px;

    padding: 35px 30px;

    border-right: 1px solid #dfe4ec;
}


.principle:first-child {
    padding-left: 0;
}


.principle:last-child {
    border-right: none;

    padding-right: 0;
}


.principle-number {
    color: #f4511e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.principle h3 {
    margin-bottom: 10px;

    color: #101828;

    font-size: 20px;

    font-weight: 700;
}


.principle p {
    max-width: 250px;

    color: #667085;

    font-size: 14px;

    line-height: 1.7;
}


.about-lead {
    font-size: 19px !important;

    color: #475467 !important;

    line-height: 1.75 !important;
}

/* =========================================================
   7. SERVICES
========================================================= */

.services {
    padding: 140px 0;

    background: #ffffff;
}


.section-heading {
    display: grid;

    grid-template-columns: 1.15fr 0.65fr;

    gap: 80px;

    align-items: end;
}


.section-heading h2 {
    max-width: 750px;

    color: #101828;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.section-heading h2 span {
    display: block;

    color: #1238c7;
}


.section-heading p {
    color: #667085;

    font-size: 17px;

    line-height: 1.8;
}


/* Services list */

.services-list {
    margin-top: 75px;

    border-top: 1px solid #dfe4ec;
}


.service-row {
    display: grid;

    grid-template-columns: 100px 1fr 60px;

    align-items: center;

    gap: 30px;

    min-height: 170px;

    padding: 30px 0;

    border-bottom: 1px solid #dfe4ec;

    transition: all 0.35s ease;
}


/* Number */

.service-number {
    color: #f4511e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* Information */

.service-info {
    max-width: 650px;
}


.service-info h3 {
    margin-bottom: 10px;

    color: #101828;

    font-size: 25px;

    font-weight: 750;

    transition: color 0.3s ease;
}


.service-info p {
    max-width: 620px;

    color: #667085;

    font-size: 15px;

    line-height: 1.7;
}


/* Arrow */

.service-arrow {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d0d5dd;

    border-radius: 50%;

    color: #1238c7;

    font-size: 22px;

    transition: all 0.35s ease;
}


/* Hover */

.service-row:hover {
    padding-left: 20px;

    padding-right: 20px;

    background: #f8faff;
}


.service-row:hover .service-info h3 {
    color: #1238c7;
}


.service-row:hover .service-arrow {
    border-color: #1238c7;

    background: #1238c7;

    color: #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   8. OUR WORK
========================================================= */

.work {
    padding: 140px 0;

    background: #101828;

    color: #ffffff;

    overflow: hidden;
}


.work-heading {
    display: grid;

    grid-template-columns: 1.15fr 0.6fr;

    gap: 80px;

    align-items: end;
}


.work-heading h2 {
    max-width: 700px;

    color: #ffffff;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.work-heading h2 span {
    display: block;

    color: #3154df;
}


.work-heading p {
    color: #aab2c0;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects {
    display: grid;

    grid-template-columns: 1.25fr 0.75fr;

    gap: 22px;

    margin-top: 70px;
}


.project {
    min-width: 0;
}


.project-large {
    grid-row: span 2;
}


/* Project visual */

.project-visual {
    position: relative;

    height: 330px;

    padding: 28px;

    overflow: hidden;

    border-radius: 4px;
}


.project-large .project-visual {
    height: 682px;
}


.project-label {
    position: relative;

    z-index: 5;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* Blue project */

.project-blue {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(62, 91, 230, 0.8),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #1238c7,
            #081b72
        );
}


.project-display {
    position: absolute;

    width: 70%;

    height: 72%;

    right: 8%;

    bottom: -8%;

    padding: 30px;

    background: #f8faff;

    color: #101828;

    transform: rotate(-5deg);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25);
}


.display-top {
    display: flex;

    justify-content: space-between;

    color: #1238c7;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.display-title {
    margin-top: 70px;

    font-size: clamp(35px, 4vw, 58px);

    line-height: 0.9;

    letter-spacing: -3px;

    font-weight: 800;
}


.display-title strong {
    color: #1238c7;
}


.display-line {
    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 40px;

    height: 3px;

    background: #f4511e;
}


/* Orange project */

.project-orange {
    background: #f4511e;
}


.orange-shape {
    position: absolute;

    width: 260px;

    height: 260px;

    right: -70px;

    bottom: -100px;

    border: 45px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;
}


.orange-text {
    position: absolute;

    left: 30px;

    bottom: 30px;

    color: #ffffff;

    font-size: 38px;

    line-height: 0.9;

    letter-spacing: -2px;

    font-weight: 800;
}


.orange-text strong {
    color: #101828;
}


/* Dark project */

.project-dark {
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(18, 56, 199, 0.7),
            transparent 35%
        ),
        #182238;
}


.campaign-circle {
    position: absolute;

    width: 190px;

    height: 190px;

    right: 35px;

    top: 50px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;
}


.campaign-circle::before {
    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    left: 34px;

    top: 34px;

    border: 1px solid rgba(244, 81, 30, 0.7);

    border-radius: 50%;
}


.campaign-text {
    position: absolute;

    left: 30px;

    bottom: 30px;

    color: #ffffff;

    font-size: 38px;

    line-height: 0.9;

    letter-spacing: -2px;

    font-weight: 800;
}


.campaign-text strong {
    color: #f4511e;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 24px 0 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.project-category {
    display: block;

    margin-bottom: 8px;

    color: #ff7650;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.project-info h3 {
    max-width: 520px;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.25;
}


.project-arrow {
    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #ffffff;

    font-size: 20px;

    transition: all 0.3s ease;
}


.project:hover .project-arrow {
    background: #f4511e;

    border-color: #f4511e;

    transform: rotate(45deg);
}


/* =========================================================
   WORK FOOTER
========================================================= */

.work-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 35px;
}


.work-bottom p {
    color: #667085;

    font-size: 13px;
}


.work-bottom a {
    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.work-bottom a span {
    margin-left: 8px;

    color: #f4511e;

    transition: margin 0.3s ease;
}


.work-bottom a:hover span {
    margin-left: 14px;
}


/* =========================================================
   9. CONTACT / CTA
========================================================= */

.contact-section {
    padding: 120px 0;

    background: #f7f9fc;
}


.contact-card {
    position: relative;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 80px;

    padding: 70px;

    overflow: hidden;

    background: #1238c7;

    color: #ffffff;
}


.contact-card::before {
    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    top: -220px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}


.contact-card::after {
    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -100px;

    top: -140px;

    border: 1px solid rgba(244, 81, 30, 0.35);

    border-radius: 50%;
}


/* Content */

.contact-content {
    position: relative;

    z-index: 2;
}


.contact-label {
    display: block;

    margin-bottom: 25px;

    color: #ff7650;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-content h2 {
    max-width: 720px;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.contact-content h2 span {
    display: block;

    color: #ffffff;
}


.contact-content > p {
    max-width: 600px;

    margin-bottom: 35px;

    color: #dbe2ff;

    font-size: 16px;

    line-height: 1.8;
}


/* WhatsApp button */

.contact-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 17px 25px;

    background: #ffffff;

    color: #1238c7;

    font-size: 14px;

    font-weight: 800;

    transition: all 0.3s ease;
}


.contact-button span {
    font-size: 19px;
}


.contact-button:hover {
    background: #f4511e;

    color: #ffffff;

    transform: translateY(-3px);
}


/* Contact details */

.contact-details {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 30px;
}


.contact-detail {
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.contact-detail > span {
    display: block;

    margin-bottom: 8px;

    color: #ff7650;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-detail a,
.contact-detail p {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.6;
}


.contact-detail a:hover {
    color: #ff7650;
}



/* =========================================================
   10. FOOTER
========================================================= */

.footer {
    padding: 80px 0 25px;

    background: #080f1c;

    color: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

    padding-bottom: 65px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 270px;

    text-align: center;
}


/* LOGO */

.footer-logo {
    display: block;

    width: 115px;

    margin: 0 auto;
}


.footer-logo img {
    display: block;

    width: 115px !important;

    height: auto;

    max-width: 115px;

    object-fit: contain;
}


/* BRAND NAME */

.footer-brand-name {
    margin-top: 18px;

    color: #f5f7fa;

    font-family: "Aptos", "Arial", sans-serif;

    font-size: 18px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.5px;

    white-space: nowrap;
}


/* TAGLINE */

.footer-tagline {
    margin-top: 10px;

    color: #98a2b3;

    font-size: 11px;

    line-height: 1.4;

    letter-spacing: 1.5px;

    text-align: center;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: flex;

    justify-content: flex-end;

    gap: 100px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-column > span {
    margin-bottom: 8px;

    color: #f4511e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.footer-column a {
    color: #98a2b3;

    font-size: 13px;

    transition: color 0.3s ease;
}


.footer-column a:hover {
    color: #ffffff;
}


/* =========================================
   CONTACT ICONS
========================================= */

.contact-link {
    display: flex;

    align-items: center;

    gap: 10px;
}


.contact-icon {
    width: 26px;

    height: 26px;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #f4511e;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-icon svg {
    width: 13px;

    height: 13px;

    fill: currentColor;
}


.contact-link:hover .contact-icon {
    background: #f4511e;

    border-color: #f4511e;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    color: #667085;

    font-size: 12px;
}

/* =========================================================
   11. ANIMATIONS
========================================================= */

@keyframes slowRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes slowRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

}


@keyframes pulseOrb {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);

        opacity: 1;
    }

}


/* =========================================================
   12. TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr 0.8fr;

        gap: 10px;

        padding-left: 5%;

        padding-right: 5%;
    }


    .hero h1 {
        font-size: clamp(45px, 5.5vw, 65px);
    }


    .hero-art {
        transform: scale(0.85);
    }


    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-grid,
    .section-heading,
    .work-heading {
        gap: 50px;
    }

}


/* =========================================================
   13. MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {
        min-height: 72px;
    }


    .brand img {
        width: 110px;
    }


    .nav-links {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .services-list {
        margin-top: 50px;
    }


    .service-row {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 30px 0;
    }


    .service-arrow {
        display: none;
    }


    .service-info h3 {
        font-size: 21px;
    }


    .service-info p {
        font-size: 14px;
    }


    .service-row:hover {
        padding-left: 10px;

        padding-right: 10px;
    }

    .contact-section {
        padding: 80px 0;
    }


    .contact-card {
        grid-template-columns: 1fr;

        gap: 55px;

        padding: 40px 25px;
    }


    .contact-content h2 {
        letter-spacing: -2px;
    }


    .contact-button {
        width: 100%;

        justify-content: center;
    }


    .contact-details {
        gap: 25px;
    }

    .nav-cta {
        padding: 10px 16px;

        font-size: 12px;
    }
    .projects {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 50px;
    }


    .project-large {
        grid-row: auto;
    }


    .project-visual,
    .project-large .project-visual {
        height: 330px;
    }


    .project-display {
        width: 75%;

        height: 70%;
    }


    .work-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }
    
    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 90px 6% 80px;
    }


    .hero-content {
        max-width: 100%;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px 0;

        margin-top: 35px;

        padding-top: 22px;
    }


    .hero-highlight {
        padding: 0 15px;

        border-right: none;
    }


    .hero-highlight:nth-child(odd) {
        padding-left: 0;

        border-right: 1px solid rgba(18, 56, 199, 0.12);
    }


    .hero-highlight:nth-child(even) {
        padding-left: 20px;
    }


    .hero-highlight strong {
        font-size: 20px;
    }


    .hero-highlight span {
        font-size: 10px;
    }

    .eyebrow {
        font-size: 10px;

        letter-spacing: 2.5px;
    }


    .hero h1 {
        font-size: clamp(45px, 13vw, 65px);

        letter-spacing: -2.5px;
    }


    .hero-text {
        font-size: 16px;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 310px;
    }


    .hero-art {
        display: flex;
    }


    .about,
    .services,
    .work {
        padding: 90px 0;
    }


    .about-grid,
    .section-heading,
    .work-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-principles {
        grid-template-columns: 1fr;
    
        margin-top: 50px;
    }
    
    
    .principle,
    .principle:first-child,
    .principle:last-child {
        padding: 25px 0;
    
        border-right: none;
    
        border-bottom: 1px solid #dfe4ec;
    }
    
    
    .principle:last-child {
        border-bottom: none;
    }

    .about h2,
    .section-heading h2,
    .work-heading h2,
    .contact h2 {
        font-size: clamp(40px, 11vw, 55px);

        letter-spacing: -2px;
    }


    .services-grid {
        grid-template-columns: 1fr;

        margin-top: 45px;
    }


    .service-card {
        min-height: 280px;
    }


    .service-number {
        margin-bottom: 55px;
    }


    .work-placeholder {
        min-height: 300px;

        margin-top: 45px;
    }


    .contact {
        padding: 100px 20px;
    }

       /* =========================================
       FOOTER - MOBILE
    ========================================= */

    .footer {
        padding-top: 60px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 55px;

        padding-bottom: 45px;
    }


    .footer-brand {
        width: 100%;
    }


    .footer-logo,
    .footer-logo img {
        width: 100px !important;

        max-width: 100px;
    }


    .footer-brand-name {
        font-size: 18px;
    }


    .footer-links {
        width: 100%;

        justify-content: space-between;

        gap: 35px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 8px;
    }
    .footer-inner {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}

/* =========================================================
   COOKIE CONSENT BANNER
========================================================= */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 5%;

    background: #ffffff;
    border-top: 1px solid #dfe4ec;

    box-shadow: 0 -8px 30px rgba(10, 20, 40, 0.08);

    font-family: inherit;
}

.cookie-text {
    max-width: 720px;
}

.cookie-text p {
    margin: 0;

    color: #5f6f89;

    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.cookie-settings {
    border: none;
    background: transparent;

    color: #1238c7;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.cookie-accept {
    border: none;
    border-radius: 0;

    padding: 13px 22px;

    background: #35b85a;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: transform 0.2s ease,
                opacity 0.2s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.cookie-close {
    border: none;
    background: transparent;

    color: #4d4d4d;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    padding: 0 0 3px;
}

.cookie-close:hover {
    color: #1238c7;
}


/* =========================================================
   COOKIE BANNER — MOBILE
========================================================= */

@media (max-width: 700px) {

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;

        gap: 18px;

        padding: 20px;
    }

    .cookie-text {
        max-width: 100%;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .cookie-settings {
        text-align: left;
    }

    .cookie-accept {
        padding: 12px 16px;
    }

    .cookie-close {
        position: absolute;
        top: 12px;
        right: 15px;
    }
}