:root {
    --primary: #6f5cff;
    --primary-dark: #5746e8;
    --primary-soft: #f0edff;

    --green: #13b981;

    --dark: #0d1117;
    --dark-soft: #151a22;

    --heading: #111827;
    --text: #667085;
    --muted: #98a2b3;

    --white: #ffffff;
    --light: #f8f9fc;
    --light-2: #f3f5f9;

    --border: #eaecf0;

    --container: 1180px;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 12px 35px rgba(16, 24, 40, 0.06);
    --shadow: 0 30px 80px rgba(16, 24, 40, 0.12);
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--heading);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(90%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(234, 236, 240, 0.7);

    transition: 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 40px rgba(16, 24, 40, 0.08);
}

.navbar {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
}

.brand-name span {
    color: #00bcd4;
}

/* .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 40px;
    height: 40px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    background: linear-gradient(
        135deg,
        var(--primary),
        #9f6cff
    );

    color: white;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.brand-name {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.brand-name span {
    color: var(--primary);
} */


/* Navigation */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: #475467;

    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--heading);
}

.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* Nav button */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 44px;

    padding: 0 18px;

    border-radius: 9px;

    background: var(--dark);
    color: white;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu-button {
    width: 43px;
    height: 43px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: white;

    display: none;
    place-items: center;

    font-size: 20px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */
/* =========================================
   PROFESSIONAL HERO
========================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.07), transparent 30%),
        #080808;
    color: #fff;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   BACKGROUND
========================================= */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    pointer-events: none;
}

.hero-orb-one {
    width: 420px;
    height: 420px;
    background: #6c63ff;
    top: -180px;
    right: 10%;
}

.hero-orb-two {
    width: 300px;
    height: 300px;
    background: #ff2d55;
    bottom: -160px;
    left: -100px;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 70px 70px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,.65);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,.7);
}

.hero h1 {
    margin: 0;
    font-size: clamp(48px, 5.5vw, 82px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 700;
}

.hero h1 span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.38);
}

.hero-text {
    max-width: 590px;
    margin: 30px 0 35px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.62);
}


/* =========================================
   BUTTONS
========================================= */

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.button-primary {
    background: #fff;
    color: #080808;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,.12);
}

.button-secondary {
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.03);
}

.button-secondary:hover {
    background: rgba(255,255,255,.08);
}


/* =========================================
   SPECIALTIES
========================================= */

.hero-specialties {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
}

.hero-specialties > span {
    color: rgba(255,255,255,.38);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialty-list {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.72);
}

.specialty-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.specialty-list i {
    font-size: 13px;
}

.specialty-list b {
    color: rgba(255,255,255,.2);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   LAPTOP
========================================= */

.laptop {
    position: relative;
    width: min(100%, 600px);
    z-index: 2;
}

.laptop-screen {
    position: relative;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px 18px 8px 8px;
    background: #151515;
    box-shadow:
        0 40px 100px rgba(0,0,0,.6),
        0 0 80px rgba(255,255,255,.03);
}

.browser-bar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 14px;
    background: #0d0d0d;
    border-radius: 12px 12px 0 0;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.browser-address {
    flex: 1;
    text-align: center;
    font-size: 9px;
    color: rgba(255,255,255,.28);
    letter-spacing: .5px;
}


/* =========================================
   DASHBOARD
========================================= */

.ads-dashboard {
    padding: 25px;
    background:
        linear-gradient(145deg, #171717, #0d0d0d);
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-label {
    display: block;
    margin-bottom: 7px;
    font-size: 8px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.32);
}

.dashboard-top h3 {
    margin: 0;
    font-size: 21px;
    font-weight: 600;
}

.growth-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    font-size: 10px;
    color: rgba(255,255,255,.8);
}


/* =========================================
   CHART
========================================= */

.performance-chart {
    margin-top: 25px;
    height: 170px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
}

.chart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-info span {
    font-size: 10px;
    color: rgba(255,255,255,.38);
}

.chart-info strong {
    font-size: 17px;
}

.chart-bars {
    height: 100px;
    margin-top: 18px;
    display: flex;
    align-items: end;
    gap: 9px;
}

.chart-bars span {
    flex: 1;
    min-height: 10px;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,.65);
    opacity: .55;
}


/* =========================================
   METRICS
========================================= */

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.dashboard-metrics div {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
}

.dashboard-metrics span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.3);
}

.dashboard-metrics strong {
    font-size: 15px;
}


/* =========================================
   SOCIAL PLATFORMS
========================================= */

.campaign-platforms {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
}

.platform-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    font-size: 14px;
}

.platform div:nth-child(2) {
    flex: 1;
}

.platform strong {
    display: block;
    font-size: 9px;
}

.platform span {
    display: block;
    margin-top: 3px;
    font-size: 7px;
    color: rgba(255,255,255,.3);
}

.platform-growth {
    font-size: 10px;
    opacity: .55;
}


/* =========================================
   LAPTOP BASE
========================================= */

.laptop-base {
    position: relative;
    width: 112%;
    height: 14px;
    margin-left: -6%;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(
        to bottom,
        #292929,
        #101010
    );
    box-shadow: 0 20px 35px rgba(0,0,0,.45);
}

.laptop-notch {
    width: 80px;
    height: 5px;
    margin: auto;
    border-radius: 0 0 8px 8px;
    background: #050505;
}


/* =========================================
   FLOATING SOCIAL CARDS
========================================= */

.social-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 185px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px;
    background: rgba(20,20,20,.88);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.social-card-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
}

.social-card span {
    display: block;
    font-size: 7px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
}

.social-card strong {
    display: block;
    margin-top: 3px;
    font-size: 13px;
}

.social-card > i {
    margin-left: auto;
    font-size: 11px;
    opacity: .5;
}

.instagram-card {
    top: 75px;
    left: -45px;
    transform: rotate(-3deg);
}

.facebook-card {
    right: -35px;
    bottom: 105px;
    transform: rotate(3deg);
}


/* =========================================
   PERFORMANCE CARD
========================================= */

.hero-floating-card {
    position: absolute;
    z-index: 6;
    left: -50px;
    bottom: 25px;
    width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(15,15,15,.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.floating-number {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.3);
}

.hero-floating-card strong {
    display: block;
    font-size: 14px;
}

.hero-floating-card p {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,.4);
}


/* =========================================
   CONVERSION BADGE
========================================= */

.conversion-badge {
    position: absolute;
    z-index: 6;
    right: -20px;
    top: 165px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    background: rgba(15,15,15,.9);
    backdrop-filter: blur(12px);
}

