/* =========================================================
   ANIQ WAQAR — PORTFOLIO CSS
========================================================= */

:root {

    --bg: #0a0a0a;
    --bg-soft: #0d0d0d;
    --bg-card: #151515;
    --bg-card-hover: #191919;

    --text: #f2f2f2;
    --body-text: #eeeeee;

    --muted: #858585;
    --muted-dark: #555555;

    --accent: #c277d8;

    --accent-soft:
        rgba(194,119,216,0.15);

    --accent-glow:
        rgba(194,119,216,0.45);

    --border:
        rgba(255,255,255,0.10);

    --border-light:
        rgba(255,255,255,0.06);

    --font-heading:
        'Space Grotesk',
        sans-serif;

    --font-body:
        'Montserrat',
        sans-serif;

    --container: 1280px;
}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--bg);

    color: var(--text);

    font-family: var(--font-body);

    line-height: 1.75;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


a {

    color: inherit;
    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


img {

    display: block;
    max-width: 100%;

}


::selection {

    background: var(--accent);
    color: #080808;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

}


/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor-dot {

    position: fixed;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--accent);

    pointer-events: none;

    z-index: 99999;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 20px var(--accent-glow);

    transition:
        width .25s ease,
        height .25s ease;

}


.cursor-ring {

    position: fixed;

    width: 36px;
    height: 36px;

    border:
        1px solid
        rgba(194,119,216,.55);

    border-radius: 50%;

    pointer-events: none;

    z-index: 99998;

    transform: translate(-50%, -50%);

    transition:
        width .3s ease,
        height .3s ease,
        border-color .3s ease;

}


.cursor-hover .cursor-dot {

    width: 18px;
    height: 18px;

}


.cursor-hover .cursor-ring {

    width: 60px;
    height: 60px;

    border-color:
        var(--accent);

}


/* =========================================================
   SCROLL ROAD
========================================================= */

.scroll-road {

    position: fixed;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    width: 3px;
    height: 160px;

    z-index: 900;

    pointer-events: none;

}


.road-line {

    position: absolute;

    inset: 0;

    background:
        rgba(255,255,255,.10);

    border-radius: 10px;

}


.road-progress {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 0%;

    background: var(--accent);

    border-radius: 10px;

    box-shadow:
        0 0 12px var(--accent-glow);

}


.road-dot {

    position: absolute;

    left: 50%;
    top: 0;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--accent);

    transform:
        translate(-50%,-50%);

    box-shadow:
        0 0 20px var(--accent);

}


/* =========================================================
   GLOBAL
========================================================= */

.section-container {

    width:
        min(
            var(--container),
            90%
        );

    margin: 0 auto;

}


.section-label {

    color: var(--muted);

    font-family: var(--font-heading);

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .15em;

}


/* =========================================================
   NAVIGATION — NEW
========================================================= */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: 82px;

    padding: 0 5%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        rgba(10,10,10,.88);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

}


.logo {

    font-family: var(--font-heading);

    font-size: 1.15rem;

    font-weight: 700;

    letter-spacing: -.04em;

}


.logo span {

    color: var(--accent);

}


/* NEW NAV */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: .55rem;

    padding: 6px;

    border:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.025);

    border-radius: 14px;

}


.desktop-nav a {

    position: relative;

    padding:
        10px 16px;

    color: #bcbcbc;

    font-family:
        var(--font-heading);

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: -.01em;

    border-radius: 9px;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 4px;

    width: 0;

    height: 2px;

    background:
        var(--accent);

    transform:
        translateX(-50%);

    border-radius: 10px;

    transition:
        width .3s ease;

}


.desktop-nav a:hover {

    color: #fff;

    background:
        rgba(194,119,216,.08);

    transform:
        translateY(-1px);

}


.desktop-nav a:hover::after {

    width: 20px;

}


.nav-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 16px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 10px;

    color: #fff;

    font-family:
        var(--font-heading);

    font-size: .76rem;

    font-weight: 600;

    transition:
        border-color .3s ease,
        transform .3s ease,
        color .3s ease;

}


