/* =========================================
   NEXORA DIGITAL
   MODERN DIGITAL MARKETING WEBSITE
========================================= */


/* =========================================
   ROOT
========================================= */

:root {

    --bg: #07070c;
    --bg-soft: #0c0c14;
    --card: #101019;
    --card-light: #151521;

    --white: #ffffff;
    --text: #f4f3f8;
    --muted: #9998a8;

    --primary: #7c5cff;
    --primary-light: #a18aff;
    --secondary: #26d9c4;

    --border: rgba(255,255,255,.09);

    --gradient:
        linear-gradient(
            135deg,
            #7c5cff 0%,
            #a18aff 50%,
            #26d9c4 100%
        );

    --container: 1180px;

    --radius: 22px;

    --transition: .35s ease;

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    background:
        radial-gradient(
            circle at 70% 10%,
            rgba(124,92,255,.08),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* =========================================
   NAVBAR
========================================= */

.navbar-wrapper {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(7,7,12,.95),
            rgba(7,7,12,.65),
            transparent
        );

    backdrop-filter: blur(10px);
}

.navbar {

    width: min(92%, var(--container));

    margin: auto;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 10px 0 22px;

    border: 1px solid var(--border);

    border-radius: 100px;

    background: rgba(12,12,20,.78);

    backdrop-filter: blur(20px);

}

.logo {

    font-family: "Manrope", sans-serif;

    font-size: 23px;

    font-weight: 800;

    letter-spacing: -1px;

}

.logo span {
    color: var(--primary);
}

.nav-links {

    display: flex;

    align-items: center;

    gap: 34px;
}

.nav-links a {

    color: #a8a7b6;

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);

    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {

    display: flex;

    align-items: center;

    gap: 10px;
}

.nav-cta {

    display: flex;

    align-items: center;

    gap: 9px;

    background: var(--white);

    color: #08080c;

    padding: 12px 19px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.nav-cta:hover {

    transform: translateY(-2px);

    background: var(--primary-light);

    color: white;
}

.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 28px;

    cursor: pointer;
}

.nav-mobile-btn {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 850px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    padding: 150px 0 100px;
}

.hero-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(124,92,255,.25);

    background: rgba(124,92,255,.08);

    border-radius: 100px;

    color: #c3baff;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 25px;
}

.pulse-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--secondary);

    box-shadow: 0 0 0 5px rgba(38,217,196,.12);
}

.hero h1 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(52px, 6vw, 78px);

    line-height: 1.02;

    letter-spacing: -4px;

    max-width: 680px;

    margin-bottom: 27px;
}

.hero h1 span {

    background: var(--gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-content > p {

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    max-width: 560px;

    margin-bottom: 35px;
}

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {

    min-height: 52px;

    padding: 0 22px;

    border-radius: 100px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {

    color: white;

    background: var(--gradient);

    box-shadow:
        0 12px 30px rgba(124,92,255,.22);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(124,92,255,.35);
}

.btn-outline {

    border: 1px solid var(--border);

    background: rgba(255,255,255,.025);

    color: white;
}

.btn-outline:hover {

    border-color: rgba(124,92,255,.5);

    background: rgba(124,92,255,.08);

    transform: translateY(-3px);
}

.hero-trust {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 42px;
}

.avatars {

    display: flex;
}

.avatars span {

    width: 32px;
    height: 32px;

    border-radius: 50%;

    margin-left: -7px;

    display: grid;

    place-items: center;

    background: var(--card-light);

    border: 2px solid var(--bg);

    color: white;

    font-size: 8px;

    font-weight: 800;
}

.avatars span:first-child {
    margin-left: 0;
}

.hero-trust strong {

    display: block;

    font-size: 12px;
}

.hero-trust small {

    display: block;

    color: var(--muted);

    margin-top: 3px;

    font-size: 11px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.dashboard-card {

    width: 490px;

    min-height: 370px;

    padding: 26px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(25,25,38,.96),
            rgba(12,12,19,.96)
        );

    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 40px 100px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.05);

    transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);

    position: relative;

    z-index: 3;
}

.dashboard-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.dashboard-top small {

    color: #81808f;

    font-size: 11px;
}

.dashboard-top h3 {

    margin-top: 5px;

    font-size: 17px;
}

.dashboard-menu {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(255,255,255,.05);

    color: #aaa;
}

.chart-area {

    height: 205px;

    margin-top: 28px;

    position: relative;

    overflow: hidden;

    border-radius: 10px;
}

.chart-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.growth-chart {

    position: absolute;

    width: 100%;
    height: 100%;

    bottom: 0;
    left: 0;
}

.dashboard-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;
}