.conversion-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.conversion-badge span {
    display: block;
    font-size: 7px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
}

.conversion-badge strong {
    display: block;
    margin-top: 3px;
    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .hero-grid {
        gap: 35px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .instagram-card {
        left: -10px;
    }

    .facebook-card {
        right: -10px;
    }

}

@media (max-width: 850px) {

    .hero {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        min-height: 500px;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: clamp(48px, 9vw, 70px);
    }

}

@media (max-width: 600px) {

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-specialties {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .laptop {
        width: 100%;
    }

    .ads-dashboard {
        padding: 15px;
    }

    .campaign-platforms {
        grid-template-columns: 1fr;
    }

    .performance-chart {
        height: 130px;
    }

    .chart-bars {
        height: 65px;
    }

    .social-card {
        min-width: 150px;
        padding: 10px;
    }

    .social-card-icon {
        width: 30px;
        height: 30px;
    }

    .social-card strong {
        font-size: 11px;
    }

    .instagram-card {
        top: 20px;
        left: -5px;
    }

    .facebook-card {
        right: -5px;
        bottom: 70px;
    }

    .hero-floating-card {
        left: 0;
        bottom: 0;
        width: 240px;
    }

    .conversion-badge {
        display: none;
    }

}



// new 

/* =================================
   META ADS HERO
================================= */

/* =========================================
   GLOBAL
========================================= */

.meta-hero,
.meta-services,
.meta-results,
.meta-process,
.meta-cta {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.meta-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.meta-hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 100px 0 90px;
    color: #102b57;
}

.meta-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    background: #f1f7ff;
}

.meta-hero .meta-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 30px;
}


/* Hero content */

.meta-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #1769e0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.meta-eyebrow span {
    width: 32px;
    height: 2px;
    background: #1769e0;
}

.meta-hero h1 {
    margin: 0;

    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;

    color: #102b57;
}

.meta-hero h1 strong {
    color: #1769e0;
}

.meta-hero-content > p {
    max-width: 570px;

    margin: 28px 0 32px;

    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.meta-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.meta-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 23px;

    border-radius: 6px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    transition: all .25s ease;
}

.meta-btn-primary {
    background: #1769e0;
    color: #fff;

    box-shadow: 0 12px 25px rgba(23,105,224,.18);
}

.meta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(23,105,224,.25);
}

.meta-btn-outline {
    border: 1px solid #dbe3ed;
    background: #fff;
    color: #102b57;
}

.meta-btn-outline:hover {
    border-color: #1769e0;
    color: #1769e0;
}


/* =========================================
   TRUST
========================================= */

.meta-trust {
    display: flex;
    gap: 25px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.meta-trust div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #53647b;

    font-size: 12px;
    font-weight: 700;
}

.meta-trust i {
    color: #1769e0;
    font-size: 15px;
}


/* =========================================
   HERO IMAGE
========================================= */

.meta-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-hero-image img {
    display: block;

    width: 100%;
    max-width: 680px;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 40px rgba(16,43,87,.14));

    transition: transform .4s ease;
}

.meta-hero-image:hover img {
    transform: translateY(-7px);
}


/* =========================================
   SERVICES
========================================= */

.meta-services {
    background: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #edf1f6;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading > span {
    display: block;

    margin-bottom: 14px;

    color: #1769e0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;

    color: #102b57;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-heading h2 strong {
    color: #1769e0;
}

.section-heading p {
    margin-top: 20px;

    color: #718096;
    line-height: 1.7;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    padding: 30px;

    border: 1px solid #e8edf4;
    border-radius: 10px;

    background: #fff;

    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #cddcf1;

    box-shadow: 0 20px 45px rgba(16,43,87,.08);
}

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    border-radius: 9px;

    background: #eef5ff;
    color: #1769e0;

    font-size: 20px;
}

.service-card h3 {
    margin: 0 0 12px;

    color: #102b57;
    font-size: 18px;
}

.service-card p {
    min-height: 100px;

    margin: 0;

    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: #1769e0;

    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   RESULTS
========================================= */

.meta-results {
    padding: 100px 0;

    background: #f7faff;
}

.meta-results .meta-container {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.section-heading.left {
    margin-bottom: 30px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.result-box {
    padding: 35px;

    border: 1px solid #e1e8f1;
    border-radius: 10px;

    background: #fff;
}

.result-box strong {
    display: block;

    color: #1769e0;
    font-size: 42px;
    letter-spacing: -2px;
}

.result-box span {
    display: block;

    margin-top: 8px;

    color: #68778d;
    font-size: 12px;
}


/* =========================================
   PROCESS
========================================= */

.meta-process {
    background: #fff;
    padding: 110px 0;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5eaf0;
}

.process-item {
    padding: 35px 25px;

    border-right: 1px solid #e5eaf0;
}

.process-item:last-child {
    border-right: 0;
}

.process-item > span {
    color: #1769e0;
    font-size: 12px;
    font-weight: 800;
}

.process-item h3 {
    margin: 20px 0 10px;

    color: #102b57;
    font-size: 20px;
}

.process-item p {
    margin: 0;

    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.meta-cta {
    padding: 40px 0 100px;
    background: #fff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 55px 60px;

    border-radius: 14px;

    background: #1769e0;
    color: #fff;
}

.cta-box > div {
    max-width: 650px;
}

.cta-box span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .75;
}

.cta-box h2 {
    margin: 12px 0;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-box h2 strong {
    display: block;
}

.cta-box p {
    margin: 15px 0 0;
    opacity: .8;
}

.meta-btn-white {
    flex-shrink: 0;

    background: #fff;
    color: #1769e0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .meta-hero .meta-container {
        grid-template-columns: 1fr;
    }

    .meta-hero-content {
        max-width: 750px;
    }

    .meta-hero-image {
        max-width: 800px;
        margin: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .meta-results .meta-container {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        border-top: 1px solid #e5eaf0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .meta-container {
        width: min(100% - 28px, 1180px);
    }

    .meta-hero {
        padding: 65px 0;
    }

    .meta-hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .meta-hero-content > p {
        font-size: 15px;
    }

    .meta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .meta-btn {
        width: 100%;
    }

    .meta-trust {
        gap: 15px;
    }

    .meta-services,
    .meta-results,
    .meta-process {
        padding: 70px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-box {
        padding: 25px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0 !important;
        border-bottom: 1px solid #e5eaf0;
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .cta-box .meta-btn {
        width: auto;
    }

}




@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 40px;
    }

}
/* =========================================
   OUR WORK PAGE
========================================= */

.work-page-hero {
    padding: 165px 0 105px;

    background:
        linear-gradient(
            135deg,
            #fbfbff,
            #ffffff
        );
}


.work-page-hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}


.work-page-hero-content h1 {
    max-width: 760px;

    font-size: clamp(50px, 5.7vw, 74px);

    line-height: 1.05;

    letter-spacing: -4px;

    margin-bottom: 24px;
}


.work-page-hero-content h1 span {
    color: var(--primary);
}


.work-page-hero-content > p {
    max-width: 620px;

    color: var(--text);

    font-size: 15px;

    margin-bottom: 32px;
}


.work-page-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* HERO CARD */

.portfolio-showcase-card {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    padding: 35px;

    border-radius: 27px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #11141c,
            #211b3d
        );

    box-shadow: var(--shadow);
}


.portfolio-showcase-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(111, 92, 255, 0.7),
            transparent 70%
        );
}