.nav-cta span {

    color: var(--accent);

}


.nav-cta:hover {

    border-color:
        var(--accent);

    color:
        var(--accent);

    transform:
        translateY(-2px);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {

    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: flex-end;

    justify-content: center;

    gap: 5px;

}


.mobile-menu-button span {

    display: block;

    width: 24px;
    height: 1px;

    background: #fff;

}


.mobile-menu {

    display: none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height:
        calc(100vh - 82px);

    display: flex;

    flex-direction: column;

    overflow: hidden;

}


.hero-noise {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");

}


.hero-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .035;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

}


.hero-shape {

    position: absolute;

    pointer-events: none;

}


.hero-shape-one {

    width: 70px;
    height: 70px;

    left: 8%;
    top: 12%;

    border:
        1px solid
        rgba(194,119,216,.14);

    transform: rotate(45deg);

}


.hero-shape-two {

    width: 100px;
    height: 100px;

    right: 12%;
    top: 18%;

    border:
        1px dashed
        rgba(194,119,216,.14);

    border-radius: 50%;

    animation:
        floatShape 6s
        ease-in-out infinite;

}


.hero-shape-three {

    width: 16px;
    height: 16px;

    left: 44%;
    bottom: 20%;

    border:
        1px solid
        var(--accent);

    transform: rotate(45deg);

    opacity: .3;

}


.hero-shape-four {

    width: 40px;
    height: 40px;

    right: 35%;
    bottom: 15%;

    border:
        1px solid
        rgba(194,119,216,.12);

    border-radius: 50%;

}


@keyframes floatShape {

    0%,100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(8deg);
    }

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    width:
        min(
            var(--container),
            90%
        );

    margin: auto;

    flex: 1;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 5rem;

    padding:
        5rem 0 3rem;

}


/* HERO TEXT */

.hero-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 2rem;

    color: #aaa;

    font-family:
        var(--font-heading);

    font-size: .7rem;

    font-weight: 600;

    letter-spacing: .15em;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--accent);

    box-shadow:
        0 0 18px
        var(--accent-glow);

}


.hero-copy h1 {

    color:
        var(--text);

    font-size:
        clamp(
            4rem,
            7vw,
            7.5rem
        );

    line-height: .91;

    letter-spacing: -.065em;

    font-weight: 700;

}


.hero-copy h1 span {

    color:
        var(--accent);

}


.hero-description {

    max-width: 560px;

    margin-top: 2.5rem;

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    gap: 14px;

    margin-top: 2.5rem;

}


.hero-btn {

    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    font-family:
        var(--font-heading);

    font-size: .76rem;

    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;

}


.hero-btn-primary {

    background: #f2f2f2;

    color: #0a0a0a;

}


.hero-btn-primary:hover {

    transform:
        translateY(-4px);

}


.hero-btn-secondary {

    border:
        1px solid
        rgba(255,255,255,.18);

    color: #f2f2f2;

}


.hero-btn-secondary:hover {

    border-color:
        var(--accent);

    color:
        var(--accent);

    transform:
        translateY(-4px);

}


.hero-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 4rem;

    color: #666;

    font-family:
        var(--font-heading);

    font-size: .6rem;

    font-weight: 600;

    letter-spacing: .14em;

}


/* =========================================================
   HERO IMAGE — NEW
========================================================= */

.hero-visual {

    position: relative;

    height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.visual-number {

    position: absolute;

    top: 25px;
    left: 0;

    color: #666;

    font-family:
        var(--font-heading);

    font-size: .68rem;

}


.visual-line {

    position: absolute;

    left: 25px;

    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.15),
            transparent
        );

}