.dashboard-stats > div {

    border-top: 1px solid var(--border);

    padding-top: 15px;
}

.dashboard-stats span {

    display: block;

    color: #777686;

    font-size: 11px;

    margin-bottom: 5px;
}

.dashboard-stats strong {

    font-size: 22px;

    display: inline-block;

    margin-right: 7px;
}

.dashboard-stats small {

    font-size: 10px;
}

.positive {
    color: var(--secondary);
}


/* Floating Cards */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background: rgba(18,18,27,.92);

    border: 1px solid var(--border);

    border-radius: 15px;

    box-shadow: 0 20px 50px rgba(0,0,0,.4);

    backdrop-filter: blur(12px);

    animation: floating 4s ease-in-out infinite;
}

.floating-card small {

    display: block;

    color: #7e7d8d;

    font-size: 9px;

    margin-bottom: 3px;
}

.floating-card strong {
    font-size: 16px;
}

.floating-icon {

    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(38,217,196,.1);

    color: var(--secondary);
}

.card-reach {

    top: 55px;
    right: -20px;
}

.card-leads {

    bottom: 40px;
    left: -35px;

    animation-delay: -2s;
}

.mini-bars {

    height: 30px;

    display: flex;

    align-items: end;

    gap: 3px;
}

.mini-bars span {

    width: 5px;

    border-radius: 4px;

    background: var(--primary-light);
}

.mini-bars span:nth-child(1) {
    height: 10px;
}

.mini-bars span:nth-child(2) {
    height: 18px;
}

.mini-bars span:nth-child(3) {
    height: 14px;
}

.mini-bars span:nth-child(4) {
    height: 25px;
}

.mini-bars span:nth-child(5) {
    height: 30px;
}

.visual-orbit {

    position: absolute;

    border: 1px solid rgba(124,92,255,.15);

    border-radius: 50%;

    z-index: 1;
}

.orbit-one {

    width: 530px;
    height: 530px;

    transform: rotate(25deg);
}

.orbit-two {

    width: 400px;
    height: 400px;

    border-color: rgba(38,217,196,.1);

    transform: rotate(-25deg);
}

.hero-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.glow-one {

    background: rgba(124,92,255,.13);

    top: 150px;
    right: 10%;
}

.glow-two {

    background: rgba(38,217,196,.07);

    bottom: 0;
    left: 5%;
}


/* =========================================
   BRAND STRIP
========================================= */

.brand-strip {

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    padding: 32px 0;

    background: rgba(255,255,255,.012);
}

.brand-strip p {

    text-align: center;

    color: #686775;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 24px;
}

.brand-list {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

    color: #454450;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 120px 0;
}