.portfolio-label {
    position: relative;

    z-index: 2;

    color: #aaa1ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.portfolio-main-copy {
    position: relative;

    z-index: 2;

    margin-top: 70px;
}


.portfolio-main-copy small {
    color: #9ca3af;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.portfolio-main-copy h2 {
    margin-top: 12px;

    font-size: 60px;

    letter-spacing: -3px;
}


.portfolio-main-copy h2 span {
    color: #9c8aff;
}


.portfolio-tags {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.portfolio-tags span {
    padding: 7px 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #d1d5dc;

    font-size: 9px;

    font-weight: 700;
}


/* =========================================
   PORTFOLIO INTRO
========================================= */

.portfolio-intro {
    padding-bottom: 50px;

    background: var(--light);
}


.portfolio-intro .section-intro {
    margin-bottom: 0;
}


.portfolio-intro h2 span {
    color: var(--primary);
}


/* =========================================
   FILTER
========================================= */

.portfolio-projects {
    padding: 0 0 110px;

    background: var(--light);
}


.portfolio-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;
}


.portfolio-filter-btn {
    border: 1px solid var(--border);

    background: white;

    color: #475467;

    padding: 9px 15px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--dark);

    color: white;

    border-color: var(--dark);
}


/* =========================================
   PROJECT GRID
========================================= */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


.portfolio-card {
    overflow: hidden;

    border-radius: 20px;

    background: white;

    border: 1px solid var(--border);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.portfolio-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


/* IMAGE */

.portfolio-image {
    position: relative;

    height: 330px;

    overflow: hidden;

    background: #eaecf0;
}


.portfolio-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}


.portfolio-card:hover .portfolio-image img {
    transform: scale(1.045);
}


.portfolio-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(10, 13, 20, 0.18)
        );

    pointer-events: none;
}


.portfolio-image-badge {
    position: absolute;

    z-index: 2;

    top: 18px;
    left: 18px;

    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    color: var(--heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* CARD CONTENT */

.portfolio-card-content {
    padding: 27px;
}


.portfolio-card-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 14px;
}


.portfolio-type {
    display: block;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}


.portfolio-card h2 {
    font-size: 22px;

    letter-spacing: -0.9px;
}


.portfolio-number {
    color: #d0d5dd;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 800;
}


.portfolio-card-content > p {
    color: var(--text);

    font-size: 12px;

    margin-bottom: 20px;
}


/* TECHNOLOGY */

.portfolio-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 22px;
}


.portfolio-tech span {
    padding: 5px 9px;

    border-radius: 6px;

    background: var(--light);

    color: #667085;

    font-size: 9px;

    font-weight: 700;
}


/* LINKS */

.portfolio-links {
    padding-top: 18px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    gap: 20px;
}


.portfolio-live,
.portfolio-github {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 11px;

    font-weight: 700;

    transition: 0.25s ease;
}


.portfolio-live {
    color: var(--primary);
}


.portfolio-github {
    color: #475467;
}


.portfolio-live:hover {
    color: var(--primary-dark);
}


.portfolio-github:hover {
    color: var(--heading);
}


/* Hidden filter */

.portfolio-card.hide-project {
    display: none;
}


/* =========================================
   PORTFOLIO PROCESS
========================================= */

.portfolio-process {
    background: white;
}


.portfolio-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.portfolio-process-grid article {
    position: relative;

    min-height: 250px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: white;

    transition: 0.3s ease;
}


.portfolio-process-grid article:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);
}


.portfolio-process-grid article > span {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #d0d5dd;

    font-size: 10px;

    font-weight: 800;
}


.portfolio-process-grid article > i {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-soft);

    color: var(--primary);

    margin-bottom: 25px;
}


.portfolio-process-grid h3 {
    font-size: 18px;

    margin-bottom: 10px;
}


.portfolio-process-grid p {
    color: var(--text);

    font-size: 11px;
}


/* =========================================
   PORTFOLIO RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .work-page-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .portfolio-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 750px) {

    .work-page-hero {
        padding: 125px 0 75px;
    }


    .work-page-hero-content h1 {
        font-size: 44px;

        letter-spacing: -2.6px;
    }


    .work-page-actions {
        flex-direction: column;
    }


    .work-page-actions .button {
        width: 100%;
    }


    .portfolio-showcase-card {
        min-height: 420px;

        padding: 25px;
    }


    .portfolio-main-copy {
        margin-top: 55px;
    }


    .portfolio-main-copy h2 {
        font-size: 49px;
    }


    .portfolio-tags {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    .portfolio-image {
        height: 270px;
    }


    .portfolio-process-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .portfolio-filter {
        gap: 6px;
    }


    .portfolio-filter-btn {
        padding: 8px 12px;

        font-size: 10px;
    }


    .portfolio-image {
        height: 230px;
    }


    .portfolio-card-content {
        padding: 21px;
    }


    .portfolio-card h2 {
        font-size: 19px;
    }


    .portfolio-links {
        justify-content: space-between;

        gap: 10px;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-hero {
    padding: 165px 0 110px;

    min-height: 100vh;

    background:
        linear-gradient(
            135deg,
            #f9f9ff,
            #ffffff
        );
}


.contact-page-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.contact-page-content h1 {
    max-width: 650px;

    font-size: clamp(48px, 5.5vw, 72px);

    letter-spacing: -4px;

    margin-bottom: 24px;
}


.contact-page-content h1 span {
    color: var(--primary);
}


.contact-page-content > p {
    max-width: 560px;

    color: var(--text);

    font-size: 15px;

    margin-bottom: 38px;
}


/* Direct contact */

.contact-direct {
    display: flex;

    flex-direction: column;

    gap: 12px;

    max-width: 520px;
}


.contact-direct-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: white;

    transition: 0.3s ease;
}