.photo-wrapper {

    position: relative;

    width:
        min(
            500px,
            100%
        );

    height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Purple glow behind image */

.photo-frame-glow {

    position: absolute;

    width: 80%;

    height: 80%;

    background:
        var(--accent);

    filter: blur(120px);

    opacity: .08;

    border-radius: 50%;

    animation:
        imageGlow 5s
        ease-in-out infinite;

}


@keyframes imageGlow {

    0%,100% {

        opacity: .05;

        transform:
            scale(.9);

    }

    50% {

        opacity: .12;

        transform:
            scale(1.08);

    }

}


/* Actual frame */

.photo-frame {

    position: relative;

    z-index: 3;

    width: 410px;

    height: 500px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.78);

    border-radius: 26px;

    background:
        #111;

    box-shadow:

        0 0 0 1px
        rgba(255,255,255,.04),

        0 30px 80px
        rgba(0,0,0,.45),

        0 0 60px
        rgba(194,119,216,.06);

    transition:
        transform .5s
        cubic-bezier(.2,.8,.2,1),

        border-color .4s ease,

        box-shadow .4s ease;

}


/* Sleek white edge */

.photo-frame::before {

    content: "";

    position: absolute;

    inset: 7px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 20px;

    z-index: 4;

    pointer-events: none;

}


/* Moving light across image */

.photo-frame::after {

    content: "";

    position: absolute;

    top: -100%;

    left: -50%;

    width: 30%;

    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.08),
            transparent
        );

    transform:
        rotate(20deg);

    transition:
        left .8s ease;

    pointer-events: none;

    z-index: 5;

}


.photo-frame:hover {

    transform:
        translateY(-8px)
        rotateX(1deg);

    border-color:
        rgba(255,255,255,.95);

    box-shadow:

        0 35px 90px
        rgba(0,0,0,.55),

        0 0 70px
        rgba(194,119,216,.10);

}


.photo-frame:hover::after {

    left: 130%;

}


.profile-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center center;

    filter:
        contrast(1.03)
        saturate(.92);

    transition:
        transform .6s
        cubic-bezier(.2,.8,.2,1);

}


.photo-frame:hover
.profile-image {

    transform:
        scale(1.025);

}


/* Minimal corner accents */

.photo-corner {

    position: absolute;

    width: 24px;
    height: 24px;

    z-index: 6;

    pointer-events: none;

}


.photo-corner-top {

    top: 14px;
    right: 14px;

    border-top:
        1px solid
        rgba(255,255,255,.8);

    border-right:
        1px solid
        rgba(255,255,255,.8);

}


.photo-corner-bottom {

    bottom: 14px;
    left: 14px;

    border-bottom:
        1px solid
        rgba(255,255,255,.8);

    border-left:
        1px solid
        rgba(255,255,255,.8);

}


.visual-caption {

    position: absolute;

    bottom: 20px;

    right: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;

    padding-left: 55px;

    color: #666;

    font-family:
        var(--font-heading);

    font-size: .55rem;

    letter-spacing: .13em;

}


/* HERO BOTTOM */

.hero-bottom {

    position: relative;

    z-index: 3;

    width:
        min(
            var(--container),
            90%
        );

    margin: 0 auto;

    padding: 1.5rem 0;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        var(--border-light);

}


.hero-scroll {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #666;

    font-family:
        var(--font-heading);

    font-size: .6rem;

    letter-spacing: .15em;

}


.scroll-arrow {

    color:
        var(--accent);

    animation:
        scrollBounce 1.5s infinite;

}


@keyframes scrollBounce {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


.hero-statement {

    color: #555;

    font-family:
        var(--font-heading);

    font-size: .6rem;

    letter-spacing: .15em;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    padding: 160px 0;

    background: #0d0d0d;

    border-top:
        1px solid
        var(--border-light);

}


.intro-content {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 8rem;

    margin-top: 3rem;

}


.intro-content h2 {

    font-size:
        clamp(
            3rem,
            6vw,
            6rem
        );

    line-height: .95;

    letter-spacing: -.055em;

}


.intro-content h2 span {

    color:
        var(--accent);

}


.intro-text p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 1.6rem;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    padding: 160px 0;

    background: #0d0d0d;

    border-top:
        1px solid
        var(--border-light);

}


.services-heading {

    display: grid;

    grid-template-columns:
        1fr .55fr;

    gap: 5rem;

    align-items: end;

    margin:
        2rem 0 4rem;

}


.services-heading h2 {

    font-size:
        clamp(
            3rem,
            6vw,
            6rem
        );

    line-height: .92;

    letter-spacing: -.055em;

}