.section-heading {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.section-heading h2,
.about-content h2,
.center-heading h2,
.cta-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.section-heading h2 span,
.about-content h2 span,
.center-heading h2 span,
.cta-content h2 span {

    color: var(--primary-light);
}

.section-heading > p,
.center-heading > p {

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;

    max-width: 450px;
}


/* =========================================
   SERVICES
========================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {

    min-height: 405px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    position: relative;

    overflow: hidden;

    transition: .4s ease;
}

.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(124,92,255,.12);

    filter: blur(60px);

    top: -100px;
    right: -80px;

    opacity: 0;

    transition: .4s ease;
}

.service-card:hover {

    transform: translateY(-9px);

    border-color: rgba(124,92,255,.4);

    background: #12121d;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {

    background:
        linear-gradient(
            145deg,
            rgba(124,92,255,.12),
            rgba(255,255,255,.025)
        );

    border-color: rgba(124,92,255,.25);
}

.service-number {

    position: absolute;

    right: 28px;
    top: 27px;

    color: #494855;

    font-size: 11px;

    font-weight: 800;
}

.service-icon {

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background: rgba(124,92,255,.11);

    color: var(--primary-light);

    font-size: 23px;

    margin-bottom: 35px;

    transition: var(--transition);
}

.service-card:hover .service-icon {

    transform: rotate(-7deg) scale(1.05);

    background: var(--gradient);

    color: white;
}

.service-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    margin-bottom: 12px;
}

.service-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    min-height: 67px;
}

.service-card ul {

    list-style: none;

    margin: 22px 0 27px;
}

.service-card li {

    color: #b1b0bc;

    font-size: 11px;

    margin-bottom: 8px;
}

.service-card li::before {

    content: "✓";

    color: var(--secondary);

    margin-right: 8px;

    font-weight: bold;
}

.service-card > a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.service-card > a:hover {

    color: var(--primary-light);

    gap: 12px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(124,92,255,.06),
            transparent 30%
        );
}

.about-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.about-visual {

    min-height: 480px;

    position: relative;

    display: grid;

    place-items: center;
}

.about-box {

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(124,92,255,.22);

    display: grid;

    place-items: center;

    position: relative;

    background:
        radial-gradient(
            circle,
            rgba(124,92,255,.12),
            transparent 65%
        );

    box-shadow:
        0 0 100px rgba(124,92,255,.08);
}

.about-circle {

    width: 220px;
    height: 220px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    align-content: center;

    border: 1px dashed rgba(161,138,255,.45);

    background: rgba(10,10,17,.8);

    box-shadow:
        inset 0 0 50px rgba(124,92,255,.08);
}

.about-circle span {

    font-family: "Manrope", sans-serif;

    font-size: 48px;

    font-weight: 800;

    color: white;
}

.about-circle small {

    color: var(--primary-light);

    font-size: 11px;

    margin-top: 5px;
}

.about-lines {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}

.about-lines span {

    width: 1px;
    height: 100%;

    background: rgba(255,255,255,.05);

    transform: rotate(45deg);
}

.experience-card {

    position: absolute;

    bottom: 15px;
    right: 0;

    padding: 18px 22px;

    border-radius: 18px;

    border: 1px solid var(--border);

    background: #11111a;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.experience-card strong {

    font-family: "Manrope", sans-serif;

    font-size: 38px;

    color: var(--primary-light);
}

.experience-card span {

    color: #a8a7b2;

    font-size: 11px;

    line-height: 1.5;
}

.about-content > p {

    color: var(--muted);

    line-height: 1.8;

    font-size: 15px;

    max-width: 590px;

    margin: 24px 0 30px;
}

.check-list {

    display: grid;

    gap: 20px;

    margin-bottom: 35px;
}

.check-list > div {

    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.check-list i {

    color: var(--secondary);

    font-size: 21px;
}

.check-list strong {

    display: block;

    font-size: 14px;

    margin-bottom: 3px;
}

.check-list span {

    color: #777684;

    font-size: 12px;
}


/* =========================================
   STATS
========================================= */

.stats-section {

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: #0b0b12;

    padding: 55px 0;
}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat-item {

    text-align: center;

    padding: 10px;

    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 43px;

    letter-spacing: -2px;

    margin-bottom: 5px;
}

.stat-item span {

    color: #777684;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================
   PROCESS
========================================= */

.center-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;
}

.center-heading > p {

    margin: 20px auto 0;
}

.process-grid {

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;
}

.process-item {

    text-align: center;

    padding: 20px;
}

.process-number {

    color: #4b4a57;

    font-size: 10px;

    font-weight: 800;

    margin-bottom: 17px;
}

.process-icon {

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    margin: auto;

    background: rgba(124,92,255,.08);

    border: 1px solid rgba(124,92,255,.2);

    color: var(--primary-light);

    font-size: 23px;

    transition: var(--transition);
}

.process-item:hover .process-icon {

    background: var(--gradient);

    color: white;

    transform: scale(1.08);
}

.process-item h3 {

    margin: 18px 0 8px;

    font-family: "Manrope", sans-serif;

    font-size: 17px;
}

.process-item p {

    color: #777684;

    font-size: 11px;

    line-height: 1.7;
}

.process-line {

    width: 45px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(124,92,255,.1),
            rgba(124,92,255,.5),
            rgba(124,92,255,.1)
        );
}


/* =========================================
   CTA
========================================= */

.cta-section {

    padding: 50px 0 120px;

    position: relative;
}

.cta-box {

    min-height: 390px;

    padding: 70px;

    border-radius: 30px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(38,217,196,.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(124,92,255,.22),
            transparent 40%
        ),
        #11111a;

    border: 1px solid rgba(124,92,255,.25);
}

.cta-content {

    position: relative;

    z-index: 3;

    max-width: 670px;
}

.cta-content h2 {

    font-size: clamp(42px, 5vw, 65px);

    margin-bottom: 20px;
}

.cta-content p {

    color: #a19fac;

    line-height: 1.8;

    max-width: 520px;

    margin-bottom: 30px;
}

.cta-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn-light {

    background: white;

    color: #08080d;
}

.btn-light:hover {

    background: var(--secondary);

    transform: translateY(-3px);
}

.btn-ghost {

    border: 1px solid rgba(255,255,255,.15);

    color: white;

    background: rgba(255,255,255,.03);
}

.btn-ghost:hover {

    background: rgba(255,255,255,.08);

    transform: translateY(-3px);
}