.contact-direct-item:hover {
    transform: translateX(5px);

    box-shadow: var(--shadow-sm);
}


.contact-direct-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    color: var(--primary);

    background: var(--primary-soft);
}


.whatsapp-icon {
    background: #e9fff1;

    color: #16a34a;
}


.contact-direct-item > div:last-child {
    display: flex;

    flex-direction: column;
}


.contact-direct-item span {
    color: var(--muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.3px;
}


.contact-direct-item strong {
    color: var(--heading);

    font-size: 13px;
}


/* Contact Form */

.contact-page-form {
    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: white;

    box-shadow: var(--shadow);
}


.form-label {
    display: block;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;

    margin-bottom: 8px;
}


.contact-page-form > h2 {
    font-size: 30px;

    letter-spacing: -1.3px;

    margin-bottom: 6px;
}


.contact-page-form > p {
    color: var(--text);

    font-size: 11px;

    margin-bottom: 25px;
}


.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


.contact-form-group {
    margin-bottom: 16px;
}


.contact-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 11px;

    font-weight: 700;
}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 9px;

    outline: none;

    background: white;

    padding: 13px 14px;

    color: var(--heading);

    font-size: 12px;

    transition: 0.25s ease;
}


.contact-form-group textarea {
    resize: vertical;

    min-height: 130px;
}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(111, 92, 255, 0.09);
}


.contact-submit {
    width: 100%;

    border: 0;

    cursor: pointer;

    margin-top: 3px;
}


/* Honeypot */

.website-field {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    left: -9999px !important;
}


/* Form messages */

.form-message {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 14px;

    margin-bottom: 20px;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 600;
}


.form-message.success {
    background: #ecfdf3;

    border: 1px solid #abefc6;

    color: #067647;
}


.form-message.error {
    background: #fef3f2;

    border: 1px solid #fecdca;

    color: #b42318;
}


/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 999;

    min-height: 50px;

    padding: 0 17px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #25d366;

    color: white;

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.28);

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s ease;
}


.floating-whatsapp i {
    font-size: 20px;
}


.floating-whatsapp:hover {
    transform: translateY(-4px);

    background: #1fbd5a;
}


@media (max-width: 950px) {

    .contact-page-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 650px) {

    .contact-page-hero {
        padding: 125px 0 80px;
    }


    .contact-page-content h1 {
        font-size: 43px;

        letter-spacing: -2.5px;
    }


    .contact-page-form {
        padding: 26px 20px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .floating-whatsapp {
        width: 52px;
        height: 52px;

        padding: 0;
    }


    .floating-whatsapp span {
        display: none;
    }

}

/* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    padding: 165px 0 100px;

    background: linear-gradient(
        135deg,
        #fbfbff,
        #ffffff
    );
}


.page-hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}


.page-hero-content h1 {
    max-width: 760px;

    font-size: clamp(48px, 5.5vw, 72px);

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 24px;
}


.page-hero-content h1 span {
    color: var(--primary);
}


.page-hero-content p {
    max-width: 620px;

    color: var(--text);

    font-size: 16px;
}


.page-hero-card {
    min-height: 430px;

    padding: 30px;

    border-radius: 26px;

    color: white;

    background: linear-gradient(
        145deg,
        #11141c,
        #282047
    );

    box-shadow: var(--shadow);
}


.page-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #adb3bf;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;
}


.page-card-top i {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.1);

    color: white;
}


.page-card-main {
    margin-top: 70px;
}


.page-card-main small {
    color: #aaa1ff;

    letter-spacing: 1.5px;

    font-weight: 800;
}


.page-card-main h2 {
    margin-top: 12px;

    font-size: 58px;

    letter-spacing: -3px;
}


.page-card-main em {
    color: #9c8aff;

    font-style: normal;
}


/* =========================================
   ABOUT STORY
========================================= */

.about-story {
    background: white;
}


.about-story-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;
}


.about-story-heading h2 {
    font-size: 46px;

    letter-spacing: -2.4px;
}


.about-story-content p {
    color: var(--text);

    font-size: 14px;

    margin-bottom: 19px;
}


.about-story-content .large-copy {
    color: var(--heading);

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 700;
}


/* =========================================
   MISSION
========================================= */

.about-mission {
    background: var(--light);
}


.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.mission-card {
    min-height: 390px;

    padding: 34px;

    border-radius: 20px;

    border: 1px solid var(--border);

    background: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.mission-card-dark {
    background: var(--dark);

    color: white;

    border-color: var(--dark);
}


.mission-number {
    color: var(--muted);

    font-size: 11px;

    font-weight: 800;
}


.mission-card h2 {
    max-width: 480px;

    font-size: 34px;

    letter-spacing: -1.7px;

    margin-bottom: 15px;
}


.mission-card p {
    max-width: 500px;

    color: var(--text);

    font-size: 13px;
}


.mission-card-dark p {
    color: #a7afbb;
}


/* =========================================
   VALUES
========================================= */

.values-section {
    background: white;
}


.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.value-card {
    position: relative;

    min-height: 260px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: 0.3s ease;
}


.value-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-sm);
}


.value-card > span {
    position: absolute;

    right: 20px;
    top: 20px;

    color: #d0d5dd;

    font-size: 10px;

    font-weight: 800;
}


.value-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-soft);

    color: var(--primary);

    margin-bottom: 24px;
}


.value-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}


.value-card p {
    color: var(--text);

    font-size: 12px;
}


/* =========================================
   APPROACH
========================================= */

.approach-section {
    background: var(--dark);

    color: white;
}


.approach-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;
}


.approach-heading h2 {
    font-size: 46px;

    letter-spacing: -2.3px;
}


.approach-heading h2 span {
    color: #9c8aff;
}


.approach-content {
    border-top: 1px solid #29303c;
}


.approach-item {
    padding: 25px 0;

    border-bottom: 1px solid #29303c;

    display: grid;

    grid-template-columns: 160px 1fr;

    gap: 25px;
}


.approach-item > span {
    font-family: "Manrope", sans-serif;

    font-weight: 700;
}


.approach-item p {
    color: #9ea6b3;

    font-size: 12px;
}


/* =========================================
   TEAM
========================================= */

.team-section {
    background: var(--light);
}


.team-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.team-card {
    overflow: hidden;

    border-radius: 16px;

    background: white;

    border: 1px solid var(--border);
}


.team-placeholder {
    min-height: 280px;

    display: grid;

    place-items: center;

    background: linear-gradient(
        135deg,
        #eae7ff,
        #f7f6ff
    );

    color: var(--primary);

    font-size: 46px;
}