.services-heading h2 span {

    color:
        var(--accent);

}


.services-intro {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .95rem;

    line-height: 1.8;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1.2rem;

}


.service-card {

    position: relative;

    min-height: 350px;

    padding: 2rem;

    display: flex;

    flex-direction: column;

    background:
        #151515;

    border:
        1px solid
        rgba(194,119,216,.45);

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .4s
        cubic-bezier(.2,.8,.2,1),

        background .4s ease,

        border-color .4s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        var(--accent);

    opacity: 0;

    filter: blur(60px);

    transition:
        opacity .4s ease;

}


.service-card:hover {

    transform:
        translateY(-9px);

    background:
        var(--bg-card-hover);

    border-color:
        var(--accent);

}


.service-card:hover::before {

    opacity: .10;

}


.featured-service {

    border-color:
        var(--accent);

}


.featured-label {

    position: absolute;

    top: 20px;
    right: 20px;

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size: .5rem;

    font-weight: 600;

    letter-spacing: .1em;

}


.service-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}


.service-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 2rem;

    border-radius: 14px;

    background: #0c0c0c;

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size: .7rem;

    font-weight: 600;

}


.service-tag {

    color: #666;

    font-family:
        var(--font-heading);

    font-size: .5rem;

    letter-spacing: .12em;

}


.service-card h3 {

    position: relative;

    z-index: 2;

    font-size: 1.3rem;

    line-height: 1.2;

    font-weight: 600;

    margin-bottom: 1rem;

}


.service-card p {

    position: relative;

    z-index: 2;

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .88rem;

    line-height: 1.75;

}


.service-bottom {

    position: relative;

    z-index: 2;

    margin-top: auto;

    padding-top: 2rem;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.service-price {

    display: inline-flex;

    align-items: baseline;

    padding: 8px 14px;

    border:
        1px solid
        rgba(194,119,216,.55);

    border-radius: 30px;

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size: .75rem;

    font-weight: 600;

}


.service-price span {

    margin-left: 2px;

    font-size: .6rem;

}


.service-arrow {

    color:
        var(--accent);

    font-size: 1.2rem;

    transition:
        transform .3s ease;

}


.service-card:hover
.service-arrow {

    transform:
        translate(4px,-4px);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    position: relative;

    padding: 150px 0;

    background: #0b0b0b;

    overflow: hidden;

    border-top:
        1px solid
        var(--border-light);

}


.about-bg-shapes {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.about-circle {

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: 80px;

    border:
        1px solid
        rgba(194,119,216,.08);

    border-radius: 50%;

}


.about-circle::after {

    content: "";

    position: absolute;

    inset: 25px;

    border:
        1px solid
        rgba(194,119,216,.05);

    border-radius: 50%;

}


.about-cross {

    position: absolute;

    color:
        rgba(194,119,216,.12);

    font-size: 30px;

}


.cross-one {

    left: 42%;
    bottom: 90px;

}


.cross-two {

    right: 8%;
    bottom: 35%;

}


.about-diamond {

    position: absolute;

    width: 48px;
    height: 48px;

    left: 17%;
    bottom: 70px;

    border:
        1px dashed
        rgba(194,119,216,.13);

    transform: rotate(45deg);

}


.about-ring {

    position: absolute;

    width: 100px;
    height: 100px;

    left: 45%;
    top: 50%;

    border:
        1px dashed
        rgba(194,119,216,.12);

    border-radius: 50%;

}


.about-heading {

    position: relative;

    z-index: 2;

}


.about-heading h2 {

    margin-top: 1rem;

    font-size:
        clamp(
            3.5rem,
            6vw,
            6rem
        );

    line-height: .95;

    letter-spacing: -.06em;

}


.about-heading h2 span {

    color:
        var(--accent);

}


.about-heading-line {

    width: 80px;
    height: 3px;

    margin-top: 1.5rem;

    background:
        var(--accent);

}


.about-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .85fr;

    gap: 4rem;

    margin-top: 3rem;

}


.about-description {

    max-width: 700px;

}


.about-description p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 1.6rem;

}