.cta-decoration {

    position: absolute;

    width: 430px;
    height: 430px;

    right: -90px;
    top: -20px;

    display: grid;

    place-items: center;
}

.cta-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(161,138,255,.15);
}

.ring-1 {
    width: 180px;
    height: 180px;
}

.ring-2 {
    width: 280px;
    height: 280px;
}

.ring-3 {
    width: 390px;
    height: 390px;
}

.cta-decoration > i {

    width: 80px;
    height: 80px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--gradient);

    font-size: 27px;

    transform: rotate(45deg);

    box-shadow: 0 20px 60px rgba(124,92,255,.3);
}


/* =========================================
   FOOTER
========================================= */

footer {

    border-top: 1px solid var(--border);

    background: #06060a;
}

.footer-main {

    padding: 70px 0;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.4fr;

    gap: 50px;
}

.footer-brand p {

    color: #666572;

    font-size: 12px;

    max-width: 260px;

    line-height: 1.7;

    margin: 17px 0 20px;
}

.social-links {

    display: flex;

    gap: 8px;
}

.social-links a {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: #8a8995;

    font-size: 13px;

    transition: var(--transition);
}

.social-links a:hover {

    color: white;

    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {

    font-size: 12px;

    color: white;

    margin-bottom: 8px;
}

.footer-column a {

    color: #686774;

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {

    color: var(--primary-light);

    transform: translateX(3px);
}

.footer-column i {
    margin-right: 6px;
}

.footer-bottom {

    padding: 20px 20px;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #50505b;

    font-size: 10px;
}
.legal-links {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #777783;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.legal-links a:hover {
    color: #7c5cff;
}

.legal-links span {
    color: #555562;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   SCROLL REVEAL
========================================= */

.service-card,
.about-content,
.about-visual,
.process-item,
.stat-item,
.cta-box {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal {

    opacity: 1 !important;

    transform: translateY(0) !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 20px;
    }

    .hero-container {
        gap: 40px;
    }

    .dashboard-card {
        width: 440px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;

        row-gap: 50px;
    }

    .process-line {
        display: none;
    }

}


@media (max-width: 850px) {

    .navbar {
        padding-left: 20px;
    }

    .nav-links {

        position: absolute;

        top: 80px;

        left: 4%;

        width: 92%;

        padding: 25px;

        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        border-radius: 22px;

        background: rgba(13,13,21,.98);

        border: 1px solid var(--border);

        backdrop-filter: blur(20px);

        transform: translateY(-15px);

        opacity: 0;

        pointer-events: none;

        transition: var(--transition);
    }

    .nav-links.show {

        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .nav-links a {
        padding: 5px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-mobile-btn {

        display: flex !important;

        justify-content: center;

        background: var(--gradient);

        color: white !important;

        border-radius: 100px;

        padding: 12px !important;
    }

    .hero {

        padding-top: 130px;

        min-height: auto;

        padding-bottom: 70px;
    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

    .about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .check-list {
        text-align: left;

        max-width: 450px;

        margin-left: auto;
        margin-right: auto;
    }

    .about-visual {
        order: 2;
    }

}


@media (max-width: 600px) {

    .navbar-wrapper {
        padding-top: 10px;
    }

    .navbar {
        height: 62px;
    }

    .logo {
        font-size: 20px;
    }

    .hero h1 {

        font-size: 47px;

        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-visual {

        height: 400px;

        transform: scale(.82);

        margin-left: -35px;

        margin-right: -35px;
    }

    .dashboard-card {

        width: 420px;

        min-height: 330px;
    }

    .card-reach {
        right: -5px;
    }

    .card-leads {
        left: 0;
    }

    .brand-list {

        overflow: hidden;

        justify-content: flex-start;

        flex-wrap: wrap;

        font-size: 14px;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading h2,
    .about-content h2,
    .center-heading h2 {

        font-size: 38px;

        letter-spacing: -1.8px;
    }

    .services-grid {

        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .stats-grid {

        grid-template-columns: 1fr 1fr;

        row-gap: 35px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item strong {
        font-size: 34px;
    }

    .stat-item span {
        font-size: 9px;
    }

    .process-grid {

        grid-template-columns: 1fr;

        row-gap: 25px;
    }

    .cta-section {
        padding-bottom: 85px;
    }

    .cta-box {

        padding: 45px 27px;

        min-height: 500px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-decoration {

        width: 300px;
        height: 300px;

        right: -120px;

        top: 240px;
    }

    .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}


@media (max-width: 400px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        transform: scale(.68);

        margin-left: -70px;

        margin-right: -70px;
    }

}