.team-info {
    padding: 18px;
}


.team-info h3 {
    font-size: 15px;

    margin-bottom: 3px;
}


.team-info span {
    color: var(--text);

    font-size: 10px;
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 950px) {

    .page-hero-grid,
    .about-story-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }


    .mission-grid {
        grid-template-columns: 1fr;
    }


    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .page-hero {
        padding: 125px 0 75px;
    }


    .page-hero-content h1 {
        font-size: 44px;

        letter-spacing: -2.5px;
    }


    .page-hero-card {
        min-height: 380px;
    }


    .page-card-main h2 {
        font-size: 46px;
    }


    .about-story-heading h2,
    .approach-heading h2 {
        font-size: 36px;
    }


    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }


    .approach-item {
        grid-template-columns: 1fr;

        gap: 8px;
    }

}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page-hero {
    padding: 165px 0 105px;

    background:
        linear-gradient(
            135deg,
            #fbfbff,
            #ffffff
        );
}

.services-hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}

.services-hero-content h1 {
    max-width: 760px;

    font-size: clamp(50px, 5.7vw, 74px);

    letter-spacing: -4px;

    margin-bottom: 24px;
}

.services-hero-content h1 span {
    color: var(--primary);
}

.services-hero-content > p {
    max-width: 620px;

    color: var(--text);

    font-size: 15px;

    margin-bottom: 32px;
}

.services-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* HERO VISUAL */

.services-visual-card {
    position: relative;

    min-height: 470px;

    padding: 35px;

    border-radius: 27px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #10131a,
            #211c37
        );

    color: white;

    box-shadow: var(--shadow);
}

.services-visual-card::after {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    right: -110px;
    top: -120px;

    background:
        radial-gradient(
            circle,
            rgba(111, 92, 255, 0.7),
            transparent 70%
        );
}

.services-visual-label {
    position: relative;

    z-index: 2;

    color: #aaa1ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.services-visual-card h2 {
    position: relative;

    z-index: 2;

    margin-top: 65px;

    font-size: 64px;

    letter-spacing: -3.5px;
}

.services-visual-card h2 span {
    color: #9b8aff;
}

.services-visual-tags {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 35px;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.services-visual-tags span {
    padding: 7px 11px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #d1d5dc;

    font-size: 9px;

    font-weight: 700;
}


/* =========================================
   SERVICES CARDS
========================================= */

.services-overview {
    background: var(--light);
}

.services-page-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.services-page-card {
    min-height: 390px;

    padding: 30px;

    border-radius: 17px;

    background: white;

    border: 1px solid var(--border);

    transition: 0.35s ease;
}

.services-page-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-sm);

    border-color: transparent;
}

.services-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}

.services-card-number {
    color: #c1c6cf;

    font-size: 10px;

    font-weight: 800;
}

.services-card-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-soft);

    color: var(--primary);
}

.services-page-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.services-page-card > p {
    color: var(--text);

    font-size: 12px;

    margin-bottom: 20px;
}

.services-page-card ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 9px;
}

.services-page-card li {
    position: relative;

    padding-left: 17px;

    color: #475467;

    font-size: 11px;
}

.services-page-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--primary);
}


/* =========================================
   SERVICES PROCESS
========================================= */

.services-process {
    background: white;
}

.services-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.services-process-item {
    min-height: 220px;

    padding: 28px;

    border-right: 1px solid var(--border);
}

.services-process-item:last-child {
    border-right: 0;
}

.services-process-item > span {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 45px;
}

.services-process-item h3 {
    font-size: 18px;

    margin-bottom: 9px;
}

.services-process-item p {
    color: var(--text);

    font-size: 11px;
}


/* =========================================
   DEMO PROJECTS
========================================= */

.demo-projects {
    background: var(--light);
}

.demo-projects .section-intro h2 span {
    color: var(--primary);
}

.demo-project-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.demo-project-card {
    overflow: hidden;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--border);

    transition: 0.35s ease;
}

.demo-project-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.demo-project-preview {
    min-height: 235px;

    padding: 25px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Different demo backgrounds */

.project-preview-purple {
    background:
        linear-gradient(
            135deg,
            #5c49d8,
            #8b78ff
        );
}

.project-preview-green {
    background:
        linear-gradient(
            135deg,
            #08745c,
            #22ba90
        );
}

.project-preview-orange {
    background:
        linear-gradient(
            135deg,
            #e57418,
            #ffad55
        );
}

.project-preview-blue {
    background:
        linear-gradient(
            135deg,
            #2058b5,
            #5b8def
        );
}

.project-preview-dark {
    background:
        linear-gradient(
            135deg,
            #171b23,
            #343a48
        );
}

.project-preview-pink {
    background:
        linear-gradient(
            135deg,
            #b03972,
            #e977ae
        );
}


/* Browser preview */

.project-browser {
    width: 100%;

    max-width: 300px;

    min-height: 160px;

    border-radius: 10px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.18);
}

.browser-bar {
    height: 26px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 0 10px;

    background: #f1f3f5;
}

.browser-bar span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #c6cad1;
}

.browser-content {
    min-height: 134px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: var(--heading);
}

.browser-content i {
    font-size: 30px;

    color: var(--primary);
}

.browser-content strong {
    font-size: 12px;
}


/* Project content */

.demo-project-content {
    padding: 24px;
}

.project-type {
    display: inline-block;

    color: var(--primary);

    font-size: 9px;

    letter-spacing: 1.4px;

    font-weight: 800;

    margin-bottom: 10px;
}

.demo-project-content h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.demo-project-content > p {
    color: var(--text);

    font-size: 11px;

    margin-bottom: 17px;
}

.project-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 19px;
}

.project-tech span {
    padding: 5px 8px;

    border-radius: 6px;

    background: var(--light);

    color: #667085;

    font-size: 9px;

    font-weight: 700;
}

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--heading);

    font-size: 11px;

    font-weight: 700;

    transition: 0.25s ease;
}

.project-link:hover {
    color: var(--primary);
}