.about-description .about-intro {

    color: #fff;

}


.about-cards {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 1.5rem;

    margin-top: 2.5rem;

}


.about-card {

    min-height: 160px;

    padding: 1.5rem;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(194,119,216,.5);

    transition:
        transform .35s ease,
        background .35s ease;

}


.about-card:hover {

    transform:
        translateY(-6px);

    background:
        rgba(255,255,255,.04);

}


.about-card-number {

    display: block;

    margin-bottom: .8rem;

    color:
        rgba(194,119,216,.45);

    font-family:
        var(--font-heading);

    font-size: .6rem;

    letter-spacing: .12em;

}


.about-card h3 {

    margin-bottom: .8rem;

    color:
        var(--accent);

    font-size: 1.1rem;

}


.about-card p {

    margin: 0;

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .88rem;

    line-height: 1.7;

}


/* =========================================================
   ANIMATED STATS
========================================================= */

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 1rem;

}


.stat-card {

    position: relative;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 1.5rem;

    background:
        rgba(255,255,255,.015);

    border:
        1px solid
        rgba(194,119,216,.65);

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .35s ease,
        background .35s ease;

}


.stat-card::before {

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%)
        scale(0);

    background:
        var(--accent);

    opacity: .07;

    filter: blur(50px);

    border-radius: 50%;

    transition:
        transform .6s ease;

}


.stat-card:hover {

    transform:
        translateY(-7px)
        scale(1.02);

    background:
        rgba(255,255,255,.025);

}


.stat-card:hover::before {

    transform:
        translate(-50%,-50%)
        scale(1);

}


.stat-number {

    position: relative;

    z-index: 2;

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            2.5rem,
            4vw,
            3.5rem
        );

    line-height: 1;

    font-weight: 700;

    letter-spacing: -.05em;

}


.stat-label {

    position: relative;

    z-index: 2;

    margin-top: .8rem;

    color: #858585;

    font-family:
        var(--font-heading);

    font-size: .65rem;

    font-weight: 600;

    letter-spacing: .08em;

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    padding: 160px 0;

    background: #0d0d0d;

    border-top:
        1px solid
        var(--border-light);

}


.process-heading {

    display: grid;

    grid-template-columns:
        1fr .45fr;

    gap: 5rem;

    align-items: end;

    margin:
        3rem 0 7rem;

}


.process-heading h2 {

    font-size:
        clamp(
            3.5rem,
            7vw,
            7rem
        );

    line-height: .9;

    letter-spacing: -.06em;

}


.process-heading h2 span {

    color:
        var(--accent);

}


.process-heading p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .95rem;

    line-height: 1.8;

}


.process-road {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 2rem;

    padding:
        5rem 0 3rem;

}


.road-track {

    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        rgba(255,255,255,.10);

}


.road-track::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 22px,
            rgba(194,119,216,.65) 22px,
            rgba(194,119,216,.65) 42px
        );

    animation:
        roadMove 2s
        linear infinite;

}


@keyframes roadMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-42px);
    }

}


.road-step {

    position: relative;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.road-marker {

    position: absolute;

    top: 50%;
    left: 50%;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translate(-50%,-50%);

    border:
        2px solid
        var(--accent);

    background: #0d0d0d;

    border-radius: 50%;

    z-index: 3;

    box-shadow:
        0 0 0 8px #0d0d0d,
        0 0 25px
        rgba(194,119,216,.25);

    transition:
        transform .4s ease,
        background .4s ease;

}


.road-step:hover
.road-marker {

    transform:
        translate(-50%,-50%)
        scale(1.15);

    background:
        var(--accent);

}


.road-marker span {

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size: .7rem;

    font-weight: 700;

}


.road-step:hover
.road-marker span {

    color:
        #0a0a0a;

}


.road-content {

    position: absolute;

    width: 85%;

    left: 7.5%;

    text-align: center;

}


.step-one .road-content,
.step-three .road-content {

    bottom:
        calc(50% + 70px);

}


.step-two .road-content,
.step-four .road-content {

    top:
        calc(50% + 70px);

}


.road-label {

    color:
        var(--accent);

    font-family:
        var(--font-heading);

    font-size: .52rem;

    font-weight: 600;

    letter-spacing: .14em;

}


.road-content h3 {

    margin: .7rem 0;

    font-size: 1.5rem;

}


.road-content p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .82rem;

    line-height: 1.7;

}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {

    padding: 160px 0;

    background: #0a0a0a;

    border-top:
        1px solid
        var(--border-light);

}


.testimonial-heading {

    display: grid;

    grid-template-columns:
        1fr .5fr;

    gap: 5rem;

    align-items: end;

    margin:
        3rem 0 5rem;

}


.testimonial-heading h2 {

    font-size:
        clamp(
            3.5rem,
            7vw,
            7rem
        );

    line-height: .9;

    letter-spacing: -.06em;

}


.testimonial-heading h2 span {

    color:
        var(--accent);

}


.testimonial-heading p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .95rem;

    line-height: 1.8;

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 1.5rem;

}


.testimonial-image {

    overflow: hidden;

    background: #141414;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 14px;

    transition:
        transform .4s ease,
        border-color .4s ease;

}


.testimonial-image:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(194,119,216,.5);

}


.testimonial-image img {

    width: 100%;
    height: auto;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    position: relative;

    padding: 160px 0;

    overflow: hidden;

    background: #0d0d0d;

    border-top:
        1px solid
        var(--border-light);

}


.contact-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -150px;
    top: 0;

    background:
        var(--accent);

    opacity: .07;

    filter: blur(150px);

    border-radius: 50%;

}


.contact-heading {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .5fr;

    gap: 5rem;

    align-items: end;

    margin:
        3rem 0 5rem;

}


.contact-heading h2 {

    font-size:
        clamp(
            4rem,
            8vw,
            8rem
        );

    line-height: .9;

    letter-spacing: -.065em;

}


.contact-heading h2 span {

    color:
        var(--accent);

}


.contact-heading p {

    color:
        #eeeeee;

    font-family:
        var(--font-body);

    font-size: .95rem;

    line-height: 1.8;

}


.contact-box {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 28px;

    overflow: hidden;

    background: #101010;

}


.contact-information {

    padding: 3.5rem;

    background: #0b0b0b;

}


.contact-information h3,
.contact-form-container h3 {

    font-size: 1.35rem;

    font-weight: 600;

    margin-bottom: 2rem;

}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 1rem;

    margin-bottom: 1.5rem;

}


.contact-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    color:
        var(--accent);

}


.contact-detail span:last-child {

    display: flex;

    flex-direction: column;

}


.contact-detail small {

    color: #666;

    font-size: .7rem;

}


.contact-detail strong {

    color: #f2f2f2;

    font-size: .85rem;

    font-weight: 500;

}


.contact-social-area {

    margin-top: 3rem;

}


.social-links {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.social-links a {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--accent);

    border-radius: 50%;

    color:
        var(--accent);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.social-links a:hover {

    background:
        var(--accent);

    color: #0a0a0a;

    transform:
        translateY(-3px);

}


.upwork-icon {

    font-family:
        var(--font-heading);

    font-size: .72rem;

    font-weight: 700;

}


.contact-form-container {

    padding: 3.5rem;

    background: #151515;

    border-left:
        1px solid
        rgba(255,255,255,.08);

    border-top:
        1px solid
        var(--accent);

}


.form-description {

    color:
        #eeeeee;

    font-size: .85rem;

    margin-top: -1rem;

    margin-bottom: 2rem;

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 1.2rem;

}


.form-group {

    margin-bottom: 1.4rem;

}


.form-group label {

    display: block;

    margin-bottom: .6rem;

    color: #eeeeee;

    font-size: .75rem;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding:
        15px 16px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 10px;

    outline: none;

    background: #0b0b0b;

    color: #f2f2f2;

    font-size: .82rem;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #777;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(194,119,216,.08);

}


.form-group textarea {

    resize: vertical;

    min-height: 150px;

}


.form-group select {

    appearance: none;

    cursor: pointer;

}


.form-submit {

    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border: none;

    border-radius: 10px;

    background:
        var(--accent);

    color: #0a0a0a;

    font-family:
        var(--font-heading);

    font-size: .8rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        opacity .3s ease;

}


.form-submit:hover {

    transform:
        translateY(-3px);

    opacity: .9;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    position: relative;

    background: #0b0b0b;

    border-top:
        1px solid
        var(--border-light);

}


.footer-container {

    width:
        min(
            var(--container),
            90%
        );

    margin: 0 auto;

}


.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr .7fr 1fr;

    gap: 5rem;

    padding: 70px 0;

}