/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .services-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-item:nth-child(2) {
        border-right: 0;
    }

    .services-process-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .demo-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .services-page-hero {
        padding: 125px 0 75px;
    }

    .services-hero-content h1 {
        font-size: 44px;

        letter-spacing: -2.6px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .button {
        width: 100%;
    }

    .services-visual-card {
        min-height: 420px;

        padding: 25px;
    }

    .services-visual-card h2 {
        font-size: 50px;
    }

    .services-visual-tags {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .services-page-grid,
    .demo-project-grid {
        grid-template-columns: 1fr;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .services-process-item {
        border-right: 0 !important;

        border-bottom: 1px solid var(--border);
    }

    .services-process-item:last-child {
        border-bottom: 0;
    }
}



/* =========================================================
   PROFESSIONAL SERVICES PAGE
   WHITE / CLEAN AGENCY DESIGN
========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.services-page-hero {
    background: #ffffff;
    padding: 110px 0 100px;
    overflow: hidden;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 80px;
}

.services-hero-content {
    max-width: 700px;
}

.services-hero-content .section-kicker {
    display: inline-block;
    margin-bottom: 20px;
}

.services-hero-content h1 {
    margin: 0 0 25px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
    color: #111111;
}

.services-hero-content h1 span {
    display: block;
    color: #555555;
}

.services-hero-content > p {
    max-width: 620px;
    margin: 0 0 32px;
    color: #666666;
    font-size: 17px;
    line-height: 1.8;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* HERO VISUAL */

.services-hero-visual {
    position: relative;
}

.services-visual-card {
    position: relative;
    min-height: 500px;
    padding: 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #171717,
            #333333
        );

    color: #ffffff;

    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.services-visual-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);
}

.services-visual-card::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.10);
}

.services-visual-label {
    position: relative;
    z-index: 2;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    opacity: .65;

    margin-bottom: 28px;
}

.services-visual-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 38px;

    font-size: clamp(48px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -3px;
}

.services-visual-card h2 span {
    color: #aaaaaa;
}

.services-visual-tags {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.services-visual-tags span {
    padding: 9px 13px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;

    background: rgba(255,255,255,.06);

    color: #dddddd;

    font-size: 12px;
}


/* ---------------------------------------------------------
   SERVICE GRID
--------------------------------------------------------- */

.services-overview {
    background: #ffffff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ---------------------------------------------------------
   SERVICE CARD
--------------------------------------------------------- */

.services-page-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e7e7e7;
    border-radius: 22px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.services-page-card:hover {
    transform: translateY(-8px);

    border-color: #d8d8d8;

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}


/* IMAGE */

.service-image {
    position: relative;

    height: 235px;

    overflow: hidden;

    background: #eeeeee;
}

.service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.10),
            transparent 50%,
            rgba(0,0,0,.25)
        );

    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}

.services-page-card:hover .service-image img {
    transform: scale(1.07);
}


/* CARD NUMBER */

.services-card-number {
    position: absolute;

    z-index: 3;

    top: 18px;
    left: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    color: #111111;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}


/* IMAGE LABEL */

.service-image-label {
    position: absolute;

    z-index: 3;

    left: 18px;
    bottom: 18px;

    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(0,0,0,.65);

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    backdrop-filter: blur(8px);
}


/* CONTENT */

.services-card-content {
    padding: 30px 30px 32px;
}

.services-card-content h3 {
    margin: 0 0 13px;

    color: #111111;

    font-size: 23px;
    line-height: 1.25;

    letter-spacing: -.5px;
}

.services-card-content p {
    margin: 0 0 25px;

    color: #666666;

    font-size: 14px;
    line-height: 1.75;
}


/* SERVICE LIST */

.services-card-content ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.services-card-content li {
    position: relative;

    padding-left: 24px;
    margin-bottom: 11px;

    color: #333333;

    font-size: 13px;
    line-height: 1.5;
}

.services-card-content li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    font-weight: 800;

    color: #111111;
}


/* ---------------------------------------------------------
   PROCESS
--------------------------------------------------------- */

.services-process {
    background: #f7f7f7;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;

    margin-top: 55px;

    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.services-process-item {
    position: relative;

    padding: 40px 30px;

    border-right: 1px solid #dddddd;
}

.services-process-item:last-child {
    border-right: 0;
}

.services-process-item > span {
    display: inline-flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid #cccccc;
    border-radius: 50%;

    color: #111111;

    font-size: 12px;
    font-weight: 700;
}

.services-process-item h3 {
    margin: 0 0 12px;

    font-size: 22px;
    color: #111111;
}

.services-process-item p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   DEMO PROJECTS
--------------------------------------------------------- */

.demo-projects {
    background: #ffffff;
}

.demo-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.demo-project-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 20px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.demo-project-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 25px 60px rgba(0,0,0,.09);
}


/* PROJECT PREVIEW */

.demo-project-preview {
    padding: 25px;

    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.project-preview-purple {
    background: #eee8ff;
}

.project-preview-green {
    background: #e7f5ee;
}

.project-preview-orange {
    background: #fff0e5;
}

.project-preview-blue {
    background: #e7f0ff;
}

.project-preview-dark {
    background: #202020;
}

.project-preview-pink {
    background: #ffe9f1;
}


/* BROWSER */

.project-browser {
    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.browser-bar {
    height: 30px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 0 12px;

    background: #f1f1f1;
}

.browser-bar span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #bdbdbd;
}

.browser-content {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #222222;
}

.browser-content i {
    font-size: 34px;
}

.browser-content strong {
    font-size: 14px;
}


/* PROJECT CONTENT */

.demo-project-content {
    padding: 28px;
}

.project-type {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: #777777;
}

.demo-project-content h3 {
    margin: 0 0 12px;

    color: #111111;

    font-size: 21px;
    line-height: 1.3;
}

.demo-project-content p {
    margin: 0 0 20px;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 23px;
}

.project-tech span {
    padding: 6px 9px;

    border: 1px solid #e1e1e1;
    border-radius: 5px;

    color: #555555;

    font-size: 10px;
    font-weight: 700;
}

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #111111;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: gap .25s ease;
}

.project-link:hover {
    gap: 12px;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .services-hero-grid {
        gap: 50px;
    }

    .services-page-grid,
    .demo-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-process-item:nth-child(2) {
        border-right: 0;
    }

    .services-process-item:nth-child(-n+2) {
        border-bottom: 1px solid #dddddd;
    }

}


@media (max-width: 800px) {

    .services-page-hero {
        padding: 80px 0;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        letter-spacing: -2px;
    }

    .services-visual-card {
        min-height: 420px;
    }

}