.footer-logo {

    display: inline-block;

    margin-bottom: 1.5rem;

    font-family:
        var(--font-heading);

    font-size: 1.5rem;

    font-weight: 700;

    letter-spacing: -.04em;

}


.footer-logo span {

    color:
        var(--accent);

}


.footer-brand p {

    max-width: 450px;

    color:
        #eeeeee;

    font-size: .82rem;

    line-height: 1.8;

}


.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 2rem;

}


.footer-social a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        var(--accent);

    border-radius: 50%;

    color:
        var(--accent);

    font-size: .8rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


.footer-social a:hover {

    background:
        var(--accent);

    color: #0a0a0a;

    transform:
        translateY(-3px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: .85rem;

}


.footer-column h4 {

    margin-bottom: .8rem;

    color: #f2f2f2;

    font-size: .95rem;

}


.footer-column a {

    color:
        #eeeeee;

    font-size: .78rem;

    transition:
        color .3s ease,
        transform .3s ease;

}


.footer-column a:hover {

    color:
        var(--accent);

    transform:
        translateX(4px);

}


.footer-bottom {

    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    align-items: center;

    gap: 2rem;

    padding: 2rem 0;

    border-top:
        1px solid
        var(--border-light);

    color: #777;

    font-size: .65rem;

}


.footer-email a {

    color:
        var(--accent);

}


.back-to-top {

    display: flex;

    align-items: center;

    gap: 10px;

    border: none;

    background: transparent;

    color: #888;

    font-size: .65rem;

    cursor: pointer;

}


.back-to-top span {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    color:
        var(--accent);

    transition:
        background .3s ease,
        color .3s ease;

}


.back-to-top:hover span {

    background:
        var(--accent);

    color: #0a0a0a;

}


/* =========================================================
   SECTION REVEAL
========================================================= */

.intro-section,
.services-section,
.about-section,
.process-section,
.testimonial-section,
.contact-section {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .9s ease,
        transform .9s
        cubic-bezier(.2,.8,.2,1);

}


.section-visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   HERO ANIMATION
========================================================= */

.hero-copy > *,
.hero-visual,
.hero-bottom {

    opacity: 0;

    animation:
        heroReveal .9s
        cubic-bezier(.2,.7,.2,1)
        forwards;

}


.hero-label {
    animation-delay: .1s;
}


.hero-copy h1 {
    animation-delay: .2s;
}


.hero-description {
    animation-delay: .35s;
}


.hero-actions {
    animation-delay: .45s;
}


.hero-meta {
    animation-delay: .55s;
}


.hero-visual {
    animation-delay: .25s;
}


.hero-bottom {
    animation-delay: .7s;
}


@keyframes heroReveal {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {


    .desktop-nav {

        gap: .2rem;

    }


    .desktop-nav a {

        padding:
            9px 11px;

        font-size: .7rem;

    }


    .hero-content {

        grid-template-columns: 1fr;

        gap: 2rem;

    }


    .hero-visual {

        height: 540px;

    }


    .intro-content {

        grid-template-columns: 1fr;

        gap: 3rem;

    }


    .services-heading,
    .process-heading,
    .testimonial-heading,
    .contact-heading {

        grid-template-columns: 1fr;

        gap: 2rem;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .about-layout {

        grid-template-columns: 1fr;

        gap: 4rem;

    }


    .contact-box {

        grid-template-columns: 1fr;

    }


    .contact-form-container {

        border-left: none;

    }


    .footer-top {

        grid-template-columns:
            1.4fr .8fr 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


    .cursor-dot,
    .cursor-ring,
    .scroll-road {

        display: none;

    }


    .desktop-nav,
    .nav-cta {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    .mobile-menu {

        position: fixed;

        top: 82px;

        left: 0;
        right: 0;

        z-index: 999;

        display: flex;

        flex-direction: column;

        padding: 2rem 6%;

        background:
            rgba(10,10,10,.98);

        border-bottom:
            1px solid
            var(--border);

        transform:
            translateY(-120%);

        transition:
            transform .4s ease;

    }


    .mobile-menu.open {

        transform:
            translateY(0);

    }


    .mobile-menu a {

        padding: 1rem 0;

        border-bottom:
            1px solid
            var(--border-light);

        font-family:
            var(--font-heading);

        font-size: 1rem;

    }


    .hero-content {

        width: 88%;

        display: block;

        padding:
            4rem 0 3rem;

    }


    .hero-copy h1 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                5rem
            );

    }


    .hero-description {

        font-size: .92rem;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-btn {

        width: 100%;

    }


    .hero-meta {

        flex-wrap: wrap;

        margin-top: 2.5rem;

    }


    .hero-visual {

        height: 450px;

        margin-top: 2rem;

    }


    .photo-wrapper {

        height: 450px;

    }


    .photo-frame {

        width:
            min(
                350px,
                90vw
            );

        height: 420px;

        border-radius: 22px;

    }


    .photo-frame::before {

        inset: 6px;

        border-radius: 17px;

    }


    .visual-line,
    .visual-number {

        display: none;

    }


    .visual-caption {

        padding-left: 0;

        font-size: .43rem;

    }


    .hero-statement {

        display: none;

    }


    .intro-section,
    .services-section,
    .about-section,
    .process-section,
    .testimonial-section,
    .contact-section {

        padding: 100px 0;

    }


    .intro-content h2,
    .services-heading h2,
    .about-heading h2,
    .process-heading h2,
    .testimonial-heading h2,
    .contact-heading h2 {

        font-size:
            clamp(
                2.7rem,
                13vw,
                4.5rem
            );

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 320px;

    }


    .about-cards {

        grid-template-columns: 1fr;

    }


    .about-stats {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stat-card {

        min-height: 125px;

    }


    .stat-number {

        font-size: 2.2rem;

    }


    .stat-label {

        font-size: .5rem;

    }


    .process-road {

        display: block;

        padding: 2rem 0;

    }


    .road-track {

        left: 20px;

        top: 0;
        bottom: 0;

        width: 2px;
        height: 100%;

    }


    .road-track::before {

        background:
            repeating-linear-gradient(
                180deg,
                transparent 0,
                transparent 22px,
                rgba(194,119,216,.65) 22px,
                rgba(194,119,216,.65) 42px
            );

        animation:
            roadMoveVertical 2s
            linear infinite;

    }


    @keyframes roadMoveVertical {

        from {
            transform:
                translateY(0);
        }

        to {
            transform:
                translateY(-42px);
        }

    }


    .road-step {

        min-height: auto;

        padding:
            3rem 0 3rem 70px;

        display: block;

    }


    .road-marker {

        left: 20px;

        top: 50%;

    }


    .road-content,
    .step-one .road-content,
    .step-two .road-content,
    .step-three .road-content,
    .step-four .road-content {

        position: relative;

        width: 100%;

        left: auto;

        top: auto;

        bottom: auto;

        text-align: left;

    }


    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .contact-box {

        border-radius: 18px;

    }


    .contact-information,
    .contact-form-container {

        padding: 2rem;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 3rem;

        padding: 60px 0;

    }


    .footer-bottom {

        grid-template-columns: 1fr;

        gap: 1rem;

    }


    .back-to-top {

        justify-self: flex-start;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}

/* =========================================================
   IMAGE FALLBACK / ACCESSIBILITY
========================================================= */

.image-load-error {
    opacity: .35;
    background: #151515;
}

@media (hover: none), (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

}