@media (max-width: 650px) {

    .services-page-grid,
    .demo-project-grid {
        grid-template-columns: 1fr;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .services-process-item {
        border-right: 0;
        border-bottom: 1px solid #dddddd;
    }

    .services-process-item:last-child {
        border-bottom: 0;
    }

    .services-process-item:nth-child(2) {
        border-right: 0;
    }

    .services-process-item:nth-child(-n+2) {
        border-bottom: 1px solid #dddddd;
    }

    .services-visual-card {
        min-height: 380px;
        padding: 32px;
        border-radius: 22px;
    }

    .services-visual-card h2 {
        letter-spacing: -2px;
    }

    .service-image {
        height: 210px;
    }

    .services-card-content {
        padding: 25px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .button {
        width: 100%;
        text-align: center;
    }

}                                                                                                                                                                                                               


/* .hero {
    position: relative;

    min-height: 100vh;

    padding: 165px 0 100px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fbfbff 0%,
            #ffffff 55%,
            #f7fffc 100%
        );
} */

/* .hero-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 90px;
}

.hero-content {
    position: relative;
    z-index: 2;
} */


/* Eyebrow */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;

    border-radius: 999px;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);
}


/* Main hero title */

.hero h1 {
    max-width: 720px;

    font-size: clamp(52px, 5.8vw, 78px);

    font-weight: 800;

    letter-spacing: -4.3px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #8d5cff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text {
    max-width: 620px;

    color: var(--text);

    font-size: 16px;

    margin-bottom: 34px;
}


/* Hero buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.button-primary {
    background: var(--primary);
    color: white;

    box-shadow:
        0 15px 35px rgba(111, 92, 255, 0.24);
}

.button-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}

.button-secondary {
    background: white;

    border: 1px solid var(--border);

    color: var(--heading);
}

.button-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);

    transform: translateY(-2px);
}


/* Hero specialties */

.hero-specialties {
    margin-top: 45px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.hero-specialties > span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.hero-specialties div {
    color: #475467;

    font-size: 13px;
    font-weight: 600;
}

.hero-specialties b {
    color: #d0d5dd;

    margin: 0 7px;
}


/* Hero visual */

.hero-visual {
    position: relative;

    z-index: 2;
}

.hero-visual-card {
    position: relative;

    min-height: 520px;

    padding: 30px;

    border-radius: var(--radius-lg);

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            150deg,
            #17131f 0%,
            #211c31 55%,
            #342a67 100%
        );

    box-shadow:
        0 35px 100px rgba(30, 25, 65, 0.22);
}

.hero-visual-card::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    right: -100px;
    top: -90px;

    background:
        radial-gradient(
            circle,
            rgba(137, 116, 255, 0.55),
            rgba(137, 116, 255, 0)
        );
}

.hero-visual-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    left: -100px;
    bottom: -120px;

    background:
        radial-gradient(
            circle,
            rgba(41, 212, 163, 0.2),
            rgba(41, 212, 163, 0)
        );
}

.visual-header {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #b7bcc8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;
}

.visual-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.1);

    color: white;
}

.visual-main {
    position: relative;
    z-index: 2;

    margin-top: 75px;
}

.visual-label {
    color: #aaa1ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.visual-main h2 {
    margin-top: 14px;

    font-size: clamp(52px, 5vw, 74px);

    letter-spacing: -3.5px;

    font-weight: 800;
}

.visual-main h2 em {
    color: #9c8aff;

    font-style: normal;
}

.visual-bottom {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.visual-bottom div {
    padding: 16px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.07);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.visual-bottom span {
    display: block;

    color: #a8afba;

    font-size: 9px;

    margin-bottom: 4px;
}

.visual-bottom strong {
    font-size: 13px;
}


/* Floating card */

.hero-floating-card {
    position: absolute;

    left: -60px;
    bottom: 48px;

    width: 245px;

    padding: 17px;

    border-radius: 14px;

    background: white;

    box-shadow: var(--shadow);

    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.floating-number {
    min-width: 36px;
    height: 36px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    background: var(--primary-soft);

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.hero-floating-card strong {
    display: block;

    font-size: 12px;

    margin-bottom: 3px;
}

.hero-floating-card p {
    color: var(--text);

    font-size: 10px;

    line-height: 1.5;
}


/* Hero orbs */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.22;
}

.hero-orb-one {
    width: 400px;
    height: 400px;

    top: 90px;
    right: -140px;

    background: #937cff;
}

.hero-orb-two {
    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -80px;

    background: #5be1b2;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    padding: 40px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: white;
}

.trust-label {
    text-align: center;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 25px;
}

.trust-platforms {
    display: flex;
    align-items: center;
    justify-content: space-around;

    flex-wrap: wrap;

    gap: 25px;
}

.trust-platforms div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #98a2b3;

    font-family: "Manrope", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.trust-platforms i {
    font-size: 20px;
}


/* =========================
   COMMON SECTION TITLE
========================= */

.section-kicker {
    display: inline-block;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.9px;

    margin-bottom: 14px;
}

.section-intro {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}

.section-intro-left h2,
.section-intro > div:first-child h2,
.section-heading-center h2,
.about-heading h2,
.faq-heading h2 {
    font-size: clamp(36px, 4.4vw, 54px);

    letter-spacing: -2.7px;
}

.section-intro-right p {
    color: var(--text);

    font-size: 14px;

    margin-bottom: 17px;
}

.section-intro-right a,
.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--heading);

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s;
}

.section-intro-right a:hover,
.text-link:hover {
    color: var(--primary);
}

.section-heading-center {
    max-width: 720px;

    text-align: center;

    margin: 0 auto 55px;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: white;
}

.service-list {
    border-top: 1px solid var(--border);
}

.service-row {
    min-height: 130px;

    display: grid;

    grid-template-columns: 90px 1fr 60px;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid var(--border);

    transition: 0.3s ease;
}

.service-row:hover {
    padding-left: 15px;

    background: #fbfbff;
}

.service-number {
    color: var(--muted);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 800;
}

.service-copy h3 {
    font-size: 23px;

    letter-spacing: -0.8px;

    margin-bottom: 7px;
}

.service-copy p {
    color: var(--text);

    font-size: 12px;
}

.service-arrow {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    border: 1px solid var(--border);

    display: grid;
    place-items: center;

    transition: 0.3s ease;
}

.service-row:hover .service-arrow {
    background: var(--primary);
    color: white;

    border-color: var(--primary);

    transform: rotate(-25deg);
}


/* =========================
   ABOUT
========================= */

.home-about {
    background: var(--light);
}

.home-about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;
}

.about-heading h2 span {
    color: var(--primary);
}

.about-copy {
    padding-top: 25px;
}

.about-lead {
    font-family: "Manrope", sans-serif;

    font-size: 20px !important;

    font-weight: 700;

    color: var(--heading) !important;
}

.about-copy p {
    color: var(--text);

    font-size: 14px;

    margin-bottom: 18px;
}


/* =========================
   WHY US
========================= */

.why-us {
    background: white;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    position: relative;

    min-height: 260px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: white;

    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-sm);

    border-color: transparent;
}

.why-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #d0d5dd;

    font-size: 10px;
    font-weight: 800;
}

.why-icon {
    width: 50px;
    height: 50px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background: var(--primary-soft);

    color: var(--primary);

    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.why-card p {
    color: var(--text);

    font-size: 12px;
}


/* =========================
   WORK
========================= */

.work-section {
    background: var(--dark);
    color: white;
}

.work-section .section-intro-right p {
    color: #98a2b3;
}

.work-section .section-intro-right a {
    color: white;
}

.work-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.work-card {
    overflow: hidden;

    border-radius: 18px;

    background: #151a22;

    border: 1px solid #262d3a;
}

.work-visual {
    min-height: 380px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    position: relative;
}

.work-visual-one {
    background:
        linear-gradient(
            145deg,
            #3c2d8e,
            #7461f0
        );
}

.work-visual-two {
    background:
        linear-gradient(
            145deg,
            #075a49,
            #12a77d
        );
}

.work-visual::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    right: -60px;
    top: -80px;

    border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-category {
    width: fit-content;

    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.work-visual small {
    color: rgba(255, 255, 255, 0.7);

    font-size: 9px;

    letter-spacing: 1.5px;
}

.work-visual h3 {
    max-width: 420px;

    font-size: 34px;

    margin-top: 6px;

    letter-spacing: -1.5px;
}

.work-card-footer {
    padding: 18px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #c4cad3;

    font-size: 11px;
}

.work-note {
    color: #7f8794;

    font-size: 10px;

    margin-top: 18px;
}


/* =========================
   PROCESS
========================= */

.process-section {
    background: var(--light);
}

.process-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-item {
    min-height: 230px;

    padding: 28px;

    border-right: 1px solid var(--border);
}

.process-item:last-child {
    border-right: 0;
}

.process-item > span {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 45px;
}

.process-item h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.process-item p {
    color: var(--text);

    font-size: 12px;
}


/* =========================
   TESTIMONIAL PLACEHOLDER
========================= */

.testimonial-section {
    background: white;
}

.testimonial-box {
    padding: 55px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #f1efff,
            #fafaff
        );

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.testimonial-box > div {
    max-width: 700px;
}

.testimonial-box h2 {
    font-size: 38px;

    letter-spacing: -1.7px;

    margin-bottom: 13px;
}

.testimonial-box p {
    color: var(--text);

    font-size: 13px;
}


/* =========================
   FAQ
========================= */

.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.faq-heading p {
    max-width: 390px;

    color: var(--text);

    font-size: 13px;

    margin-top: 18px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    border: 0;
    background: transparent;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    cursor: pointer;

    font-size: 14px;
    font-weight: 700;

    color: var(--heading);
}

.faq-question i {
    transition: 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    color: var(--text);

    font-size: 12px;

    padding: 0 35px 22px 0;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 85px 0;

    background: white;
}

.final-cta-box {
    padding: 55px 60px;

    border-radius: 24px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #12101c,
            #211b3f
        );

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    position: relative;

    overflow: hidden;
}

.final-cta-box::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(111, 92, 255, 0.7),
            rgba(111, 92, 255, 0)
        );
}

.cta-label {
    display: inline-block;

    color: #aaa1ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 13px;
}

.final-cta h2 {
    max-width: 650px;

    font-size: clamp(34px, 4vw, 48px);

    letter-spacing: -2.3px;

    margin-bottom: 13px;
}

.final-cta p {
    color: #adb3bf;

    font-size: 13px;
}

.cta-button {
    position: relative;
    z-index: 2;

    min-width: 215px;
    min-height: 52px;

    padding: 0 22px;

    border-radius: 10px;

    background: white;

    color: var(--heading);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);

    color: var(--primary);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #090d14;

    color: white;

    padding-top: 70px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1.3fr 1.1fr;

    gap: 55px;
}

.footer-logo .brand-name {
    color: white;
}

.footer-brand p {
    max-width: 330px;

    color: #98a2b3;

    font-size: 12px;

    margin: 18px 0 22px;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 36px;
    height: 36px;

    border-radius: 8px;

    display: grid;
    place-items: center;

    background: #151b26;

    color: #d0d5dd;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    font-size: 13px;

    margin-bottom: 6px;
}

.footer-column a,
.footer-column span {
    color: #98a2b3;

    font-size: 11px;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 55px;

    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #202633;

    color: #667085;

    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .hero-grid {
        gap: 50px;
    }

    .hero-floating-card {
        left: -25px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 950px) {

    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
    }

    .nav-menu {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 10px 5% 22px;

        background: white;

        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;

        padding: 14px 0;

        border-bottom: 1px solid #f2f4f7;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-grid,
    .home-about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-specialties {
        align-items: center;
    }

    .hero-visual {
        width: min(100%, 650px);

        margin-inline: auto;
    }

    .hero-floating-card {
        left: 20px;
    }

    .section-intro {
        grid-template-columns: 1fr;

        gap: 25px;

        align-items: start;
    }

    .about-copy {
        padding-top: 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-box,
    .final-cta-box {
        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 700px) {

    .section {
        padding: 80px 0;
    }

    .navbar {
        min-height: 70px;
    }

    .nav-menu {
        top: 70px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;

        font-size: 18px;
    }

    .hero {
        min-height: 0;

        padding: 125px 0 75px;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2.6px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-specialties div {
        line-height: 2;
    }

    .hero-visual-card {
        min-height: 430px;

        padding: 23px;
    }

    .visual-main {
        margin-top: 55px;
    }

    .visual-main h2 {
        font-size: 54px;
    }

    .visual-bottom {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .hero-floating-card {
        display: none;
    }

    .trust-platforms {
        justify-content: center;
    }

    .service-row {
        grid-template-columns: 45px 1fr 42px;

        min-height: 120px;
    }

    .service-copy h3 {
        font-size: 18px;
    }

    .service-copy p {
        line-height: 1.6;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-right: 0 !important;

        border-bottom: 1px solid var(--border) !important;
    }

    .process-item:last-child {
        border-bottom: 0 !important;
    }

    .testimonial-box {
        padding: 35px 24px;
    }

    .testimonial-box h2 {
        font-size: 31px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta-box {
        padding: 38px 25px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 20px 0;
    }
}


@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .visual-main h2 {
        font-size: 46px;
    }

    .visual-bottom {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 500px;
    }

    .service-row {
        grid-template-columns: 35px 1fr;
    }

    .service-arrow {
        display: none;
    }

    .work-visual {
        min-height: 320px;
    }

    .work-visual h3 {
        font-size: 28px;
    }
}